@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
  margin-top: 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

body {
  background-color: #ffffff;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  body {
    font-weight: initial;
  }
}

:focus {
  outline: none;
}

a:link,
a:hover,
a:visited,
a:active {
  color: #267dcb;
  text-decoration: underline;
}

p {
  margin-bottom: 3px;
}

p.error {
  color: #fb5154;
}

input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=password],
select {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 50px;
  padding: 10px;
  border-radius: 3px;
  border: 2px solid #e4e4e4;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #333333;
  background-color: #ffffff;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
select::placeholder {
  color: #696969;
}

.alert {
  text-align: center;
}

textarea {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 150px;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #e4e4e4;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #333333;
  background-color: #ffffff;
}
textarea::placeholder {
  color: #696969;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

.checkbox {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  height: 44px;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -10px;
  width: 24px;
  height: 24px;
  border: 2px solid #e4e4e4;
  border-radius: 5px;
  content: "";
}

.checkbox:before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -4px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #333333;
  border-bottom: 3px solid #333333;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

.radio {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  height: 44px;
  vertical-align: middle;
  cursor: pointer;
}
.radio:after {
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  margin-top: -10px;
  width: 24px;
  height: 24px;
  border: 2px solid #e4e4e4;
  border-radius: 5px;
  content: "";
}

.radio:before {
  position: absolute;
  top: 50%;
  left: 30px;
  display: block;
  margin-top: -4px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #333333;
  border-bottom: 3px solid #333333;
  content: "";
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type=radio]:checked + .radio:before {
  opacity: 1;
}

.err-msg {
  display: none;
  color: red;
  font-size: 10px;
  position: absolute;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .err-msg {
    font-size: 12px;
  }
}

section {
  padding: 20px 0;
  margin: auto;
}

.l-container {
  padding: 0 5%;
  max-width: 560px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    max-width: 980px !important;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-container {
    padding: 0;
  }
}

img {
  max-width: 100%;
}

.u-flex_space_between {
  justify-content: space-between;
}

.u-flex_jusrify_left {
  justify-content: left;
}

.u-flex_jusrify_right {
  justify-content: right;
}

@media screen and (min-width: 768px) {
  .u-display-flex {
    flex-direction: row;
  }
}

.u-display-flex {
  display: flex;
}

.display_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .display_sp {
    display: none;
  }
}

.display_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .display_pc {
    display: block;
  }
}

.color_white {
  color: white;
}

.emphasis_text {
  font-size: 18px;
  font-weight: 600;
}

.text_center {
  text-align: center;
}

.d-none {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}

.u-display-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display-pc {
    display: block;
  }
}

.border-0 {
  border: 0 !important;
}

.text-center {
  text-align: center !important;
}

.p-0 {
  padding: 0 !important;
}

.form-submit {
  width: 85%;
  position: relative;
  margin: 20px auto 15px;
}

/* 拡大・縮小 */
.change-scale {
  -webkit-animation: change-scale 1.5s linear infinite alternate;
  animation: change-scale 1.5s linear infinite alternate;
}

@keyframes change-scale {
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.l-header {
  width: 100%;
}
.l-header .l-container {
  height: 52px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-header .l-container {
    height: 80px;
    max-width: 1140px !important;
  }
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .l-header__content {
    justify-content: space-between;
  }
}
.l-header__content__logo {
  max-height: 35px;
}
@media screen and (min-width: 768px) {
  .l-header__content__logo {
    max-height: 100%;
  }
}
.l-header__content__group {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.l-header__content__tel {
  width: 290px;
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__content__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
  }
}
.l-header__content__tel__line1 {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
  width: 100%;
}
.l-header__content__tel__line1__number {
  position: absolute;
  color: #0b6db8;
  font-size: 36.29px;
  margin-left: 3px;
  font-weight: bold;
  top: -58%;
  left: 18%;
  letter-spacing: -0.09vw;
}
.l-header__content__tel__line1__btn-web {
  margin-left: 21px;
}

.form-step-wrap {
  background-color: #DCF2FE;
}

.form-col2 {
  padding-top: 20px;
  background: #E0E0E0;
}

.form2-wrap .form-col2 {
  background-color: #e4e4e4;
}

.form2-wrap .form-col2 {
  margin-top: 0;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .form2-wrap .form-col2 {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
.form-col2__title {
  max-width: 400px;
  margin: auto;
}

.form-col2__title img {
  display: block;
  margin: auto;
  width: 80%;
  margin-bottom: 15px;
}

.form-col2 .form-submit {
  width: 90%;
}

.form2_top {
  background-color: #e6f2ff;
  padding: 20px 0px;
  border-bottom: 5px solid #ffffff;
}

@media screen and (min-width: 768px) {
  .form2_top {
    padding: 30px 0px;
    border-bottom: none;
  }
}
.form2_top .form-col2__title img:last-child {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .form2_top .form-col2__title img:last-child {
    margin-bottom: 0px;
  }
}
.form2_top .form2_box {
  background: transparent;
  border: none;
  padding-bottom: 0px;
}

.form2_top .form2_box .form2_box_item {
  background-color: #ffffff;
}

.form2_top .form2_box .form2_box_item .form2_box_column {
  padding-bottom: 15px;
}

.form2_top .submit-wrap {
  background-color: #ffffff;
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .form2_top .submit-wrap {
    background: transparent;
    border: none;
    padding-top: 30px;
  }
}
.form2_top .bnr-contact {
  display: none;
}

.form2-header {
  margin-bottom: initial;
}

.form2 {
  text-align: center;
}

.form2_box {
  background-color: #ffffff;
  max-width: 800px;
  margin: auto;
  padding: 0;
  display: block;
  border-radius: 13px 13px 10px 10px;
}

@media screen and (min-width: 768px) {
  .form2_box {
    border: 1px solid #e4e4e4;
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
}
.form2_box label {
  font-weight: 600;
  font-size: 12px;
}

.form2_box_item {
  flex-basis: 49%;
}

.form2_box_item_title {
  background-color: #3984D1;
  color: #fff;
  padding: 2px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.form2_box_column {
  padding: 5px 15px 15px;
  border: 1px solid #e4e4e4;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .form2_box_column {
    border: none;
    padding: 5px 15px 8px;
  }
}
.form2_box_column_item {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 50%;
}

.form2_box_column_item.ab-email {
  display: none;
}

.form2_box_column_item_box {
  margin-top: 10px;
  margin-bottom: 0px;
}

@media screen and (min-width: 768px) {
  .form2_box_column_item_box {
    margin-top: initial;
  }
}
.form2_box_column_item_required,
.form2_box_column_item_optional {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 10px;
  color: #fff;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .form2_box_column_item_required,
  .form2_box_column_item_optional {
    margin-right: 10px;
  }
}
.form2_box_column_item_required {
  background-color: #fc5251;
}

.form2_box_column_item_optional {
  background-color: #003770;
}

.form2_box_column_item label {
  margin-bottom: 1px;
}

.form2_box_column_item select.form2_box_column_item_input,
.form2_box_column_item input.form2_box_column_item_input {
  background-color: #ffffff;
  height: 43px;
  border: 2px solid #D9D9D9;
}

.form2_box_column_item select.form2_box_column_item_input::placeholder,
.form2_box_column_item input.form2_box_column_item_input::placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}

.form2_box_column_item select.form2_box_column_item_input::-ms-input-placeholder,
.form2_box_column_item input.form2_box_column_item_input::-ms-input-placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}

.form2_box_column_item select.form2_box_column_item_input:-ms-input-placeholder,
.form2_box_column_item input.form2_box_column_item_input:-ms-input-placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .form2_box_column_item select.form2_box_column_item_input,
  .form2_box_column_item input.form2_box_column_item_input {
    height: 35px;
  }
}
.form2_box_column_item_flex {
  display: flex;
  justify-content: space-between;
}

.form2_box_column_item.policy {
  display: flex;
  justify-content: center;
  flex-direction: row !important;
  position: relative;
  top: 8px;
}
.form2_box_column_item.policy .checkPolicy {
  display: block !important;
  height: 27px !important;
  width: 20px !important;
  margin-right: 10px;
}

.form2_box_column_item_input.c-select.distance.form-modal.ab-border[name=distance] {
  margin-bottom: 20px;
}

.form2_box_img_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .form2_box_img_pc {
    display: initial;
  }
}
.form2_box_img_sp {
  display: initial;
}

@media screen and (min-width: 768px) {
  .form2_box_img_sp {
    display: none;
  }
}
.form2_box_img_sp img {
  margin-bottom: 10px;
}

.form2_box_img_description {
  background-color: #fadedd;
  color: #eb7e7f;
  display: flex;
  justify-content: center;
  padding: 3px 0;
}

@media screen and (min-width: 768px) {
  .form2_box_img_description {
    display: none;
  }
}
.form2_box_img_description_bottom {
  width: 100%;
  height: 5px;
  background-color: #fff;
}

.distance.is-empty {
  color: rgba(105, 105, 105, 0.8) !important;
}

.submit-wrap {
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-top: none;
  padding: 0 0 20px;
  max-width: 800px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .submit-wrap {
    padding-top: 20px;
  }
}
.submit-wrap .form-submit {
  margin: 0 auto;
  min-width: 230px;
  max-width: 300px;
}

.submit-wrap .form-submit::before {
  width: 35px;
  height: 35px;
  left: 5px;
}

.submit-wrap .form-submit:after {
  width: 14px;
  height: 14px;
}

.submit-wrap .form-submit input {
  text-align: center;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .submit-wrap .form-submit input {
    font-size: 16px;
  }
}
.form-submit {
  width: 85%;
  position: relative;
  margin: 0px auto 15px;
}

.form-submit::before {
  content: "";
  display: inline-block;
  background-image: url("../images/icon/submit_yen.svg");
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  position: absolute;
  cursor: pointer;
  left: 10px;
  top: -5px;
}

.form-submit::after {
  content: "";
  display: inline-block;
  background-image: url("../images/icon/arrow_r.svg");
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.form-submit input {
  background: #fce400;
  border: none;
  border-bottom: 5px solid #E9D100;
  width: 100%;
  padding: 10px 8px 7px 8px;
  font-size: 16px;
  border-radius: 3px;
  color: #000000;
}

@media screen and (min-width: 1000px) {
  .form-submit input {
    padding: 10px 10px 7px 10px;
    font-size: 18px;
  }
}
.form-submit.focused {
  border-radius: 5px;
}

form input,
form select {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  form input,
  form select {
    font-weight: initial;
  }
}
@media screen and (min-width: 768px) {
  form {
    position: relative;
  }
}
form {
  /* selectのplaceholder制御 */
}
form .is-empty {
  color: #333;
}
form {
  /* バリデーションメッセージ */
}
form .form_err {
  background-color: rgba(254, 0, 0, 0.2) !important;
  border: 2px solid #fe0000 !important;
  position: relative;
}
form .err_msg {
  font-size: 10px;
  color: #fe0000;
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  form .err_msg {
    font-size: 12px;
  }
}
form {
  /* TOPメインフォーム
  -----------------------------------------*/
}
form.col1 .err_msg {
  text-align: right;
}
form {
  /* form2
  -----------------------------------------*/
}
form.form2 .err_msg {
  position: absolute;
  right: 0;
  top: 12px;
}
@media screen and (min-width: 768px) {
  form.form2 .err_msg {
    top: 8px;
  }
}

.error-txt {
  font-size: 0.8rem;
  color: #fe0000;
  text-align: right;
}

.form2-new.extend-height {
  height: 430px;
}
.form2-new .input-focus {
  border: 2px solid #fe0000 !important;
  animation: focusInput 1.3s ease infinite;
  -webkit-animation: focusInput 1.3s ease infinite;
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) {
  .form2-new .input-focus {
    animation: none;
    -webkit-animation: none;
    -webkit-appearance: none;
  }
}
.form2-new .input-focus-pc {
  border: 2px solid #fe0000 !important;
  animation: focusInput 1.3s ease infinite;
  -webkit-animation: focusInput 1.3s ease infinite;
}
@-webkit-keyframes focusInput {
  0% {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #fe0000;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #fe0000;
  }
  100% {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 5px rgba(234, 100, 90, 0);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 5px rgba(234, 100, 90, 0);
  }
}
@keyframes focusInput {
  0% {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px #fe0000;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #fe0000;
  }
  100% {
    -webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 5px rgba(234, 100, 90, 0);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 5px rgba(234, 100, 90, 0);
  }
}
.form2-new .submit-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.c-form-modal {
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 9999;
  background: white;
  width: 100vw;
  padding-top: 0;
  padding-bottom: 70px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-form-modal::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-form-modal {
    position: absolute;
    height: auto;
    padding-bottom: 0;
    overflow: inherit;
    border-radius: 5px;
  }
}
.c-form-modal p {
  margin-top: 0;
}
.c-form-modal__bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
}
.c-form-modal__inner {
  height: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-form-modal__inner {
    border: 5px solid rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    padding-right: 5px;
  }
}
.c-form-modal__step {
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-form-modal__step .title {
    margin-left: auto !important;
  }
  .c-form-modal__step {
    background-color: inherit;
  }
}
.c-form-modal__step .step-title {
  font-weight: 400;
  margin-bottom: 0;
  padding: 10px;
  text-align: left;
}
.c-form-modal__step__contents {
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-form-modal__step__contents {
    margin-right: 5px;
  }
}
.c-form-modal__step__contents .title {
  background-image: none !important;
  background-color: #267dcb;
  color: #ffffff;
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: left;
}
.c-form-modal__step__contents .title.model-of-maker {
  background-color: #e4e4e4;
  color: #333333;
  margin-bottom: 4px;
}
.c-form-modal__step__contents .title.back-red {
  background-color: rgba(254, 0, 0, 0.1);
  color: #333333;
  text-align: center;
}
.c-form-modal__step__contents .sub-title {
  background-color: #e6f2fd;
  margin-bottom: 0;
  padding: 0 10px;
  line-height: 1.6;
  text-align: left;
}
.c-form-modal__step__contents p {
  border-bottom: 1px solid #e4e4e4;
}
.c-form-modal__step .m-maker,
.c-form-modal__step .m-carname,
.c-form-modal__step .m-distance,
.c-form-modal__step .m-pref {
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
  padding: 5px 10px;
}
.c-form-modal__step.step1, .c-form-modal__step.step2, .c-form-modal__step.step3, .c-form-modal__step.step4 {
  opacity: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-form-modal__step.step1, .c-form-modal__step.step2, .c-form-modal__step.step3, .c-form-modal__step.step4 {
    height: 100%;
  }
}
.c-form-modal__step.step1.fade-in, .c-form-modal__step.step2.fade-in, .c-form-modal__step.step3.fade-in, .c-form-modal__step.step4.fade-in {
  display: block;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .c-form-modal__step.step1 .step1__inner, .c-form-modal__step.step2 .c-form-modal__step__contents, .c-form-modal__step.step3 .c-form-modal__step__contents, .c-form-modal__step.step4 .c-form-modal__step__contents {
    overflow-y: scroll;
    height: 90%;
    padding-bottom: 10px;
  }
  .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar, .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar, .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar, .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar {
    width: 10px;
    background-color: #e4e4e4;
    margin-right: 5px;
  }
  .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar-track, .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar-track, .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar-track, .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar-track {
    border-radius: 5px;
  }
  .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar-thumb, .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar-thumb, .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar-thumb, .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
  }
}
@media screen and (min-width: 768px) {
  .c-form-modal__step.step2 .c-form-modal__step__contents {
    width: calc(100% + 10px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar {
    display: none;
  }
  .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar {
    width: 0px;
  }
}
.c-form-modal__step.step4 .c-form-modal__step__contents, .c-form-modal__step.step3 .c-form-modal__step__contents {
  padding-right: 5px;
  margin-right: 0px;
}
.c-form-modal__step.step4 summary {
  background-color: rgba(228, 228, 228, 0.3);
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0;
  padding: 5px 10px;
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-form-modal__step.step4 summary {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .c-form-modal__step.step4 summary {
    font-size: 16px;
  }
}
.c-form-modal__step.step4 summary::-webkit-details-marker {
  display: none;
}
.c-form-modal p[class*=m-logo-]::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 35px;
  height: 25px;
}
.c-form-modal .m-logo-aldina::before {
  background-image: url("../images/modal_form/aldina.webp");
  background-position: -4px;
  background-size: 37px !important;
}
.c-form-modal .m-logo-alfaromeo::before {
  background-image: url("../images/modal_form/alfaromeo.svg");
}
.c-form-modal .m-logo-amg::before {
  background-image: url("../images/modal_form/amg.webp");
  background-size: 30px !important;
  background-position: center;
}
.c-form-modal .m-logo-audi::before {
  background-image: url("../images/modal_form/audi.webp");
  background-position: -3px;
}
.c-form-modal .m-logo-bentley::before {
  background-image: url("../images/modal_form/bentley.svg");
  background-size: 29px !important;
  background-position: 0 8px;
}
.c-form-modal .m-logo-benz::before {
  background-image: url("../images/modal_form/benz.webp");
  background-size: 44px !important;
  background-position: -6px -3px;
}
.c-form-modal .m-logo-bmw::before {
  background-image: url("../images/modal_form/bmw.svg");
  background-position: 2px 0px;
  background-size: 25px !important;
}
.c-form-modal .m-logo-buick::before {
  background-image: url("../images/modal_form/buick.svg");
  background-position: 2px;
}
.c-form-modal .m-logo-cadillac::before {
  background-image: url("../images/modal_form/cadillac.svg");
  background-position: 5px 0;
}
.c-form-modal .m-logo-chevrolet::before {
  background-image: url("../images/modal_form/chevrolet.webp");
  background-size: 30px !important;
  background-position: -1px -4px;
}
.c-form-modal .m-logo-chrysler::before {
  background-image: url("../images/modal_form/chrysler.webp");
  background-size: 36px !important;
  background-position: -3px 8px;
}
.c-form-modal .m-logo-citroen::before {
  background-image: url("../images/modal_form/citroen.webp");
  background-position: -4px 2px;
}
.c-form-modal .m-logo-daihatsu::before {
  background-image: url("../images/modal_form/daihatsu.webp");
}
.c-form-modal .m-logo-dodge::before {
  background-image: url("../images/modal_form/dodge.webp");
  background-position: 1px 8px;
  background-size: 30px !important;
}
.c-form-modal .m-logo-ferrari::before {
  background-image: url("../images/modal_form/ferrari.webp");
}
.c-form-modal .m-logo-fiat::before {
  background-image: url("../images/modal_form/fiat.svg");
}
.c-form-modal .m-logo-ford::before {
  background-image: url("../images/modal_form/ford.webp");
  background-position: 1px 4px;
  background-size: 29px !important;
}
.c-form-modal .m-logo-gmc::before {
  background-image: url("../images/modal_form/gmc.webp");
  background-position: 1px 6px;
  background-size: 30px !important;
}
.c-form-modal .m-logo-hino::before {
  background-image: url("../images/modal_form/hino.webp");
  background-size: 27px !important;
  background-position: 2px 3px;
}
.c-form-modal .m-logo-honda::before {
  background-image: url("../images/modal_form/honda.webp");
}
.c-form-modal .m-logo-hummer::before {
  background-image: url("../images/modal_form/hummer.svg");
  background-position: -3px 9px;
}
.c-form-modal .m-logo-hyundai::before {
  background-image: url("../images/modal_form/hyundai.svg");
  background-size: 25px !important;
  background-position: 1px 8px;
}
.c-form-modal .m-logo-isuzu::before {
  background-image: url("../images/modal_form/isuzu.svg");
  background-size: 33px !important;
  background-position: 0px 9px;
}
.c-form-modal .m-logo-jaguar::before {
  background-image: url("../images/modal_form/jaguar.webp");
  background-position: -3px 0;
}
.c-form-modal .m-logo-jeep::before {
  background-image: url("../images/modal_form/jeep.svg");
  background-size: 30px !important;
  background-position: 0 6px;
}
.c-form-modal .m-logo-lanborghini::before {
  background-image: url("../images/modal_form/lanborghini.webp");
  background-position: -7px -3px;
  background-size: 39px !important;
}
.c-form-modal .m-logo-lancia::before {
  background-image: url("../images/modal_form/lancia.webp");
}
.c-form-modal .m-logo-landrover::before {
  background-image: url("../images/modal_form/landrover.svg");
  background-size: 27px !important;
  background-position: 0 4px;
}
.c-form-modal .m-logo-lexus::before {
  background-image: url("../images/modal_form/lexus.webp");
}
.c-form-modal .m-logo-lincoln::before {
  background-image: url("../images/modal_form/lincoln.webp");
  background-position: 4px 0px;
  background-size: 23px !important;
}
.c-form-modal .m-logo-lotus::before {
  background-image: url("../images/modal_form/lotus.svg");
}
.c-form-modal .m-logo-maserati::before {
  background-image: url("../images/modal_form/maserati.webp");
}
.c-form-modal .m-logo-matsuda::before {
  background-image: url("../images/modal_form/matsuda.webp");
}
.c-form-modal .m-logo-mitsubishi::before {
  background-image: url("../images/modal_form/mitsubishi.png");
}
.c-form-modal .m-logo-mitsuoka::before {
  background-image: url("../images/modal_form/mitsuoka.webp");
}
.c-form-modal .m-logo-nissan::before {
  background-image: url("../images/modal_form/nissan.webp");
  background-position: 2px -2px;
}
.c-form-modal .m-logo-opel::before {
  background-image: url("../images/modal_form/opel.svg");
  background-size: 40px !important;
  background-position: -6px -4px;
}
.c-form-modal .m-logo-peugeot::before {
  background-image: url("../images/modal_form/peugeot.webp");
  background-position: -5px 0;
}
.c-form-modal .m-logo-pontiac::before {
  background-image: url("../images/modal_form/pontiac.webp");
  background-size: 113px !important;
  background-position: -43px -4px;
}
.c-form-modal .m-logo-porsche::before {
  background-image: url("../images/modal_form/porsche.webp");
  background-size: 43px !important;
  background-position: -7px -3px;
}
.c-form-modal .m-logo-renault::before {
  background-image: url("../images/modal_form/renault.webp");
  background-position: -4px 0;
}
.c-form-modal .m-logo-rolls::before {
  background-image: url("../images/modal_form/rolls.svg");
  background-position: 7px -1px;
  background-size: 14px !important;
}
.c-form-modal .m-logo-rover::before {
  background-image: url("../images/modal_form/rover.webp");
}
.c-form-modal .m-logo-smart::before {
  background-image: url("../images/modal_form/smart.svg");
  background-size: 32px !important;
  background-position: 0 6px;
}
.c-form-modal .m-logo-saab::before {
  background-image: url("../images/modal_form/saab.svg");
}
.c-form-modal .m-logo-subaru::before {
  background-image: url("../images/modal_form/subaru.webp");
}
.c-form-modal .m-logo-suzuki::before {
  background-image: url("../images/modal_form/suzuki.png");
}
.c-form-modal .m-logo-toyota::before {
  background-image: url("../images/modal_form/toyota.webp");
}
.c-form-modal .m-logo-ud::before {
  background-image: url("../images/modal_form/ud.svg");
  background-position: 3px 0;
}
.c-form-modal .m-logo-volkswagen::before {
  background-image: url("../images/modal_form/volkswagen.svg");
  background-position: 2px;
}
.c-form-modal .m-logo-volvo::before {
  background-image: url("../images/modal_form/volvo.svg");
}
.c-form-modal__close {
  position: absolute;
  padding: 5px 10px;
  font-size: 28px;
  right: 0px;
  line-height: 1;
  text-align: center;
  z-index: 999;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.jp-syllabary-list {
  font-weight: 400;
  position: fixed;
  right: 0;
  top: 75px;
  background: #e4e4e4;
  z-index: 9999;
  padding-left: 3px;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .jp-syllabary-list {
    width: 50px;
    position: absolute;
    left: inherit;
    right: 0;
    top: 87px;
    font-size: 12px;
  }
}
.jp-syllabary-list li {
  padding: 5px 10px;
  border-bottom: 1px solid white;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .jp-syllabary-list li {
    padding: 0 10px;
  }
}
.jp-syllabary-list li a {
  color: #333333;
  text-decoration: none;
}
.jp-syllabary-list li a.not-active {
  opacity: 0.2;
}

.main_consult_wrap .c-form-modal {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .main_consult_wrap .c-form-modal {
    padding: 10px;
  }
}
.main_consult_wrap .c-form-modal__close {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .main_consult_wrap .jp-syllabary-list {
    top: 83px;
    width: 54px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .single-column .c-form-modal p {
    font-size: 13px !important;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .c-form-modal p {
    font-size: 16px !important;
  }
}
.single-column form.form2 .err_msg {
  font-size: 10px;
}
@media screen and (min-width: 1000px) {
  .single-column form.form2 .err_msg {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .single-column .form-tel-wrap .err_msg {
    right: -45px;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .form-tel-wrap .err_msg {
    right: 0 !important;
  }
}

.step_form_1_test {
  border: none;
}
@media screen and (min-width: 768px) {
  .step_form_1_test .u-text-center {
    text-align: center;
    color: white;
  }
  .step_form_1_test .err_msg {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .step_form_1_test input:not(input[type=button]):not(input[type=submit]),
  .step_form_1_test select {
    height: 34px !important;
  }
  .step_form_1_test dl {
    flex-direction: column !important;
    align-items: unset !important;
  }
  .step_form_1_test dl dt span {
    vertical-align: middle;
  }
  .step_form_1_test dl dt {
    font-weight: 600 !important;
    font-size: 15px !important;
    margin: 0% !important;
  }
}
.step_form_1_test__box {
  padding: 9px 0 0;
  border-top: 1px solid #E0E0E0;
  margin-top: 15px;
}
.step_form_1_test__box__flex, .step_form_1_test__box__flex-sp {
  display: flex;
  text-align: center;
  gap: 7px;
  margin-bottom: 7px;
}
.step_form_1_test__box__flex {
  align-items: flex-end;
}
.step_form_1_test__box__flex-sp {
  align-items: center;
}
.step_form_1_test__box__text {
  font-weight: 700;
  line-height: 19.07px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .step_form_1_test__box__text {
    font-size: 14px;
  }
}
.step_form_1_test__box__detail {
  font-weight: 400;
  color: #4D4D4D;
  font-size: 10px;
  line-height: 16.34px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .step_form_1_test__box__detail {
    font-size: 12px;
  }
}
.step_form_1_test__box__detail a {
  color: #4D4D4D;
}

.step_form_2_test {
  border: none;
}
.step_form_2_test .wrap_back_car_info_form {
  text-align: center;
  margin-bottom: 1rem !important;
}
@media screen and (min-width: 768px) {
  .step_form_2_test .u-text-center {
    text-align: center;
    color: white;
  }
  .step_form_2_test .wrap_back_car_info_form {
    margin-bottom: auto !important;
  }
  .step_form_2_test .err_msg {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .step_form_2_test .err_msg_coop_member_id {
    text-align: left;
    margin-top: 0;
    font-size: 10px;
    color: #fe0000;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .step_form_2_test .err_msg_coop_member_id {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .step_form_2_test input:not(input[type=button]):not(input[type=submit]),
  .step_form_2_test select {
    height: 34px !important;
  }
  .step_form_2_test dl {
    flex-direction: column !important;
    align-items: unset !important;
  }
  .step_form_2_test dl dt span {
    vertical-align: middle;
  }
  .step_form_2_test dl dt {
    font-weight: 600 !important;
    font-size: 15px !important;
    margin: 0% !important;
  }
}
.step_form_2_test__box {
  padding: 8px 0 15px;
  border-top: 1px solid #E0E0E0;
  margin: 20px 16px;
}
@media screen and (min-width: 768px) {
  .step_form_2_test__box {
    padding: 9px 0 0;
    margin: 15px 0 0;
  }
}
.step_form_2_test__box__flex, .step_form_2_test__box__flex-sp {
  display: flex;
  text-align: center;
  gap: 7px;
  margin-bottom: 7px;
}
.step_form_2_test__box__flex {
  align-items: flex-end;
}
.step_form_2_test__box__flex-sp {
  align-items: center;
}
.step_form_2_test__box__text {
  font-weight: 700;
  line-height: 19.07px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .step_form_2_test__box__text {
    font-size: 14px;
  }
}
.step_form_2_test__box__detail {
  font-weight: 400;
  color: #4D4D4D;
  font-size: 10px;
  line-height: 16.34px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .step_form_2_test__box__detail {
    font-size: 12px;
  }
}
.step_form_2_test__box__detail a {
  color: #4D4D4D;
}

.main_consult_wrap .c-form-modal {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .main_consult_wrap .c-form-modal {
    padding: 10px;
  }
}
.main_consult_wrap .c-form-modal__close {
  right: 10px;
}

@media screen and (min-width: 768px) {
  .main_consult_wrap .jp-syllabary-list {
    top: 83px;
    width: 54px;
    font-size: 14px;
  }
}
.main_consult_wrap {
  position: absolute;
  padding: 10px 40px 20px;
  margin: 0.75rem 0;
  background: #ffffff;
  border-radius: 5px;
  max-width: 410px;
}

.main_consult_wrap img.form-title {
  height: 64px;
  display: block;
  margin: auto;
}

.main_consult_wrap .title {
  background-image: url("../images/top/bg_top_form.webp");
  margin-left: -1rem;
  width: 110%;
  padding: 3px;
}

.main_consult_wrap .img_wrap {
  padding: 1rem;
}

.main_consult_wrap h4 {
  text-align: center;
  color: #ffffff;
}

.main_consult_wrap dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.main_consult_wrap dl.ab-email {
  display: none;
}

.main_consult_wrap dl dt {
  letter-spacing: -0.06em;
  flex: 0 0 100%;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}

@media screen and (min-width: 1000px) {
  .main_consult_wrap dl dt {
    font-size: 14px;
  }
}
.main_consult_wrap dl dt span {
  padding-left: 0.1rem;
}

.main_consult_wrap dl dt img {
  width: 40px;
}

.main_consult_wrap dl dd {
  flex: 0 0 100%;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .main_consult_wrap dl {
    flex-direction: row;
    justify-content: space-between;
  }
  .main_consult_wrap dl dt {
    flex: 0 0 45%;
    margin-left: -15px;
  }
  .main_consult_wrap dl dd {
    flex: 0 0 65%;
    margin: 0;
  }
  .main_consult_wrap dl dd select,
  .main_consult_wrap dl dd input {
    border: 2px solid #D9D9D9;
    height: 29px;
    padding: 4px 12px;
    font-size: 12px;
    letter-spacing: 0.07em;
    will-change: contents;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .main_consult_wrap dl dd select,
  .main_consult_wrap dl dd input {
    font-size: 14px;
    letter-spacing: initial;
  }
}
@media screen and (min-width: 768px) {
  .main_consult_wrap dl dd select::placeholder,
  .main_consult_wrap dl dd input::placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
  .main_consult_wrap dl dd select::-ms-input-placeholder,
  .main_consult_wrap dl dd input::-ms-input-placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
  .main_consult_wrap dl dd select:-ms-input-placeholder,
  .main_consult_wrap dl dd input:-ms-input-placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
}
.main_consult_wrap .form-submit {
  margin: 0px auto 5px;
}

.main_consult_wrap .form-submit::before {
  width: 40px;
  height: 40px;
  left: 5px;
  top: -5px;
}

.main_consult_wrap .form-submit::after {
  width: 16px;
  height: 16px;
}

.main_consult_wrap .form-submit input {
  padding: 8px 10px 5px 10px;
}

.c-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 10px;
  font-size: 13px;
  line-height: 1.1em;
  border-radius: 3px;
  border: none;
  background-image: url(../images/icon/arrow_b_normal.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: right 10px center;
}

.bg-yellow {
  background-color: #fff1c8 !important;
}

form.form2 .err_msg_coop_member_id {
  text-align: left;
  margin-top: 0;
  font-size: 10px;
  color: #fe0000;
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  form.form2 .err_msg_coop_member_id {
    font-size: 12px;
  }
}

.next_step_btn {
  letter-spacing: 3px;
  font-weight: lighter;
}

.hero {
  padding: 0;
}
.hero .hero-container {
  max-width: 980px;
  margin: auto;
  padding: 5px 0;
}
.hero__heading__img {
  display: flex;
  justify-content: center;
  padding: 5px;
  width: 85%;
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hero__heading__img {
    margin: initial;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .hero .hero-main__bg {
    position: relative;
    background-image: url(../images/lp_businesstrip/hero/background.svg);
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .hero .hero-main__bg {
    padding-top: 20px;
    height: 625px;
  }
}
.hero .hero-main__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero .hero-main__content {
    height: 524px;
    max-width: 1100px;
    margin: auto;
  }
}
@media screen and (min-width: 1000px) {
  .hero .hero-main__content {
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .hero .hero-main__content {
    height: 485px;
  }
}
.hero .hero-main__content__mainimg {
  width: 100%;
  bottom: -220px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .hero .hero-main__content__mainimg {
    position: absolute;
    height: 500px;
    top: 65.5%;
    transform: translateY(-50%);
    width: 57%;
    margin-top: 12.5px;
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .hero .hero-main__content__mainimg img {
    width: min(660px, 100%);
    height: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero .hero-main__content__mainimg img {
    width: min(714px, 100%);
    height: 569px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .hero .hero-main__content__mainimg {
    display: block;
    width: 100%;
    top: 51%;
    height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .hero .hero-main__content__mainimg {
    width: 62%;
  }
}
@media screen and (min-width: 1200px) {
  .hero .hero-main__content__mainimg {
    width: 100%;
  }
}
.hero .hero-main__content__mainimg img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero .hero-main__content__mainimg img {
    width: auto;
  }
}
.hero .hero-main__content .l-main_top_mainvisual2 {
  z-index: 99;
  margin-right: 1%;
  width: 41%;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 1200px) {
  .hero .hero-main__content .l-main_top_mainvisual2 {
    width: 37%;
    margin-right: 0;
  }
}
.hero .hero-main__content .l-main_top_mainvisual2 .main_consult_wrap .step_form_1 .next_step_btn {
  cursor: pointer;
}
.hero .hero-main__content .l-main_top_mainvisual2 .main_consult_wrap .step_form_2 .policy dt {
  display: flex;
  justify-content: center;
  font-size: 16px !important;
}
.hero .hero-main__content .l-main_top_mainvisual2 .main_consult_wrap .step_form_2 .policy .checkPolicy {
  display: block !important;
  height: 27px !important;
  width: 20px !important;
  margin-right: 10px;
}
.hero .hero-main__content .l-main_top_mainvisual2 .main_consult_wrap .step_form_2 .policy__text {
  text-decoration: none;
}
.hero .hero-main__content .l-main_top_mainvisual2 .main_consult_wrap .step_form_2 .form2_box_check_link {
  cursor: pointer;
}
.hero .distance.c-select[name=distance] {
  margin-bottom: 20px;
}

.concern {
  padding: 0;
}
.concern__container {
  position: relative;
  background-color: #D9EDFF;
  padding: 30px 20px 65px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concern__container {
    padding: 80px 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .concern__container {
    padding: 80px 0 0;
  }
}
.concern__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: solid 40px white;
  border-left: solid 50vw rgba(0, 0, 0, 0);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .concern__container::before {
    border-bottom: solid 60px white;
  }
}
@media screen and (min-width: 1000px) {
  .concern__container::before {
    border-bottom: solid 90px white;
  }
}
.concern__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 40px white;
  border-right: solid 50vw rgba(0, 0, 0, 0);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .concern__container::after {
    border-bottom: solid 60px white;
  }
}
@media screen and (min-width: 1000px) {
  .concern__container::after {
    border-bottom: solid 90px white;
  }
}
.concern__title {
  text-align: center;
}
.concern__content {
  text-align: center;
  margin-top: -10px;
}
.concern__title-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -3px;
}
.concern__title-sp__text__first {
  font-weight: 600;
  font-size: 16px;
  line-height: 21.79px;
  text-align: center;
  color: white;
  background-color: #0B6DB8;
  border-radius: 40.53px;
  width: 112px;
  height: 27.56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.concern__title-sp__text__second {
  color: #0B6DB8;
  font-weight: 700;
  font-size: 27px;
  line-height: 36.77px;
  letter-spacing: -0.04em;
  text-align: center;
}
.concern__content-sp__box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  margin: 0 auto 10px;
  max-width: 335px;
  width: 100%;
  height: 60px;
  border: 3px solid #A6D5FF;
  border-radius: 10px;
}
.concern__note {
  text-align: center;
  font-weight: 500;
  font-size: 16.86px;
  line-height: 22.96px;
  letter-spacing: -0.05em;
  text-align: center;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .concern__note {
    padding-top: 40px;
    font-size: 28px;
    line-height: 38.14px;
  }
}
.concern__note__add-line {
  position: relative;
}
.concern__note__add-line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  height: 10px;
  transition: 0.2s;
  background-color: #fcf17c;
  z-index: -1;
  width: 97%;
}

.solution .remove-bg {
  margin-bottom: 0;
}
.solution {
  padding: 0;
}
.solution__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .solution__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .solution__container {
    padding: 80px 0;
  }
}
.solution__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .solution__title {
    margin-bottom: 36px;
  }
}
.solution__group {
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .solution__group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.solution__group:last-child {
  margin-bottom: 0;
}
.solution__box {
  padding: 20px;
  border-radius: 4px;
  border: 4px #D9EDFF solid;
  max-width: 336px;
  width: 100%;
  margin: 0 auto 15px;
  height: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution__box {
    margin: 0;
    padding: 40px 30px;
    max-width: calc(50% - 50px);
  }
}
@media screen and (min-width: 1200px) {
  .solution__box {
    height: 100%;
    max-width: 485px;
  }
}
.solution__box__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .solution__box__title {
    margin-bottom: 20px;
  }
}
.solution__box__title__img-first, .solution__box__title__img-second, .solution__box__title__img-third, .solution__box__title__img-fourth {
  position: unset;
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-first, .solution__box__title__img-second, .solution__box__title__img-third, .solution__box__title__img-fourth {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-first img, .solution__box__title__img-second img, .solution__box__title__img-third img, .solution__box__title__img-fourth img {
    width: 85%;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box__title__img-first img, .solution__box__title__img-second img, .solution__box__title__img-third img, .solution__box__title__img-fourth img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-first {
    right: -6vw;
    top: -2vw;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box__title__img-first {
    right: 0;
    top: -5%;
  }
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-second {
    right: -4vw;
    top: -2vw;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box__title__img-second {
    right: 0;
    top: -5%;
  }
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-third {
    right: -3vw;
    top: 0vw;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box__title__img-third {
    right: 0;
    top: 3%;
  }
}
@media screen and (min-width: 768px) {
  .solution__box__title__img-fourth {
    right: -5vw;
    top: -2vw;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box__title__img-fourth {
    right: 0;
    top: -5%;
  }
}
.solution__box__title__text {
  color: #0B6DB8;
  font-weight: 600;
  font-size: 23px;
  line-height: 31px;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .solution__box__title__text {
    font-size: 2.5vw;
    line-height: 3.31vw;
  }
}
@media screen and (min-width: 1200px) {
  .solution__box__title__text {
    font-size: 30px;
    line-height: 39px;
  }
}
.solution__box__title__text span {
  background-color: #D9EDFF;
}
.solution__box__content {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .solution__box__content {
    font-size: 1.5vw;
    line-height: 2.3vw;
  }
}
@media screen and (min-width: 1200px) {
  .solution__box__content {
    font-size: 16px;
    line-height: 26px;
  }
}

.car-reject {
  padding: 0;
}
.car-reject__container {
  position: relative;
  padding: 0 20px 30px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .car-reject__container {
    padding: 0 20px 80px;
  }
}
@media screen and (min-width: 1200px) {
  .car-reject__container {
    padding: 0 0 80px;
  }
}
.car-reject__title {
  text-align: center;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .car-reject__title {
    display: block;
    margin-bottom: 40px;
  }
}
.car-reject__title__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 24.52px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .car-reject__title__text {
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 27.24px;
  }
}
.car-reject__box {
  background-color: #D9EDFF;
  position: relative;
  max-width: 100%;
  border-radius: 12px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .car-reject__box {
    padding: 40px;
    max-width: 1000px;
  }
}
.car-reject__box__content {
  background-color: #FFFFFF;
  border-radius: 10px;
  display: block;
  padding: 20px 0 20px 52px;
}
@media screen and (min-width: 768px) {
  .car-reject__box__content {
    display: flex;
    gap: 66px;
    padding: 40px 0 40px 78px;
  }
}
.car-reject__box__content-first__text, .car-reject__box__content-second__text {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 20.57px;
  letter-spacing: -0.03em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .car-reject__box__content-first__text, .car-reject__box__content-second__text {
    margin-bottom: 20px;
    gap: 10px;
    font-size: 20px;
    line-height: 24.2px;
  }
}
.car-reject__box__content-first__text:last-child, .car-reject__box__content-second__text:last-child {
  margin-bottom: 0;
}
.car-reject__box__content-first {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .car-reject__box__content-first {
    margin-bottom: 0;
  }
}
.car-reject__box__avatar {
  position: absolute;
  display: none;
}
@media screen and (min-width: 768px) {
  .car-reject__box__avatar {
    display: block;
    bottom: 0;
    left: 80%;
    transform: translateX(-20%);
  }
}
@media screen and (min-width: 1000px) {
  .car-reject__box__avatar {
    left: 77%;
    transform: translateX(-50%);
  }
}
.car-reject__text {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .car-reject__text {
    margin-top: 40px;
  }
}

.jisseki {
  padding: 0;
  position: relative;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-color: #D9EDFF;
}
@media screen and (min-width: 768px) {
  .jisseki {
    background-color: unset;
    margin-top: 30px;
    background-image: url("../images/lp_businesstrip/jisseki/bg.webp");
  }
}
.jisseki__container {
  position: relative;
  padding: 30px 20px 21px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .jisseki__container {
    padding: 80px 20px 145px;
  }
}
@media screen and (min-width: 1200px) {
  .jisseki__container {
    padding: 80px 0 145px;
  }
}
.jisseki__bg {
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .jisseki__bg {
    top: -30px;
    background-image: url("../images/lp_businesstrip/jisseki/bg2.svg");
  }
}
.jisseki__avatar {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .jisseki__avatar {
    margin-left: 10px;
  }
}
.jisseki__box {
  display: flex;
  align-items: center;
  max-width: 338px;
  margin: 0 auto 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .jisseki__box {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.jisseki__title {
  text-align: center;
}
.jisseki__title__first {
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .jisseki__title__first {
    margin-bottom: 7.24px;
  }
}
.jisseki__title__second {
  position: relative;
}
@media screen and (min-width: 768px) {
  .jisseki__title__second {
    max-width: 437px;
    margin: 0 auto;
  }
}
.jisseki__title__second__star-first, .jisseki__title__second__star-second {
  display: none;
}
@media screen and (min-width: 768px) {
  .jisseki__title__second__star-first, .jisseki__title__second__star-second {
    display: block;
  }
}
.jisseki__title__second__star-first, .jisseki__title__second__star-second {
  position: absolute;
  top: -15px;
}
.jisseki__title__second__star-first {
  left: 0;
}
@media screen and (min-width: 768px) {
  .jisseki__title__second__star-first {
    left: 30px;
  }
}
.jisseki__title__second__star-second {
  right: 0;
  transform: rotate(270deg);
}
@media screen and (min-width: 1000px) {
  .jisseki__title__second__star-second {
    right: 30px;
  }
}
.jisseki__car {
  display: none;
}
@media screen and (min-width: 768px) {
  .jisseki__car {
    display: block;
    margin: 30px 0 0 47px;
  }
}
.jisseki__group {
  display: block;
  margin-bottom: 15.89px;
}
@media screen and (min-width: 768px) {
  .jisseki__group {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.jisseki__group:last-child {
  margin-bottom: 0;
}
.jisseki__group__box {
  background-color: white;
  width: 100%;
  max-width: 335px;
  border-radius: 12px;
  padding-bottom: 18px;
  margin: 0 auto 15.89px;
}
@media screen and (min-width: 768px) {
  .jisseki__group__box {
    margin: 0;
    padding-bottom: 0;
    max-width: 313px;
  }
}
.jisseki__group__content {
  font-weight: 600;
  font-size: 17px;
  line-height: 23.15px;
  text-align: left;
  padding: 15px 15px 10px;
  display: flex;
  gap: 15px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .jisseki__group__content {
    display: block;
    padding: 20px;
    font-size: 1.8vw;
    line-height: 27.24px;
  }
}
@media screen and (min-width: 1000px) {
  .jisseki__group__content {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .jisseki__group__content {
    padding: 20px 0 20px 20px;
    font-size: 20px;
  }
}
.jisseki__group__content__text {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .jisseki__group__content__text {
    width: unset;
  }
}
.jisseki__group__content__text-first, .jisseki__group__content__text-second {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .jisseki__group__content__text-first, .jisseki__group__content__text-second {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.jisseki__group__content__text-first div:first-child, .jisseki__group__content__text-second div:first-child {
  width: 54%;
}
@media screen and (min-width: 768px) {
  .jisseki__group__content__text-first div:first-child, .jisseki__group__content__text-second div:first-child {
    width: 37%;
  }
}
@media screen and (min-width: 1200px) {
  .jisseki__group__content__text-first div:first-child, .jisseki__group__content__text-second div:first-child {
    width: 35%;
  }
}
.jisseki__group__content__text-first {
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .jisseki__group__content__text-first {
    margin: 12px auto 15px;
  }
}
.jisseki__group__content__img img {
  border-radius: 8px;
}
.jisseki__group__price {
  padding: 0 15px;
}
.jisseki__group__price-pc, .jisseki__group__price-sp {
  width: 100%;
  max-width: 305px;
  height: 50px;
  align-items: center;
  margin: 0;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-pc, .jisseki__group__price-sp {
    max-width: 273px;
    height: 56px;
  }
}
.jisseki__group__price-pc div:first-child, .jisseki__group__price-sp div:first-child {
  color: white;
  background-color: #D92C2C;
  font-weight: 600;
  font-size: 16px;
  font-weight: 600;
  line-height: 21.79px;
  text-align: left;
  letter-spacing: normal;
  border-radius: 10px;
  width: 87px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-pc div:first-child, .jisseki__group__price-sp div:first-child {
    width: 50px;
    height: 50px;
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1000px) {
  .jisseki__group__price-pc div:first-child, .jisseki__group__price-sp div:first-child {
    font-size: 18px;
  }
}
.jisseki__group__price-pc div:not(:first-child), .jisseki__group__price-sp div:not(:first-child) {
  color: #D92C2C;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 43.7px;
  letter-spacing: 0.01em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-pc div:not(:first-child), .jisseki__group__price-sp div:not(:first-child) {
    font-size: 3vw;
    line-height: 52.9px;
    letter-spacing: 0.02em;
  }
}
@media screen and (min-width: 1200px) {
  .jisseki__group__price-pc div:not(:first-child), .jisseki__group__price-sp div:not(:first-child) {
    font-size: 40px;
  }
}
.jisseki__group__price-pc div:not(:first-child) span, .jisseki__group__price-sp div:not(:first-child) span {
  font-weight: 600;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.52px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-pc div:not(:first-child) span, .jisseki__group__price-sp div:not(:first-child) span {
    font-size: 1.8vw;
    line-height: 27.24px;
  }
}
@media screen and (min-width: 1000px) {
  .jisseki__group__price-pc div:not(:first-child) span, .jisseki__group__price-sp div:not(:first-child) span {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .jisseki__group__price-pc div:not(:first-child) span, .jisseki__group__price-sp div:not(:first-child) span {
    font-size: 20px;
  }
}
.jisseki__group__price-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-pc {
    display: flex;
    margin-top: 20px;
    gap: 20px;
  }
}
.jisseki__group__price-sp {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .jisseki__group__price-sp {
    display: none;
  }
}
.jisseki__group:first-child {
  margin-bottom: 15.89px;
}
@media screen and (min-width: 768px) {
  .jisseki__group:first-child {
    margin-bottom: 30px;
  }
}

.cta {
  position: relative;
  background: #FAF8E1;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .cta {
    background: linear-gradient(90deg, #0057AA -7.86%, #0073BF 50.09%, #0057AA 108.05%);
  }
}
.cta__arrow-sp {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}
.cta__arrow-sp img {
  width: 100%;
}
.cta .container-first {
  position: relative;
  padding: 18px 20px 30px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .cta .container-first {
    margin-top: -115px;
    padding: 186px 20px 74px;
  }
}
@media screen and (min-width: 1200px) {
  .cta .container-first {
    padding: 186px 0 74px;
  }
}
.cta__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .cta__container {
    padding: 40px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__container {
    padding: 40px 0;
  }
}
.cta__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .cta__title {
    margin-bottom: 35px;
  }
}
.cta__title__bottom {
  color: #0B6DB8;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__title__bottom {
    color: white;
    font-weight: 600;
    font-size: 38px;
    line-height: 51.76px;
    letter-spacing: -0.03em;
  }
}
.cta__box a {
  text-decoration: none;
}
.cta__box {
  display: none;
}
@media screen and (min-width: 768px) {
  .cta__box {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
}
.cta__box__phone__group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.cta__box__phone__number {
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 70.58px;
  text-align: left;
  font-size: 6vw;
}
@media screen and (min-width: 1000px) {
  .cta__box__phone__number {
    font-size: 61px;
  }
}
.cta__box__phone__time {
  color: white;
  font-weight: 500;
  font-size: 18px;
  line-height: 24.52px;
  text-align: center;
}
.cta__box__web {
  width: 50%;
  margin: 0 auto;
}
.cta__box__web__title {
  margin-bottom: 10px;
}
.cta__btn-web, .cta__btn-phone {
  text-align: center;
}
.cta__btn-web {
  margin-bottom: 15px;
}
.cta__btn-phone {
  position: relative;
}
.cta__btn-phone__number {
  color: white;
  position: absolute;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 26.35px;
  font-weight: 700;
  line-height: 30.29px;
  text-align: left;
  top: 35%;
  left: 30px;
  right: 0;
  text-align: center;
}

.why .remove-bg {
  margin-bottom: 0;
}
.why {
  padding: 0;
}
.why__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1400px;
}
@media screen and (min-width: 768px) {
  .why__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1320px) {
  .why__container {
    padding: 80px 0;
  }
}
.why__title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.why__text {
  font-weight: 400;
  font-size: 14px;
  max-width: 1000px;
  line-height: 22px;
  text-align: left;
  margin: 15px auto 20px;
}
@media screen and (min-width: 768px) {
  .why__text {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin: 40px auto 50px;
  }
}
.why__text span {
  position: relative;
}
.why__text span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  transition: 0.2s;
  background-color: #fcf17c;
  width: 100%;
  z-index: -1;
}
.why__box {
  display: block;
}
.why__box:nth-child(4) {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .why__box {
    gap: 3vw;
    margin-right: 0;
    display: flex;
    align-items: center;
  }
  .why__box:nth-child(4) {
    margin-left: 0;
    flex-direction: row-reverse;
    padding: 60px 0;
  }
}
@media screen and (min-width: 1320px) {
  .why__box {
    gap: 80px;
    margin-left: 14%;
  }
  .why__box:nth-child(4) {
    margin-right: 14%;
  }
}
.why__box__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .why__box__left {
    width: 77%;
  }
}
@media screen and (min-width: 1000px) {
  .why__box__left {
    width: 77%;
  }
}
@media screen and (min-width: 1320px) {
  .why__box__left {
    width: 50%;
  }
}
.why__box__left__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .why__box__left__title {
    justify-content: flex-start;
    gap: 10px;
  }
}
.why__box__left__title__number {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 50.6px;
  letter-spacing: -0.03em;
  color: #D9EDFF;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .why__box__left__title__number {
    width: 140px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 116px;
    font-weight: 700;
    line-height: 133.39px;
  }
}
.why__box__left__title__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 24.52px;
  text-align: left;
  color: #0B6DB8;
}
@media screen and (min-width: 768px) {
  .why__box__left__title__text {
    font-size: 24px;
    line-height: 32.69px;
  }
}
.why__box__left__img {
  margin: 5px auto 15px;
}
.why__box__left__img img {
  width: 100%;
}
.why__box__left__content {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .why__box__left__content {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (min-width: 768px) {
  .why__box__right {
    width: 29%;
  }
}
@media screen and (min-width: 1000px) {
  .why__box__right {
    width: 50%;
  }
}

.review_area {
  padding: 0;
}
.review_area__container {
  position: relative;
  padding: 0 20px 30px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .review_area__container {
    padding: 0 20px 80px;
  }
}
@media screen and (min-width: 1200px) {
  .review_area__container {
    padding: 0 0 80px;
  }
}
.review_area__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .review_area__title {
    margin-bottom: 35px;
  }
}
.review_area__text-first {
  font-weight: 600;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.52px;
  text-align: center;
  margin: 15px auto 20px;
}
@media screen and (min-width: 768px) {
  .review_area__text-first {
    margin: 40px auto;
    font-size: 20px;
    line-height: 27.24px;
  }
}
@media screen and (min-width: 768px) {
  .review_area__table {
    border-top: 2px solid #D9D9D9;
    border-bottom: 2px solid #D9D9D9;
  }
}
.review_area__flex {
  display: block;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .review_area__flex {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.review_area__flex__left {
  width: 100%;
  background-color: #D9EDFF;
  font-weight: 600;
  font-size: 20px;
  line-height: 27.24px;
  text-align: center;
  padding: 7px 0 6px;
}
@media screen and (min-width: 768px) {
  .review_area__flex__left {
    width: 30%;
    padding: 21px 0 20px;
    font-size: 26px;
    line-height: 35.41px;
  }
}
@media screen and (min-width: 1000px) {
  .review_area__flex__left {
    width: 300px;
  }
}
.review_area__flex__right {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 21.79px;
  gap: 10px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .review_area__flex__right {
    margin-top: 0;
    gap: 35px;
    width: 70%;
    margin-left: 4%;
    font-size: 18px;
    line-height: 24.52px;
  }
}
@media screen and (min-width: 1000px) {
  .review_area__flex__right {
    margin-left: 80px;
  }
}
.review_area__flex__right span {
  font-weight: 500;
  font-size: 11px;
  line-height: 14.98px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .review_area__flex__right span {
    font-size: 14px;
    line-height: 19.07px;
  }
}
@media screen and (min-width: 768px) {
  .review_area__flex:nth-child(2) {
    border-top: 2px solid #D9D9D9;
    border-bottom: 2px solid #D9D9D9;
  }
}
.review_area__note {
  font-weight: 500;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .review_area__note {
    margin: 20px 0 2px;
    text-align: right;
    font-size: 13px;
    line-height: 17.71px;
  }
}
.review_area__text-second {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .review_area__text-second {
    line-height: 21.79px;
    text-align: center;
  }
}

.should {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .should {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1000px) {
  .should {
    padding: 0;
  }
}
.should .l-container {
  padding: 0;
  max-width: 1000px !important;
}
.should #countdown, .should #textContent1, .should #textContent2 {
  display: none;
}
.should .the_end_March {
  display: none;
}
.should__title, .should__first-content, .should__second-content {
  text-align: center;
}
.should__title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .should__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 38.14px;
    letter-spacing: -0.04em;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
.should__title__avatar {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .should__title__avatar {
    margin-top: 80px;
  }
}
.should__first-content {
  position: relative;
  margin: 13px auto 10px;
  top: -19px;
}
@media screen and (min-width: 768px) {
  .should__first-content {
    top: -42px;
    margin: 30px auto 15px auto;
  }
}
.should__first-note {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: center;
  font-size: 14px;
  margin-top: -25px;
  padding: 10px 0 20px;
}
@media screen and (min-width: 768px) {
  .should__first-note {
    margin-top: -45px;
    font-size: 18px;
  }
}
.should__break-line {
  display: block;
}
@media screen and (min-width: 768px) {
  .should__break-line {
    display: none;
  }
}
.should__second-content {
  padding: 0;
  font-size: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .should__second-content {
    font-size: 24px;
  }
}
.should__second-content__countdown {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 270px;
  margin: 0 auto;
  top: 53.5%;
  left: 0;
  right: 0;
  transform: translate(0%, 0%);
}
@media screen and (min-width: 768px) {
  .should__second-content__countdown {
    width: 390px;
    top: 57.5%;
  }
}
.should__second-content__countdown div {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.should__second-content__countdown div p span {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.04em;
  text-align: center;
  color: #FF4D4D;
}
@media screen and (min-width: 768px) {
  .should__second-content__countdown div p span {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 45px;
    line-height: 52px;
    letter-spacing: -0.02em;
  }
}
.should__second-content__countdown .should__second-content__countdown h3,
.should__second-content__countdown .should__second-content__countdown p {
  margin: 0;
}
.should__second-content__group {
  position: relative;
}
.should__second-content__group p {
  position: absolute;
}
.should__second-content__group .refund-month {
  color: #2BA4A0;
  word-break: keep-all;
  left: 13.5%;
  transform: translate(-50%, -50%);
  width: fit-content;
  top: 7%;
}
@media screen and (min-width: 400px) {
  .should__second-content__group .refund-month {
    left: 14%;
    top: 11vw;
  }
}
@media screen and (min-width: 768px) {
  .should__second-content__group .refund-month {
    left: 10%;
    top: 10%;
  }
}
@media screen and (min-width: 1000px) {
  .should__second-content__group .refund-month {
    top: 13%;
  }
}
.should__second-content__group .refund-month span {
  font-weight: bold;
  font-size: 52px;
}
@media screen and (min-width: 400px) {
  .should__second-content__group .refund-month span {
    font-size: 11.8vw;
  }
}
@media screen and (min-width: 768px) {
  .should__second-content__group .refund-month span {
    font-size: 6.9vw;
  }
}
@media screen and (min-width: 1000px) {
  .should__second-content__group .refund-month span {
    font-size: 69.5px;
  }
}
.should__second-content__group__priceLPrice {
  left: 22%;
  top: 33vw;
}
@media screen and (min-width: 530px) {
  .should__second-content__group__priceLPrice {
    top: 25%;
  }
}
@media screen and (min-width: 768px) {
  .should__second-content__group__priceLPrice {
    top: 39%;
    left: 23%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1000px) {
  .should__second-content__group__priceLPrice {
    top: 39%;
    max-width: 240px;
  }
}
.should__second-content__group__priceLPrice .refund-amount {
  display: inline-block;
  text-align: center;
  font-size: 15.2vw;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .should__second-content__group__priceLPrice .refund-amount {
    font-size: 6vw;
    max-width: 240px;
  }
}
@media screen and (min-width: 1000px) {
  .should__second-content__group__priceLPrice .refund-amount {
    font-size: 70px;
  }
}
.should__second-content__group__priceLPrice span {
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
}
.should__second-content__group__priceLPrice span:first-child {
  position: relative;
}
.should__second-content__group .refund-txt {
  font-size: 1.2vw;
  letter-spacing: -0.08em;
  position: absolute;
  top: 70%;
  left: 4%;
}
@media screen and (min-width: 1000px) {
  .should__second-content__group .refund-txt {
    font-size: 12px;
    letter-spacing: -0.04em;
    top: 320px;
  }
}
.should__second-note {
  display: none;
}
@media screen and (min-width: 768px) {
  .should__second-note {
    display: block;
    color: #ffffff;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
    font-size: 18px;
    margin: 0;
  }
}
.should__second-note-sp {
  display: block;
  text-align: center;
  padding: 10px 0 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .should__second-note-sp {
    display: none;
  }
}
.should__annotation {
  background: #ebfffe;
  top: 80%;
  left: 5%;
  font-size: 2.6vw;
  text-align: left;
  width: 90%;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .should__annotation {
    top: 73%;
    left: 7%;
    padding: 0 5px;
    font-size: clamp(0px, 1.2vw, 12px);
    text-align: left;
    width: 67%;
  }
}

.specialized-staff {
  padding: 0;
  background-color: #D9EDFF;
}
.specialized-staff__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .specialized-staff__container {
    padding: 80px 0;
  }
}
.specialized-staff__title {
  text-align: center;
}
.specialized-staff__introduce {
  margin: 15px auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .specialized-staff__introduce {
    margin: 30px auto 40px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
  }
}
.specialized-staff__group {
  display: block;
}
@media screen and (min-width: 768px) {
  .specialized-staff__group {
    display: flex;
    gap: 30px;
  }
}
.specialized-staff__box {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 335px;
  border-radius: 12px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box {
    margin: 0;
    max-width: 313px;
  }
}
.specialized-staff__box__content {
  padding: 15px 15px 20px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box__content {
    padding: 20px;
  }
}
.specialized-staff__box__text-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 24.52px;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box__text-name {
    padding-bottom: 20px;
    font-size: 20px;
    line-height: 27.24px;
  }
}
.specialized-staff__box__text-detail {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box__text-detail {
    font-size: 16px;
    line-height: 27px;
  }
}
.specialized-staff__box__text-detail a {
  color: #333333;
}
.specialized-staff__box__text-detail-third {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  letter-spacing: normal;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box__text-detail-third {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 27px;
  }
}
.specialized-staff__box__text-detail-third a {
  color: #333333;
}
.specialized-staff__box__img {
  text-align: center;
  padding-top: 20px;
  width: 113px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .specialized-staff__box__img {
    width: auto;
    padding-top: 0;
  }
}
.specialized-staff__text {
  text-align: center;
  margin: 20px auto 10px;
}
@media screen and (min-width: 768px) {
  .specialized-staff__text {
    margin: 50px auto 10px;
  }
}
.specialized-staff__note {
  font-weight: 400;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .specialized-staff__note {
    font-size: 13px;
    line-height: 26px;
  }
}

.comment {
  padding: 0;
}
.comment__container {
  position: relative;
  padding: 30px 20px 55px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .comment__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .comment__container {
    padding: 80px 0;
  }
}
.comment__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .comment__title {
    margin-bottom: 35px;
  }
}
.comment__group {
  display: flex;
  gap: 30px;
}
.comment__group:first-child {
  margin-bottom: 30px;
}
.comment__box {
  padding: 30px;
  background-color: #D9EDFF;
  border-radius: 12px;
  width: 50%;
}
.comment__box__first-content {
  display: flex;
}
@media screen and (min-width: 768px) {
  .comment__box__first-content {
    gap: 2vw;
  }
}
@media screen and (min-width: 1000px) {
  .comment__box__first-content {
    gap: 30px;
  }
}
.comment__box__first-content__img {
  width: 100%;
  max-width: 37%;
}
@media screen and (min-width: 1000px) {
  .comment__box__first-content__img {
    max-width: unset;
    width: auto;
  }
}
.comment__box__first-content__text span {
  color: #F2BE41;
  margin-left: 10px;
}
.comment__box__first-content__text div {
  font-weight: 500;
}
.comment__box__first-content__text div:first-child {
  line-height: 27.24px;
  font-weight: 600;
  text-align: left;
  font-size: 20px;
  margin-bottom: 20px;
}
.comment__box__first-content__text div:last-child {
  line-height: 24.52px;
  text-align: left;
  font-size: 18px;
}
.comment__box__second-content div:first-child {
  color: #0B6DB8;
  font-weight: 600;
  font-size: 18px;
  line-height: 24.52px;
  text-align: left;
  margin: 20px auto 15px;
  letter-spacing: normal;
}
.comment__box__second-content div:last-child {
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  text-align: center;
  letter-spacing: normal;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .comment__box__second-content div:last-child {
    text-align: left;
    font-size: 14px;
  }
}
.comment__group-sp {
  background-color: #D9EDFF;
  border-radius: 10px;
}
.comment__group-sp__box__img {
  text-align: center;
  margin-bottom: 15px;
}
.comment__group-sp__box__content__first {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 27.24px;
}
.comment__group-sp__box__content__second {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 10px auto 20px;
  justify-content: center;
}
.comment__group-sp__box__content__second div:last-child {
  display: flex;
  gap: 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.07px;
  text-align: left;
}
.comment__group-sp__box__content__second div:nth-child(2) {
  font-weight: 500;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
}
.comment__group-sp__box__content__second__icon-stars {
  color: #F2BE41;
}
.comment__group-sp__box__content__title {
  color: #0B6DB8;
  font-weight: 600;
  font-size: 16px;
  line-height: 21.79px;
  text-align: left;
  margin: 0 10px 15px;
}
.comment__group-sp__box__description {
  margin-top: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  text-align: left;
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .comment__group-sp__box__description {
    margin: 0;
  }
}
.comment__group-sp__track {
  padding: 20px;
}
.comment__group-sp__pagination {
  gap: 20px;
  bottom: -27px !important;
}
.comment__group-sp__pagination .splide__pagination__page.is-active {
  background-color: #0B6DB8 !important;
  transform: unset;
}
.comment__group-sp .splide__arrow {
  top: 23% !important;
  background: rgba(115, 115, 115, 0.8) !important;
}
.comment__group-sp .splide__arrow--prev {
  left: 0 !important;
}
.comment__group-sp .splide__arrow--next {
  right: 0 !important;
}
.comment__group-sp .splide__arrow svg {
  fill: white;
}

.profile .remove-bg {
  margin-bottom: 0;
}
.profile {
  padding: 0;
}
.profile__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 670px;
}
@media screen and (min-width: 768px) {
  .profile__container {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  .profile__container {
    padding: 80px 0;
  }
}
.profile__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .profile__title {
    margin-bottom: 0;
  }
}
.profile__box {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .profile__box {
    margin-top: 40px;
  }
}
.profile__flex {
  display: flex;
  gap: 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .profile__flex {
    gap: 80px;
    margin-bottom: 30px;
  }
}
.profile__flex__title {
  width: 70px;
  font-weight: 600;
  font-size: 12px;
  line-height: 16.34px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .profile__flex__title {
    width: 90px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.profile__flex__detail {
  font-weight: 500;
  font-size: 12px;
  line-height: 16.34px;
  text-align: left;
  margin-left: 30px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .profile__flex__detail {
    margin-left: 0;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.profile__flex__detail span {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .profile__flex__detail span {
    margin-left: 15px;
  }
}

.step .remove-bg {
  margin-bottom: 0;
}
.step {
  padding: 0;
}
.step__container {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .step__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .step__container {
    padding: 80px 0;
  }
}
.step__title {
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .step__title {
    margin-bottom: 0;
  }
}
.step__group {
  display: block;
}
@media screen and (min-width: 768px) {
  .step__group {
    display: flex;
    gap: 28px;
    margin: 28px auto 40px;
  }
}
.step__box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .step__box {
    position: relative;
    max-width: 228px;
  }
}
.step__box__title {
  background-color: #0B6DB8;
  color: white;
  border-radius: 40px;
  width: 53px;
  height: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10.89px;
  font-weight: 700;
  line-height: 12.52px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .step__box__title {
    margin: 0 auto;
    font-size: 16px;
    line-height: 18.4px;
    width: 78px;
    height: 26px;
  }
}
.step__box__title span {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14.97px;
  font-weight: 700;
  line-height: 17.21px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .step__box__title span {
    font-size: 22px;
    line-height: 25.3px;
  }
}
@media screen and (min-width: 768px) {
  .step__box__img {
    margin: 15px auto 20px;
  }
}
.step__box__text {
  color: #0B6DB8;
  font-weight: 600;
  font-size: 18px;
  line-height: 24.52px;
  text-align: left;
  margin: 10px auto;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .step__box__text {
    margin: 0 auto 13px;
    font-size: 20px;
    line-height: 27.24px;
    text-align: center;
    height: 54.47px;
  }
}
@media screen and (min-width: 1200px) {
  .step__box__text {
    height: auto;
  }
}
.step__box__detail {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .step__box__detail {
    font-size: 16px;
    line-height: 23px;
  }
}
.step__box__note {
  font-weight: 400;
  font-size: 11px;
  line-height: 26px;
  text-align: left;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .step__box__note {
    margin-top: 11px;
    font-size: 13px;
    line-height: 24px;
  }
}
.step__box__arrow {
  position: absolute;
  bottom: -34px;
  left: 50%;
  top: unset;
}
@media screen and (min-width: 768px) {
  .step__box__arrow {
    left: unset;
    top: 105px;
    right: -23px;
  }
}
.step__box-sp {
  position: relative;
  display: flex;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .step__box-sp {
    display: unset;
  }
}
.step__box-sp:first-child {
  margin-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .step__box-sp:first-child {
    margin-bottom: 0;
  }
}
.step__box-sp:nth-child(2) {
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .step__box-sp:nth-child(2) {
    margin-bottom: 0;
  }
}
.step__box-sp:nth-child(3) {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .step__box-sp:nth-child(3) {
    margin-bottom: 0;
  }
}
.step__box-sp:nth-child(4) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .step__box-sp:nth-child(4) {
    margin-bottom: 0;
  }
}
.step__content {
  background-color: #FFF4ED;
  padding: 20px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step__content {
    padding: 25px 0;
  }
}
.step__content__title {
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 27.24px;
  text-align: left;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__content__title {
    font-family: Noto Sans;
    font-size: 26px;
    font-weight: 600;
    line-height: 35.41px;
    text-align: center;
  }
}
.step__content__title::before, .step__content__title::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #333333;
  position: absolute;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .step__content__title::before, .step__content__title::after {
    width: 20vw;
  }
}
@media screen and (min-width: 1000px) {
  .step__content__title::before, .step__content__title::after {
    width: 200px;
  }
}
.step__content__title::before {
  top: 0;
  bottom: 0;
  margin: auto;
  left: 9%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step__content__title::before {
    left: 16%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1000px) {
  .step__content__title::before {
    left: 14%;
    transform: unset;
  }
}
.step__content__title::after {
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1%;
  transform: translatex(-50%);
}
@media screen and (min-width: 768px) {
  .step__content__title::after {
    right: -5%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1000px) {
  .step__content__title::after {
    right: 14%;
    transform: unset;
  }
}
.step__content__text-first {
  font-weight: 600;
  font-size: 16px;
  line-height: 21.79px;
  text-align: left;
  margin: 20px auto 7px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__content__text-first {
    font-size: 18px;
    line-height: 24.52px;
  }
}
.step__content__text-first span {
  color: white;
  text-align: left;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #EC721F;
  font-weight: 600;
  font-size: 16px;
  line-height: 21.79px;
  letter-spacing: 0.02em;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .step__content__text-first span {
    font-size: 18px;
    line-height: 24.52px;
    width: 152px;
    height: 23px;
  }
}
.step__content__text-second {
  font-weight: 600;
  font-size: 14px;
  line-height: 19.07px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__content__text-second {
    font-size: 15px;
    line-height: 20.43px;
  }
}
.step__content__text-third {
  color: #EC721F;
  font-weight: 600;
  font-size: 14px;
  line-height: 19.07px;
  margin: 0 auto;
  width: 233px;
}
@media screen and (min-width: 768px) {
  .step__content__text-third {
    width: auto;
    text-align: center;
    font-size: 15px;
    line-height: 20.43px;
  }
}
.step__content__note {
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 6px auto 10px;
}
@media screen and (min-width: 768px) {
  .step__content__note {
    margin: 7px auto 20px;
    font-size: 13px;
    line-height: 23px;
  }
}
.step__content__img {
  position: absolute;
  bottom: 20px;
  left: 80%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step__content__img {
    left: 84%;
    transform: translateX(-50%);
  }
}

.add-dashed-border {
  border-bottom: #bfbfbf dashed 2px;
}

.home-faq {
  padding: 0;
}
.home-faq .faq {
  padding: 0;
}
.home-faq .faq__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__container {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 1000px) {
  .home-faq .faq__container {
    padding: 80px 0;
  }
}
.home-faq .faq__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__header {
    width: 568px;
    margin-bottom: 36px;
  }
}
.home-faq .faq__header h2 {
  margin: 0;
}
.home-faq .faq__header h2 img {
  width: auto;
  height: auto;
}
.home-faq .faq__group {
  border: 1px solid black;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group:not(:first-child) {
    margin-top: 20px;
  }
}
.home-faq .faq__group__box-question {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-question {
    margin: auto 30px;
  }
}
.home-faq .faq__group__box-question__content {
  display: flex;
}
.home-faq .faq__group__box-question__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-question__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.home-faq .faq__group__box-question__content__icon-add {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-question__content__icon-add {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.home-faq .faq__group__box-question__content__icon-sub {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-question__content__icon-sub {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.home-faq .faq__group__box-question__content h3 {
  margin: 0;
  font-size: unset;
  text-align: left;
}
.home-faq .faq__group__box-question__content p {
  color: #333333;
  line-height: normal;
  font-style: normal;
  font-size: 14px;
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-question__content p {
    font-size: 24px;
    padding-top: 5px;
    line-height: 32.69px;
  }
}
.home-faq .faq__group__box-question__content__icon-sub {
  display: none;
}
.home-faq .faq__group__box-answer {
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-answer {
    margin: auto 30px;
  }
}
.home-faq .faq__group__box-answer__content {
  display: flex;
}
.home-faq .faq__group__box-answer__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-answer__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.home-faq .faq__group__box-answer__content p {
  color: #333333;
  line-height: normal;
  font-style: normal;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__group__box-answer__content p {
    font-size: 18px;
    margin: 0;
  }
}
.home-faq .faq__btn {
  width: 300px;
  background: #00366e;
  border-radius: 8px;
  height: 46px;
  margin: 15px auto 0;
  box-shadow: 2px 3px 4px 0px grey;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.home-faq .faq__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.home-faq .faq__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.home-faq .faq__btn p img {
  float: right;
  margin-right: 20px;
}

.copyright_box {
  text-align: center;
  margin-bottom: 62px;
}
@media screen and (min-width: 400px) {
  .copyright_box {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 768px) {
  .copyright_box {
    margin-bottom: 93px;
  }
}
.copyright_box p {
  background-color: #333333;
  color: #ffffff;
  padding: 10px 0;
  margin: 0;
  font-size: 11px;
}

.fixed-bottom {
  display: block !important;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 100;
}

#tracking_footer {
  display: none;
}
#tracking_footer .businesstrip_footer {
  padding: 0;
}
#tracking_footer .businesstrip_footer .footer_title_box {
  background-color: #0057AA;
  text-align: center;
}
#tracking_footer .businesstrip_footer .footer_title_box p {
  margin: 0;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_title_box p {
    font-size: 15px;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background {
  background-color: #4A4A4A;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background {
    background-color: #0057AA;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box {
    gap: 20px;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .pc_logo {
  display: none;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .pc_logo {
    display: block;
    width: 10%;
  }
}
@media screen and (min-width: 1000px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .pc_logo {
    width: 7%;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .cta_message {
  display: none;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .cta_message {
    display: block;
    width: 22%;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .cta_message p {
    margin: 0;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .cta_message p {
    letter-spacing: 4px;
    font-size: 20px;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn {
  width: 43.5%;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn {
    width: 35%;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn > a {
  text-decoration: none;
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel {
  position: relative;
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel__line__number {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 53.01px;
  text-align: left;
  color: #fff;
  font-weight: bold;
  position: absolute;
}
@media screen and (max-width: 767px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel__line__number {
    display: none;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel__line__number {
  bottom: 0;
  top: 20%;
  left: 13%;
  font-size: 4.2vw;
}
@media screen and (min-width: 1000px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel__line__number {
    top: unset;
    bottom: 0;
    font-size: 43px;
  }
}
@media screen and (min-width: 1200px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .phone_btn__footer__cta__tel__line__number {
    bottom: 3%;
    left: 13%;
    font-size: 46.1px;
  }
}
#tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .web_btn {
  width: 44%;
}
@media screen and (min-width: 768px) {
  #tracking_footer .businesstrip_footer .footer_cta_background .footer_cta_box .web_btn {
    width: 35%;
  }
}
#tracking_footer .businesstrip_footer__text div {
  text-align: center;
  font-weight: 500;
  color: white;
}
#tracking_footer .businesstrip_footer__text div:first-child {
  line-height: 21.79px;
  border: 1.56px solid white;
  border-radius: 4.68px;
  max-width: 181px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 1.5vw;
}
@media screen and (min-width: 1200px) {
  #tracking_footer .businesstrip_footer__text div:first-child {
    font-size: 16px;
  }
}
#tracking_footer .businesstrip_footer__text div:last-child {
  line-height: 21.79px;
  border: 1.56px solid white;
  border-radius: 4.68px;
  max-width: 181px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5vw;
}
@media screen and (min-width: 1000px) {
  #tracking_footer .businesstrip_footer__text div:last-child {
    font-size: 16px;
  }
}
#tracking_footer .businesstrip_footer__text div:last-child span {
  margin-left: 6px;
  font-size: 16.5px;
  line-height: 22.47px;
}

.btn-fixWrap {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: fixed;
  text-align: center;
  z-index: 999;
  bottom: 10em;
  right: 1.5em;
}
@media screen and (min-width: 768px) {
  .btn-fixWrap {
    right: 2em;
    bottom: 10.8em;
  }
}
.btn-fixWrap .c-fixBtn {
  display: none;
  background: #fff;
  border: 1px solid #04384c;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 4px -4px rgba(0, 0, 0, 0.1);
  color: #04384c;
  cursor: pointer;
  height: 52px;
  letter-spacing: normal;
  line-height: 1;
  opacity: 0.75;
  overflow: hidden;
  text-align: center;
  transition: all 0.25s;
  width: 52px;
}
.btn-fixWrap .c-fixBtn:hover {
  background-color: #04384c !important;
  color: #fff !important;
}
.btn-fixWrap .c-fixBtn:hover .c-fixBtn__icon::before {
  border-bottom: 2px solid #fff !important;
  border-right: 2px solid #fff !important;
}
.btn-fixWrap .c-fixBtn__icon {
  display: block;
  font-size: 20px;
}
.btn-fixWrap .c-fixBtn__icon::before {
  content: "";
  text-transform: none;
  border-bottom: 2px solid #04384c;
  border-right: 2px solid #04384c;
  transform: rotate(-135deg);
  width: 9px;
  height: 9px;
  position: fixed;
  margin: 0;
  left: 22px;
  top: 24px;
}