@charset "UTF-8";
@font-face {
  font-family: Inter;
  src: url("../fonts/hajimete/Inter-Medium.ttf");
}
@font-face {
  font-family: NotoSansRegular;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Regular.ttf");
}
@font-face {
  font-family: NotoSansMedium;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Medium.otf");
}
@font-face {
  font-family: NotoSansSemiBold;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-SemiBold.ttf");
}
@font-face {
  font-family: NotoSansBold;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Bold.otf");
}
body {
  background-color: #ffffff;
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

: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;
  }
}

/* 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;
}

/**
 * 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;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/hajimete/Inter-Medium.ttf");
}
@font-face {
  font-family: NotoSansRegular;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Regular.ttf");
}
@font-face {
  font-family: NotoSansMedium;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Medium.otf");
}
@font-face {
  font-family: NotoSansSemiBold;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-SemiBold.ttf");
}
@font-face {
  font-family: NotoSansBold;
  src: url("../fonts/tetuduki/noto_san/NotoSansJP-Bold.otf");
}
/*------------------------------------------
- 電話CTA
- 電話・WEBCTA
- 還付金
--------------------------------------------*/
/*=============================================
電話CTA
==============================================*/
.bnr-contact a {
  display: block;
  margin: auto;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .bnr-contact a {
    max-width: 980px !important;
  }
}
.bnr-contact a img {
  display: block;
  margin: auto;
}
.bnr-contact .free-txt::after {
  content: "（無料）";
  font-size: 0.7em;
  margin-left: -0.5em;
}
.bnr-contact {
  /* SP
  ------------------------------------*/
}
@media screen and (min-width: 768px) {
  .bnr-contact__sp {
    display: none !important;
  }
}
.bnr-contact {
  /* PC
  ------------------------------------*/
}
.bnr-contact__pc {
  display: none !important;
}
.bnr-contact__pc img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bnr-contact__pc {
    display: block !important;
    position: relative;
  }
  .bnr-contact__pc p {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    left: 24vw;
    color: #ffffff;
    font-size: 6vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .bnr-contact__pc p {
    left: 25%;
    font-size: 65px;
    margin-top: -5px;
    margin-left: -10px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-contact__pc p span {
    font-size: 0.7em;
  }
}
.bnr-contact__pc {
  /* PCコラム
  --------------------------------------*/
}
.bnr-contact__pc.column p {
  top: 48%;
  left: 51%;
  font-size: 31px !important;
}
@media screen and (min-width: 1000px) {
  .bnr-contact__pc.column p {
    font-size: 48px !important;
  }
}
.bnr-contact {
  /* SP電話番号付き
  -----------------------------------------*/
}
.bnr-contact.tel_number {
  padding: 0;
  max-width: 400px;
}
.bnr-contact.tel_number a {
  position: relative;
}
.bnr-contact.tel_number p {
  position: absolute;
  top: 47%;
  left: 13%;
  font-size: 29px;
  color: #ffffff;
}
.bnr-contact {
  /* コラム
  ------------------------------------------*/
}
@media screen and (min-width: 768px) {
  .bnr-contact.column {
    display: flex;
    padding: 5% 0 3%;
  }
}
.bnr-contact.column a {
  display: block;
  padding: 0;
}
.bnr-contact.column a.tel {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bnr-contact.column a.tel {
    flex: 0 0 50%;
  }
  .bnr-contact.column a.tel::before {
    content: "";
    display: block;
    background-image: url("../images/bnr/baloon_tel.webp");
    width: 270px;
    height: 44px;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    top: -31px;
  }
}
.bnr-contact.column a.tel p {
  font-size: 7vw;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 6%;
  color: #ffffff;
}
@media screen and (min-width: 400px) {
  .bnr-contact.column a.tel p {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-contact.column a.tel p {
    top: 50%;
    font-size: 3.3vw;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-contact.column a.tel p {
    font-size: 39px;
  }
}
.bnr-contact.column a.tel p span {
  font-size: 0.7em;
}
.bnr-contact.column a img {
  width: 100%;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .bnr-contact.column a img {
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-contact.column a img {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-contact.column .web {
    flex: 0 0 49%;
    margin-bottom: 0;
    position: relative;
  }
  .bnr-contact.column .web::before {
    content: "";
    display: block;
    background-image: url("../images/bnr/baloon_web.webp");
    width: 270px;
    height: 44px;
    position: absolute;
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
  }
}

.off-ours-web-by-utm_source {
  display: none;
  text-align: center;
  max-width: 500px;
  padding: 0 20px 20px 20px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .off-ours-web-by-utm_source {
    padding: 20px 0;
  }
}

.pc-sp-cta .l-container {
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .pc-sp-cta .l-container {
    background-color: #ffffff;
  }
}
.pc-sp-cta a {
  display: block;
  margin: auto;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .pc-sp-cta a {
    max-width: 980px !important;
  }
}
.pc-sp-cta a img {
  display: block;
  margin: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pc-sp-cta a img {
    animation: none !important;
  }
}
.pc-sp-cta .free-txt::after {
  content: "（無料）";
  font-size: 0.7em;
  margin-left: -0.5em;
}
@media screen and (min-width: 768px) {
  .pc-sp-cta__img-wrap {
    display: block !important;
    position: relative;
  }
}
.pc-sp-cta__img-wrap p {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-sp-cta__img-wrap p {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    left: 24vw;
    color: #ffffff;
    font-size: 6vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .pc-sp-cta__img-wrap p {
    left: 25%;
    font-size: 65px;
    margin-top: -5px;
    margin-left: -10px;
  }
}
@media screen and (min-width: 768px) {
  .pc-sp-cta__img-wrap p span {
    font-size: 0.7em;
  }
}

/* ======================================================
電話・WEBCTA
=========================================================*/
/* コラムhead
-------------------------------------*/
.archive .column-header-contact .free-txt::after {
  content: "（無料）";
  font-size: 0.7em;
  margin-left: -0.5em;
}

.column-header-contact {
  background-color: #e4e4e4;
  padding: 1.5% 0 2%;
}
.column-header-contact .free-txt::after {
  content: "（無料）";
  font-size: 0.7em;
  margin-left: -0.6em;
  margin-right: -0.6em;
  display: inline-block;
}
.column-header-contact .txt {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .column-header-contact .txt {
    font-size: 18px;
  }
}
.column-header-contact__subtitle {
  color: #267dcb;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.column-header-contact__subtitle:before {
  position: absolute;
  bottom: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 238, 6, 0.918);
}
.column-header-contact__wrap {
  display: flex;
  justify-content: center;
  max-height: 70px;
}
@media screen and (min-width: 768px) {
  .column-header-contact__wrap {
    max-height: 60px;
  }
}
.column-header-contact a {
  height: 13vw;
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .column-header-contact a {
    flex: 0 0 50%;
  }
}
.column-header-contact__tel {
  flex: 0 0 55%;
  position: relative;
}
.column-header-contact__tel p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 3vw;
  color: white;
}
@media screen and (min-width: 1000px) {
  .column-header-contact__tel p {
    font-size: 36px;
  }
}
.column-header-contact__tel p span {
  font-size: 0.7em;
}
.column-header-contact__web {
  padding-right: 2%;
  flex: 0 0 45%;
}

/* =================================================
還付金
====================================================*/
.bnr-refund {
  background-color: #e6f2fd;
}
.bnr-refund .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .bnr-refund .title-wrap .sub-tt {
    height: 30px;
  }
}
.bnr-refund .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .bnr-refund .title-wrap .main-tt {
    height: 35px;
  }
}
.bnr-refund .img-wrap {
  position: relative;
}
.bnr-refund .img-wrap p {
  position: absolute;
  font-size: 1rem;
}
.bnr-refund .img-wrap .refund-month {
  word-break: keep-all;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  top: 20%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund .img-wrap .refund-month {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund .img-wrap .refund-month {
    font-size: 16px;
    top: 12vw;
    left: 28%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund .img-wrap .refund-month {
    top: 130px;
    left: 230px;
  }
}
.bnr-refund .img-wrap .refund-month span {
  font-weight: bold;
  font-size: 6vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund .img-wrap .refund-month span {
    font-size: 24px;
  }
}
.bnr-refund .img-wrap .p-return__priceLPrice {
  top: 27%;
  left: 12%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 187px;
    font-size: inherit;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 17vw;
    left: 4%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 195px;
  }
}
.bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
  display: inline-block;
  text-align: center;
  font-size: 15vw;
  width: 47.5vw;
  letter-spacing: -0.06rem;
}
@media screen and (min-width: 500px) {
  .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 80px;
    width: 50vw;
    max-width: 278px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 9vw;
    width: 29vw;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 92px;
    width: 320px;
  }
}
.bnr-refund .img-wrap .p-return__priceLPrice span {
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
}
.bnr-refund .img-wrap .p-return__priceLPrice span:nth-of-type(1) {
  position: relative;
  bottom: -8px;
}
@media screen and (min-width: 768px) {
  .bnr-refund .img-wrap .p-return__priceLPrice span {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund .img-wrap .p-return__priceLPrice span {
    font-size: 28px;
  }
}
.bnr-refund .img-wrap .refund-txt {
  font-size: 1.2vw;
  letter-spacing: -0.08em;
  position: absolute;
  top: 70%;
  left: 4%;
}
@media screen and (min-width: 1000px) {
  .bnr-refund .img-wrap .refund-txt {
    font-size: 12px;
    letter-spacing: -0.04em;
    top: 320px;
  }
}
.single-column .bnr-refund {
  padding: 3% !important;
}
.single-column .bnr-refund .title-wrap .sub-tt {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .refund-month {
    font-size: 14px;
    top: 28%;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .bnr-refund .refund-month {
    font-size: 18px;
    top: 130px;
  }
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .refund-month span {
    font-size: 1.2em;
  }
}
.single-column .bnr-refund .p-return__priceLPrice {
  top: 25%;
}
@media screen and (min-width: 500px) {
  .single-column .bnr-refund .p-return__priceLPrice {
    top: 29%;
  }
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .p-return__priceLPrice {
    top: 38%;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .bnr-refund .p-return__priceLPrice {
    top: 180px;
    left: 60px;
  }
}
.single-column .bnr-refund .p-return__priceLPrice span {
  font-size: 12px;
}
.single-column .bnr-refund .p-return__priceLPrice span :nth-of-type(1) {
  position: relative;
  bottom: -10px;
}
@media screen and (min-width: 500px) {
  .single-column .bnr-refund .p-return__priceLPrice span {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .p-return__priceLPrice span {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .bnr-refund .p-return__priceLPrice span {
    font-size: 28px;
  }
}
.single-column .bnr-refund .p-return__priceLPrice .refund-amount {
  font-size: 12vw;
  width: 40vw;
}
@media screen and (min-width: 500px) {
  .single-column .bnr-refund .p-return__priceLPrice .refund-amount {
    font-size: 67px;
    max-width: 220px;
  }
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .p-return__priceLPrice .refund-amount {
    font-size: 7vw;
    width: 22vw;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .bnr-refund .p-return__priceLPrice .refund-amount {
    width: 263px;
    font-size: 83px;
  }
}
@media screen and (min-width: 768px) {
  .single-column .bnr-refund .refund-txt {
    font-size: 10px;
    letter-spacing: -0.1em;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .bnr-refund .refund-txt {
    font-size: 12px;
    letter-spacing: -0.06em;
    line-height: 1.2;
    top: 310px;
  }
}

.liner-notification {
  background-color: #ffffff;
  padding: 24px 0;
  display: block;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .liner-notification {
    padding: 0.5rem;
    font-size: 16px;
  }
}

/* ---------------------------------------------------
 main visual
-----------------------------------------------------*/
.bnr-contact.visual_bottom .bnr-contact__sp {
  padding-top: 10px;
  padding-bottom: 0;
}
.bnr-contact.visual_bottom .bnr-contact__pc {
  padding-top: 15px;
}
.bnr-contact.visual_bottom .bnr-contact__pc img {
  max-width: 800px;
}
.bnr-contact.visual_bottom .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 768px) {
  .bnr-contact.visual_bottom .bnr-contact__pc p {
    font-size: 48px;
    left: 35%;
    top: 33%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-contact.visual_bottom .bnr-contact__pc p {
    font-size: 56px;
    left: 376px;
    top: 54px;
  }
}
.bnr-contact.visual_bottom .bnr-contact__pc p::after {
  font-size: 0.6em;
  font-weight: bold;
}

/* ---------------------------------------------------
 LPTOP_CTA
-----------------------------------------------------*/
#contact_bnr_type2 {
  background-color: #e4e4e4;
}

.lp-top-cta .bnr-contact .l-container img {
  max-width: 800px;
}
@media screen and (min-width: 1000px) {
  .lp-top-cta .bnr-contact .l-container .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}

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

@media screen and (min-width: 1200px) {
  .l-new-container {
    max-width: 1090px !important;
  }
}

.l-footer {
  width: 100%;
}
.l-footer h2 img {
  height: 18px;
}
@media screen and (min-width: 768px) {
  .l-footer h2 img {
    height: 30px;
  }
}
.l-footer .form-col2 {
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .l-footer .form-col2 {
    background-color: #e6f2ff;
  }
}
.l-footer__cooperation {
  padding-top: 0;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .l-footer__cooperation {
    background-color: #e4e4e4;
  }
}
.l-footer__cooperation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer__cooperation ul {
    justify-content: center;
  }
}
.l-footer__cooperation ul li {
  display: flex;
  flex: 0 0 49%;
  background: #ffffff;
  padding: 7px;
  margin-bottom: 6px;
  align-items: center;
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .l-footer__cooperation ul li {
    margin-bottom: 0;
    padding: 10px;
    justify-content: center;
    margin: 0 3px;
    border: none;
  }
}
@media screen and (min-width: 400px) {
  .l-footer__cooperation ul li {
    flex: 0 0 24.1%;
    margin-bottom: 0;
  }
}
.l-footer__cooperation ul img {
  max-width: 171px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__cooperation ul img {
    max-width: 196px;
  }
}

.home .l-footer {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .home .l-footer {
    background-color: transparent;
  }
}

.prefectures-wrap {
  background-color: #ffffff;
}
.prefectures-wrap #prefectures h3 img {
  height: 30px;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap #prefectures h3 img {
    height: 45px;
  }
}
.prefectures-wrap #prefectures dl {
  font-size: 13px;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap #prefectures dl {
    font-size: 15px;
    letter-spacing: initial;
  }
}
.prefectures-wrap #prefectures dl dt {
  line-height: 1.5;
  font-weight: normal;
  color: #267dcb;
}
.prefectures-wrap #prefectures dl dd {
  display: inline;
  margin: 0;
}
.prefectures-wrap #prefectures dl dd:nth-of-type(1) {
  padding-left: 10px;
}
.prefectures-wrap #prefectures dl dd a {
  color: #333333;
}

.u-footer-contents {
  background-color: #ffffff;
}
.u-footer-contents .l-container {
  padding: 0;
}
.u-footer-contents__menu {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .u-footer-contents__menu {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .u-footer-contents__menu__col {
    flex: 0 0 48%;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .u-footer-contents__menu__col {
    flex: 0 0 24%;
  }
}
.u-footer-contents__menu > ul {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .u-footer-contents__menu > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media screen and (min-width: 1000px) {
  .u-footer-contents__menu > ul {
    justify-content: space-between;
  }
}
.u-footer-contents__menu > ul li,
.u-footer-contents__menu > ul summary {
  padding: 0 5%;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.u-footer-contents__menu > ul li a {
  text-decoration: none;
  color: #333333;
  position: relative;
  display: block;
  line-height: 35px;
}
.u-footer-contents__menu > ul li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../images/icon/arrow_r.svg");
}
.u-footer-contents__menu > ul .menu-4 li:last-child {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}
.u-footer-contents__menu > ul details summary {
  display: block;
  list-style: none;
}
.u-footer-contents__menu > ul details summary::-webkit-details-marker {
  display: none;
}
.u-footer-contents__menu > ul details summary p {
  margin-bottom: 0;
  line-height: 35px;
  position: relative;
}
.u-footer-contents__menu > ul details summary p:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "＋";
  background: none;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1em;
}
.u-footer-contents__menu > ul details summary p.open::after {
  content: "−";
  right: 5px;
  font-size: 25px;
  line-height: 2em;
}
.u-footer-contents__menu > ul details li {
  border-bottom: 1px dotted #333333;
  width: 90%;
  margin: auto;
}

.u-footer_banner {
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .u-footer_banner {
    background-color: #e4e4e4;
  }
}
.u-footer_banner .l-container {
  max-width: 800px !important;
}
.u-footer_banner ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 6px;
}
.u-footer_banner ul li {
  flex: 0 0 49%;
  background: #ffffff;
  padding: 7px;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 3px;
}
.u-footer_banner ul li.no-banner {
  display: none;
}
@media screen and (min-width: 400px) {
  .u-footer_banner ul li.no-banner {
    display: flex;
    background-color: initial;
  }
}
@media screen and (min-width: 768px) {
  .u-footer_banner ul li {
    padding: 10px;
  }
}
@media screen and (min-width: 400px) {
  .u-footer_banner ul li {
    flex: 0 0 24.5%;
    margin-bottom: 0;
    border: none;
  }
}
@media screen and (min-width: 768px) {
  .u-footer_banner ul li {
    margin-bottom: 0;
  }
}
.u-footer_banner ul li a {
  height: 100%;
}
.u-footer_banner ul li a img {
  height: 35px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .u-footer_banner ul li a img {
    height: 50px;
  }
}
.u-footer_banner ul li a img.logo-rikusou {
  height: 28px;
}
@media screen and (min-width: 768px) {
  .u-footer_banner ul li a img.logo-rikusou {
    height: 40px;
  }
}

.u-footer_banner_top {
  background-color: #ffffff;
}
.u-footer_banner_top .l-container {
  max-width: 800px !important;
}
.u-footer_banner_top ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 6px;
}
.u-footer_banner_top ul li {
  flex: 0 0 49%;
  background: #ffffff;
  padding: 7px;
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(51, 51, 51, 0.5);
  border-radius: 3px;
}
.u-footer_banner_top ul li.no-banner {
  display: none;
}
@media screen and (min-width: 400px) {
  .u-footer_banner_top ul li.no-banner {
    display: flex;
    background-color: initial;
  }
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top ul li {
    padding: 10px;
  }
}
@media screen and (min-width: 400px) {
  .u-footer_banner_top ul li {
    flex: 0 0 31%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top ul li {
    margin-bottom: 10px;
  }
}
.u-footer_banner_top ul li a {
  height: 100%;
}
.u-footer_banner_top ul li a img {
  height: 35px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top ul li a img {
    height: 50px;
  }
}
.u-footer_banner_top ul li a img.logo-rikusou {
  height: 28px;
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top ul li a img.logo-rikusou {
    height: 40px;
  }
}

.u-footer_copyright {
  font-size: 10px;
  padding: 7px;
  padding-bottom: 30px;
  background: #333333;
  color: #ffffff;
  font-weight: normal;
}
@media (min-width: 400px) and (max-width: 430px) {
  .u-footer_copyright {
    padding-bottom: 3%;
  }
}
@media screen and (min-width: 768px) {
  .u-footer_copyright {
    font-size: 12px;
    padding-bottom: 20px;
  }
}

.cus_btn-fixWrap {
  bottom: 4em !important;
}
@media screen and (min-width: 768px) {
  .cus_btn-fixWrap {
    right: 2em;
  }
}

.cus_copy-right {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .cus_copy-right {
    margin-top: 0;
  }
}

.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 {
  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;
  display: flex;
  flex-direction: column;
  height: 52px;
  justify-content: center;
  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;
}

.tracking-height_tetuduki {
  padding-bottom: 100px !important;
}
@media screen and (min-width: 400px) {
  .tracking-height_tetuduki {
    padding-bottom: 120px !important;
  }
}
@media screen and (min-width: 768px) {
  .tracking-height_tetuduki {
    padding-bottom: 135px !important;
  }
}
.tracking-height_tetuduki .btn-fixWrap {
  bottom: 11.2em;
}
@media screen and (min-width: 768px) {
  .tracking-height_tetuduki .btn-fixWrap {
    bottom: 13.8em;
  }
}

.l-header {
  width: 100%;
  padding: 5px 0;
  height: auto;
  background-color: #ffffff;
  position: sticky;
  top: 0px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 10px 0;
    position: relative;
  }
}
.l-header__content {
  position: relative;
}
.l-header__content .u-display-flex {
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-header__content .u-display-flex {
    justify-content: center;
  }
}
.l-header__content div {
  align-items: center;
}
.l-header__content__logo img {
  height: 50px;
}
.l-header__menu__burger {
  position: relative;
  width: 35px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header__menu__burger {
    display: none;
  }
}
.l-header__banner {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .l-header__banner {
    display: flex !important;
    justify-content: space-around;
    width: 610px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header__banner {
    justify-content: space-between;
    width: 700px;
  }
}
.l-header__wrap {
  display: none;
  width: 100%;
  position: sticky;
  z-index: 9999;
  top: 32px;
  background-color: #ffffff;
  border-top: 2px solid #EAEAEA;
  box-shadow: 0px 3px 10px 1px #EAEAEA;
}
@media screen and (min-width: 768px) {
  .l-header__wrap {
    display: block;
  }
}
.l-header__wrap.is-sticky {
  border: none;
  position: fixed;
  top: 0px;
  height: 50px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  margin-top: 0px;
  padding: 3px 0px 3px 7px;
}
.l-header__wrap.is-sticky .l-header__wrap__gnav__lists {
  max-width: 980px !important;
}
@media screen and (min-width: 1200px) {
  .l-header__wrap.is-sticky .l-header__wrap__gnav__lists {
    max-width: 1090px !important;
  }
}
.l-header__wrap.is-sticky .l-header__wrap__gnav__list {
  margin-top: 3px;
}
.l-header__wrap.is-sticky .l-header__wrap__gnav__list:not(:first-child)::before {
  top: 5px;
}
.l-header__wrap.is-sticky .l-header__wrap__gnav__list:first-child a:hover {
  background-color: #ffffff;
}
.l-header__wrap.is-sticky .l-header__wrap__dropdown__lists {
  top: 44px;
}
.l-header__wrap__insert__img {
  padding: 0px;
  width: 100%;
  max-height: 36px;
}
.l-header__wrap__gnav__lists {
  display: flex;
  margin: 0 auto;
  max-width: 99%;
  padding-right: 5px;
}
@media screen and (min-width: 1200px) {
  .l-header__wrap__gnav__lists {
    max-width: 1090px !important;
  }
}
.l-header__wrap__gnav__list {
  flex-grow: 1;
  height: 100%;
  padding: 3px;
  position: relative;
  margin: 0px 3px;
  padding: 3px 0px 3px 8px;
}
@media screen and (min-width: 1000px) {
  .l-header__wrap__gnav__list {
    width: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header__wrap__gnav__list {
    width: 140px;
  }
}
.l-header__wrap__gnav__list:last-child {
  padding-left: 7px;
}
.l-header__wrap__gnav__list:not(:first-child):hover > a {
  border-radius: 5%;
  background-color: #EAEAEA;
}
.l-header__wrap__gnav__list:not(:first-child):hover .l-header__wrap__dropdown__lists {
  background-color: white;
  display: block;
  z-index: 999;
  transform: scaleY(1);
}
.l-header__wrap__gnav__list::before {
  content: "";
  width: 2px;
  height: 65%;
  background-color: #e4e4e4;
  position: absolute;
  top: 18%;
  left: 0;
}
.l-header__wrap__gnav__list:last-child::after {
  content: "";
  width: 2px;
  height: 65%;
  background-color: #e4e4e4;
  position: absolute;
  top: 18%;
  left: 104%;
}
.l-header__wrap__gnav__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 60px;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #333333;
}
.l-header__wrap__gnav__list a.active {
  color: #007CB7 !important;
}
.l-header__wrap__gnav__list > a {
  height: 35px;
}
.l-header__wrap__gnav__list > a:hover {
  border-radius: 5%;
  background-color: #EAEAEA;
}
.l-header__wrap__gnav__list .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 82%;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 0 15px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (min-width: 1200px) {
  .l-header__wrap__gnav__list .menu-item-has-children::before {
    left: 80%;
  }
}
.l-header__wrap__dropdown__lists {
  position: absolute;
  left: 0;
  top: 41px;
  transform: scaleY(0);
  transform-origin: center top;
  transition: all 0.1s;
  width: fit-content;
  white-space: nowrap;
  min-width: 157px;
  border: 2px solid #EAEAEA;
  border-radius: 3%;
}
.l-header__wrap__dropdown__lists:hover a::after {
  transform: scaleX(1);
}
.l-header__wrap__dropdown__list {
  height: 40px;
  position: relative;
  padding: 0 10px;
}
@media screen and (min-width: 1000px) {
  .l-header__wrap__dropdown__list {
    height: 50px;
  }
}
.l-header__wrap__dropdown__list a {
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__wrap__dropdown__list a::before {
  content: "";
  position: absolute;
  top: 27%;
  left: 10px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: translate(-100%) rotate(45deg) scale(0.8);
}
@media screen and (min-width: 1000px) {
  .l-header__wrap__dropdown__list a::before {
    transform: translate(-100%) rotate(45deg) scale(1);
  }
}
.l-header__wrap__dropdown__list a .ttl {
  margin-left: 17px;
  font-weight: 400;
}
.l-header__wrap__dropdown__list:hover {
  background-color: #EAEAEA;
}

.l-header-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
  animation: slideinRight 0.5s forwards;
}
@keyframes slideinRight {
  0% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(0);
  }
}
.l-header-dropdown__bg {
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 768px) {
  .l-header-dropdown__bg {
    position: absolute;
    right: 0;
    width: 400px;
  }
}
.l-header-dropdown__contents {
  display: flex;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-header-dropdown__contents {
    max-width: 400px;
  }
}
.l-header-dropdown__contents__area2 {
  background-color: #ffffff;
  position: fixed;
  right: 0;
  overflow-y: auto;
  height: 100%;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .l-header-dropdown__contents__area2 {
    max-width: 350px;
  }
}
.l-header-dropdown__contents__area2 .area2__header {
  width: 100%;
  padding: 9px 24px 9px 9px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header-dropdown__contents__area2 .area2__header img {
  height: 50px;
}
.l-header-dropdown__contents__area2 .area2__header .dropdown-close {
  font-size: 28px;
  color: #777;
}
.l-header-dropdown__contents__area2 .area2__contact img {
  padding: 13px;
}
.l-header-dropdown__contents__area2 .area2__contact img:first-child {
  border-bottom: 1px solid #e4e4e4;
}
.l-header-dropdown__contents__area2 .u-color-7 {
  padding: 0.5rem;
}
.l-header-dropdown__contents__area2 .area2__link {
  margin: 0;
}
.l-header-dropdown__contents__area2 .area2__link li,
.l-header-dropdown__contents__area2 .area2__link summary {
  padding: 13px 0 13px 15px;
}
.l-header-dropdown__contents__area2 .area2__link li:not(:first-child),
.l-header-dropdown__contents__area2 .area2__link summary:not(:first-child) {
  border-top: 1px dashed #333333;
}
.l-header-dropdown__contents__area2 .area2__link li a,
.l-header-dropdown__contents__area2 .area2__link summary a {
  font-size: 15px;
  display: block;
  text-decoration: none;
  color: #333333;
  position: relative;
}
.l-header-dropdown__contents__area2 .area2__link li a::after,
.l-header-dropdown__contents__area2 .area2__link summary a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/icon/arrow_r.svg");
}
.l-header-dropdown__contents__area2 .area2__link li:active,
.l-header-dropdown__contents__area2 .area2__link summary:active {
  background-color: #e4e4e4;
}
.l-header-dropdown__contents__area2 .area2__link details summary {
  font-size: 15px;
  border-top: 1px dashed #333333;
  display: block;
  list-style: none;
}
.l-header-dropdown__contents__area2 .area2__link details summary::-webkit-details-marker {
  display: none;
}
.l-header-dropdown__contents__area2 .area2__link details summary p {
  margin: 0;
  position: relative;
}
.l-header-dropdown__contents__area2 .area2__link details summary p:after {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  content: "＋";
  background: none;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1em;
}
.l-header-dropdown__contents__area2 .area2__link details summary p.open::after {
  content: "−";
  right: 5%;
  font-size: 25px;
  line-height: 2em;
}
.l-header-dropdown__contents__area2 .area2__link details li {
  padding-left: 20px;
  background-color: #e7f3ff;
  border-left: 5px solid #0085ff;
}
.l-header-dropdown__contents__area2 .menu-pref-list {
  background-color: #0085ff;
  padding-bottom: 10px;
  margin: 0;
}
.l-header-dropdown__contents__area2 .menu-pref-list__ttl {
  color: #ffffff;
}
.l-header-dropdown__contents__area2 .menu-pref-list li {
  font-size: 15px;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area {
  width: 96%;
  background-color: #ffffff;
  margin: 0 auto;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area:not(:last-child) {
  border-bottom: 1px solid #0085ff;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__summary {
  border-top: none !important;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail {
  margin-top: 0;
  margin-bottom: 1rem;
  width: 50%;
  font-size: 15px;
  line-height: 1;
  background-color: #e7f3ff;
  margin: 0;
  padding: 13px 0 13px 15px;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail:nth-of-type(-n + 2) {
  border-top: 1px solid #0085ff;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail:not(:last-of-type) {
  border-bottom: 1px solid #0085ff;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail:nth-of-type(odd) {
  border-right: 1px solid #0085ff;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail a {
  font-size: 15px;
  display: block;
  text-decoration: none;
  color: #333333;
  position: relative;
}
.l-header-dropdown__contents__area2 .menu-pref-list__area__pref__detail a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/icon/arrow_r.svg");
}

h1 {
  font-size: 16px;
}

.lptop-header-container {
  max-width: 560px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .lptop-header-container {
    max-width: 1100px !important;
    padding: 0 30px;
  }
}

.lptop-header {
  display: flex;
}
.lptop-header__web img {
  width: 142px;
  height: 36px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .lptop-header__web img {
    height: 66px;
    width: 236px;
  }
}
.lptop-header__cta img {
  width: 48px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .lptop-header__cta img {
    width: 284px;
    height: 66px;
  }
}

.header__sdgs img {
  width: 150px;
  height: 40px;
}
@media screen and (min-width: 1000px) {
  .header__sdgs img {
    width: 195px;
    height: 50px;
  }
}
.header__call img {
  width: 220px;
  height: 40px;
}
@media screen and (min-width: 1000px) {
  .header__call img {
    width: 260px;
    height: 50px;
  }
}
.header__assessment img {
  width: 120px;
  height: 40px;
}
@media screen and (min-width: 1000px) {
  .header__assessment img {
    width: 160px;
    height: 50px;
  }
}
.header__cta__text {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__cta__text {
    display: block;
    position: absolute;
    top: 0%;
    transform: translateX(21%);
    font-family: Helvetica;
    font-size: 29px;
    font-weight: 700;
    line-height: 39px;
    letter-spacing: 0em;
    text-align: left;
    color: #333;
  }
}
@media screen and (min-width: 1000px) {
  .header__cta__text {
    font-size: 34px;
  }
}
.header__cta__except__home__text {
  top: -8%;
}

img {
  max-width: 100%;
}

h1 {
  text-align: center;
  border-top: 2px solid #e4e4e4;
  border-bottom: 2px solid #e4e4e4;
  padding: 0.5rem;
  margin-bottom: 0;
  font-weight: normal;
}

ul {
  list-style: none;
  padding: 0;
}

.main_title_wrap {
  background-image: url("../images/tt/bg.webp");
  background-size: 100% 100%;
  position: relative;
  background-repeat: no-repeat;
  height: 120px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .main_title_wrap {
    height: 140px;
  }
}
.main_title_wrap .main_title_string {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
}
@media screen and (min-width: 768px) {
  .main_title_wrap .main_title_string {
    height: 80px;
    top: 50%;
  }
}
.main_title_wrap .main_title_icon {
  position: absolute;
  bottom: -45px;
  height: 70px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.page-nation {
  text-align: center;
}

section {
  padding: 20px 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section {
    padding: 30px 0;
  }
}
section .norika_jisseki_abtest {
  height: 150px;
}
@media screen and (min-width: 768px) {
  section .norika_jisseki_abtest {
    height: 230px;
  }
}
section .title-wrap {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
section .title-wrap .norika_lp_jisseki {
  position: absolute;
  width: 150px;
  bottom: -10px;
  left: 0;
}
@media screen and (min-width: 768px) {
  section .title-wrap .norika_lp_jisseki {
    width: 220px;
    bottom: -10px;
  }
}
@media screen and (min-width: 1000px) {
  section .title-wrap .norika_lp_jisseki {
    left: 70px;
  }
}
section .title-wrap .norika_sub_tt {
  margin-top: 40px;
  margin-left: 130px;
}
@media screen and (min-width: 768px) {
  section .title-wrap .norika_sub_tt {
    margin-top: 60px;
    margin-left: 0;
  }
}
section .title-wrap .norika_main_tt {
  margin-top: 10px;
  margin-left: 130px;
}
@media screen and (min-width: 768px) {
  section .title-wrap .norika_main_tt {
    margin-top: 20px;
    margin-left: 0;
    height: 40px !important;
  }
}
section .title-wrap .sub, section .title-wrap .sub__black, section .title-wrap .sub__blue {
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  section .title-wrap .sub, section .title-wrap .sub__black, section .title-wrap .sub__blue {
    font-size: 18px;
    margin-bottom: 6px;
  }
}
section h2 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
section h2 img {
  height: 24px;
}
@media screen and (min-width: 768px) {
  section h2 img {
    height: 36px;
  }
}
section h3 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
section h3::before {
  width: 40px;
}
@media screen and (min-width: 768px) {
  section h3 {
    font-size: 30px;
  }
}

hr.line {
  background: #e4e4e4;
  height: 0.3rem;
  margin: 0;
  border: none;
}

hr.white-line {
  background: #ffffff;
  height: 0.3rem;
  margin: 0;
  border: none;
}

html body.page-template-default .l-main .u-base-text01,
html body.single .l-main .u-base-text01,
html body.single .l-main .jisseki_list_meta .u-base-text01,
.u-base-text01 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  html body.page-template-default .l-main .u-base-text01,
  html body.single .l-main .u-base-text01,
  html body.single .l-main .jisseki_list_meta .u-base-text01,
  .u-base-text01 {
    font-size: 16px;
  }
}

html body.page-template-default .l-main .u-base-text02,
html body.single .l-main .u-base-text02,
html body.single .l-main .jisseki_list_meta .u-base-text02,
.u-base-text02 {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  html body.page-template-default .l-main .u-base-text02,
  html body.single .l-main .u-base-text02,
  html body.single .l-main .jisseki_list_meta .u-base-text02,
  .u-base-text02 {
    font-size: 16px;
  }
}

html body.page-template-default .l-main .u-base-text03,
html body.single .l-main .u-base-text03,
html body.single .l-main .jisseki_list_meta .u-base-text03,
.u-base-text03 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  html body.page-template-default .l-main .u-base-text03,
  html body.single .l-main .u-base-text03,
  html body.single .l-main .jisseki_list_meta .u-base-text03,
  .u-base-text03 {
    font-size: 18px;
  }
}

html body .l-main .u-base-text04,
.u-base-text04 {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  html body .l-main .u-base-text04,
  .u-base-text04 {
    font-size: 14px;
  }
}

html body .l-main .u-base-text05,
.u-base-text05 {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  html body .l-main .u-base-text05,
  .u-base-text05 {
    font-size: 16px;
  }
}

/* ==============================================
追尾
================================================*/
/* header
--------------------------------*/
.fixed-top {
  display: block !important;
  position: fixed;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e4e4;
  top: 0px;
  z-index: 999;
}

#tracking_header {
  display: none;
}
#tracking_header ul {
  display: flex;
  margin-bottom: 0;
  height: 60px;
}
@media screen and (min-width: 768px) {
  #tracking_header ul {
    height: 50px;
    max-width: 980px;
    margin: auto;
  }
}
#tracking_header ul li {
  width: 25%;
  padding: 5px 10px;
  background-image: url("../images/icon/trk_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
#tracking_header ul li:not(.last) {
  border-right: 1px solid rgba(51, 51, 51, 0.6);
}
@media screen and (min-width: 768px) {
  #tracking_header ul li.last {
    border-right: 1px solid rgba(51, 51, 51, 0.6);
  }
  #tracking_header ul li.first {
    border-left: 1px solid rgba(51, 51, 51, 0.6);
  }
  #tracking_header ul li {
    background-image: url("../images/icon/trk_bg_pc.webp");
  }
}
#tracking_header ul li img {
  height: 42px;
  max-height: 50px;
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #tracking_header ul li img {
    height: 29px;
    left: 80px;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #tracking_header ul li img.nagare {
    height: 33px;
  }
  #tracking_header ul li img.jisseki {
    height: 26px;
  }
}

/* footer
----------------------------------*/
.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 .column-header-contact {
  background-color: initial;
  padding: 0 0 14px;
}
#tracking_footer .column-header-contact .l-container {
  padding: 0;
  max-width: initial !important;
}
#tracking_footer .column-header-contact p.txt {
  background-color: #e4e4e4;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  #tracking_footer .column-header-contact__tel p {
    font-size: 23px;
    width: fit-content;
    left: 40%;
  }
}
@media screen and (min-width: 1000px) {
  #tracking_footer .column-header-contact__tel p {
    left: 38%;
    font-size: 27px !important;
  }
}
#tracking_footer .column-header-contact__wrap {
  padding: 0 5%;
  position: relative;
}
@media screen and (min-width: 768px) {
  #tracking_footer .column-header-contact__wrap {
    padding: 0 22px;
    max-width: 980px;
    margin: auto;
  }
}
#tracking_footer .column-header-contact__wrap::before {
  content: "";
  background-image: url("../images/icon/submit_yen.svg");
  display: inline-block;
  background-repeat: no-repeat;
  width: 35px;
  height: 37px;
  position: absolute;
  left: 5px;
  top: -32px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #tracking_footer .column-header-contact__wrap::before {
    top: -40px;
    left: 0;
  }
}
#tracking_footer .column-header-contact__wrap img {
  max-height: 70px;
}

.tracking-height {
  padding-bottom: 80px;
}
@media screen and (min-width: 400px) {
  .tracking-height {
    padding-bottom: 95px;
  }
}
@media screen and (min-width: 768px) {
  .tracking-height {
    padding-bottom: 100px;
  }
}

.compare-img-wrap {
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compare-img-wrap::-webkit-scrollbar {
  display: none;
}
.compare-img-wrap img {
  width: 100%;
  min-width: 400px;
  max-width: initial;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .compare-img-wrap img {
    max-width: 800px;
  }
}

.hajimete_anshin {
  padding: 3px;
  line-height: 1.4;
  font-size: 13px;
  color: #fb5154;
  border: 1px solid #fb5154;
  text-align: center;
  margin-bottom: 0;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .hajimete_anshin {
    font-size: 16px;
    max-width: 820px;
    margin: auto;
    margin-top: 10px;
    border: 2px solid;
    padding: 10px;
  }
}

/* slider デフォルト設定
-------------------------------------------------*/
/*arrow--------------------*/
.slick-arrow {
  z-index: 99;
}
.slick-arrow::before {
  content: "" !important;
  display: inline-block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  opacity: initial;
}
@media screen and (min-width: 768px) {
  .slick-arrow::before {
    width: 35px;
    height: 35px;
  }
}
.slick-arrow.slick-prev, .slick-arrow.slick-next {
  width: fit-content !important;
  height: fit-content !important;
}
.slick-arrow.slick-prev::before {
  background-image: url("../images/icon/arrow_cl.svg");
}
.slick-arrow.slick-next::before {
  background-image: url("../images/icon/arrow_cr.svg");
}

/* slick dots -----------------------------------------*/
.slick-dots {
  bottom: -16px !important;
}
.slick-dots li button::before {
  content: "" !important;
  opacity: 0.8 !important;
  background-color: #333333 !important;
  border-radius: 50%;
  width: 6px !important;
  height: 6px !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
@media screen and (min-width: 768px) {
  .slick-dots li button::before {
    width: 8px !important;
    height: 8px !important;
  }
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  background-color: #267dcb !important;
}

/* splider dots -----------------------------------------*/
.splide__pagination li button {
  background-color: #333333 !important;
}
.splide__pagination li .is-active {
  opacity: 1;
  transform: inherit;
  background-color: #267dcb !important;
}

.notfound {
  text-align: center;
}
.notfound img {
  max-width: 320px;
}
.notfound__link {
  display: block;
  margin-bottom: 40px;
}

@keyframes FlashBorder {
  0% {
    box-shadow: 0 0 0 0px #ff007f, 0 0 0 0px #fff, 0 0 0 1px #ff007f;
  }
  100% {
    box-shadow: 0 0 0 0px #ff007f, 0 0 0 0px #fff, 0 0 0 2px rgba(100, 164, 134, 0);
  }
}
.focused {
  border: 3px solid #ff007f !important;
  animation-name: FlashBorder !important;
  animation-duration: 1s !important;
  animation-timing-function: ease !important;
  animation-iteration-count: infinite !important;
}

/* 拡大・縮小 */
.change-scale, .pc-sp-cta a img {
  -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);
  }
}
.c-subtitle_badge {
  background: #2ba4a0;
  color: #ffffff;
  display: inline-block;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
}

.c-subtitle_badge_blue {
  background: #267dcb;
  color: #ffffff;
  display: inline-block;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
}

.sub, .sub__black, .sub__blue {
  color: #ffffff;
  background-color: #2ba4a0;
  border-radius: 3px;
  padding: 0 10px;
  line-height: 1.6;
  display: inline-block;
  width: fit-content;
  font-size: 16px;
}

.sub__blue {
  background-color: #267dcb;
}

.sub__black {
  background-color: #333333;
}

.breadcrumbs {
  margin: auto;
  padding: 5px 0;
  color: #272727;
  text-decoration: none;
  font-size: 1.4rem;
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 200;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
  }
}
.breadcrumbs a {
  color: #333333;
  text-decoration: none;
}
.breadcrumbs a:not(:last-child) span::after {
  content: ">";
  margin-left: 5px;
}
.breadcrumbs a:not(:last-child):hover {
  opacity: 0.5;
}
.breadcrumbs a:last-child:hover {
  cursor: inherit;
}

.c-button__blue2 {
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
  color: #ffffff !important;
  background-color: rgb(0, 54, 110);
  text-decoration: none !important;
  border: none;
  border-radius: 3px;
  margin: auto;
  margin-top: 20px;
  padding: 12px 0;
  width: 90%;
  min-width: 260px;
  max-width: 400px;
  box-shadow: 2px 3px 4px 0px grey;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-button__blue2 {
    margin-top: 30px;
    padding: 12px 0;
    border-radius: 5px;
  }
}
.c-button__blue2 input {
  padding: 15px;
  color: #ffffff !important;
  font-size: 16px;
  text-decoration: none !important;
  background-color: rgb(0, 54, 110);
  border: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button__blue2 {
    font-size: 16px;
  }
}
.c-button__blue2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/icon/arrow_r.svg");
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .c-button__blue2::after {
    width: 15px;
    height: 15px;
  }
}
.c-button__blue2 a {
  color: #ffffff;
  text-decoration: none;
}

.c-button__blue2__thin {
  display: block;
  position: relative;
  width: 100%;
  color: #ffffff !important;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-decoration: none !important;
  border-radius: 5px;
  background-color: rgb(0, 54, 110);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}
.c-button__blue2__thin::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon/arrow_r.svg");
  background-size: contain;
}

.c-arrow::after, .c-arrow-b::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 30px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transition: all 0.2s ease-out;
}

.c-arrow-b::after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.set-new-form-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.c-form-modal-pc {
  position: fixed;
  z-index: 9999;
  background: white;
  padding-top: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 680px;
  width: 95%;
  max-width: 980px;
  border: 2px solid #cccccc;
}
@media screen and (min-width: 1000px) {
  .c-form-modal-pc {
    width: 100%;
  }
}
.c-form-modal-pc__close {
  position: absolute;
  font-size: 40px;
  right: 10px;
  font-weight: 200;
  top: -20px;
  opacity: 0.6;
}
.c-form-modal-pc__close:hover {
  opacity: 1;
}
.c-form-modal-pc__close span {
  cursor: pointer;
}
.c-form-modal-pc__container {
  width: 90%;
  margin: 0 auto;
}
.c-form-modal-pc__header {
  position: relative;
}
.c-form-modal-pc__header__menu-pc {
  margin: 40px 0;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc__value {
  width: 32%;
  background-color: #cccccc;
  padding: 7.6px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 20px;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc .focus_menu {
  background-color: #d55554 !important;
  color: #ffffff !important;
  position: relative;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc .focus_menu::before {
  border: solid transparent;
  content: "";
  position: absolute;
  border-top-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #D55554;
  top: 100%;
  left: 50%;
  z-index: 999;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc .focus_menu_distance {
  background-color: #003770 !important;
  color: #ffffff !important;
  position: relative;
}
.c-form-modal-pc__header__menu-pc .select-menu-pc .focus_menu_distance::before {
  border: solid transparent;
  content: "";
  position: absolute;
  border-top-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #003770;
  top: 100%;
  left: 50%;
  z-index: 999;
}
.c-form-modal-pc__header .distance-next-box {
  display: none;
  height: 50px;
  background-color: #dae6f1;
  margin-top: 30px;
}
.c-form-modal-pc__header .distance-next-box p {
  margin: 0;
  padding: 12px 16px;
  font-size: 16px;
}
.c-form-modal-pc__header .distance-next-box p span {
  color: #267dcb;
  text-decoration: underline;
  cursor: pointer;
}
.c-form-modal-pc__inner .selected-bg {
  background-color: #dae6f1;
}
.c-form-modal-pc__inner .maker-border {
  height: 515px;
  overflow-y: scroll;
  border: 1px solid #cccccc;
}
.c-form-modal-pc__inner .maker-border::-webkit-scrollbar {
  width: 5px;
  background-color: #e4e4e4;
  margin-right: 5px;
}
.c-form-modal-pc__inner .maker-border::-webkit-scrollbar-track {
  border-radius: 5px;
}
.c-form-modal-pc__inner .maker-border::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.c-form-modal-pc__inner .title-box {
  margin: 15px 0;
}
.c-form-modal-pc__inner .title-box .title-border {
  border-left: solid 4px #267dcb;
}
.c-form-modal-pc__inner .title-box .title-text {
  display: inline-block;
  padding-left: 5px;
  font-size: 16px;
}
.c-form-modal-pc__inner .step1, .c-form-modal-pc__inner .step2, .c-form-modal-pc__inner .step3, .c-form-modal-pc__inner .step4 {
  opacity: 0;
  display: none;
}
.c-form-modal-pc__inner .step1.fade-in, .c-form-modal-pc__inner .step2.fade-in, .c-form-modal-pc__inner .step3.fade-in, .c-form-modal-pc__inner .step4.fade-in {
  display: block;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.c-form-modal-pc__inner__vehicletype .pc-popular-car-model-box {
  border: 1px solid #cccccc;
  padding: 0 20px;
}
.c-form-modal-pc__inner__vehicletype .pc-popular-car-model-box .popular-car-model {
  display: flex;
  justify-content: flex-start;
}
.c-form-modal-pc__inner__vehicletype .pc-popular-car-model-box .popular-car-model li {
  margin-right: 20px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  height: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
  width: 23%;
  padding-left: 10px;
}
.c-form-modal-pc__inner__vehicletype .pc-popular-car-model-box .popular-car-model li:hover {
  background-color: #dae6f1;
}
.c-form-modal-pc__inner__vehicletype .pc-popular-car-model-box .popular-car-model li:hover span {
  pointer-events: none;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box {
  border: 1px solid #cccccc;
  padding: 0 20px;
  margin-top: 20px;
  height: 380px;
  overflow-y: scroll;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box::-webkit-scrollbar {
  width: 5px;
  background-color: #e4e4e4;
  margin-right: 5px;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box::-webkit-scrollbar-track {
  border-radius: 5px;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box {
  display: flex;
  border: 1px solid #267dcb;
  justify-content: space-around;
  text-align: center;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li {
  width: 8.3%;
  padding: 8px 0;
  cursor: pointer;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li:not(:last-child) {
  border-right: 1px solid #267dcb;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li:hover {
  background-color: #dae6f1;
  color: #267dcb;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #267dcb;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li a {
    font-size: 17px;
  }
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box li a.not-active {
  color: #cccccc;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .aiueo-order-box .not-active-li:hover {
  background-color: #ffffff;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents {
  display: flex;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 15px;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-title {
  font-size: 18px;
  font-weight: 400;
  width: 10%;
  color: #267dcb;
  padding-top: 16px;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-name-box {
  width: 90%;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-name-box .pc-car-model-name-flex {
  display: flex;
  flex-wrap: wrap;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-name-box .pc-car-model-name-flex li {
  width: 23%;
  font-size: 16px;
  font-weight: 400;
  margin-right: 10px;
  margin-top: 8px;
  padding-left: 10px;
  cursor: pointer;
  height: 50px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-name-box .pc-car-model-name-flex li:hover {
  background-color: #dae6f1;
}
.c-form-modal-pc__inner__vehicletype .pc-car-model-box .c-form-modal-pc__step__contents .pc-car-model-contents .pc-car-model-name-box .pc-car-model-name-flex li:hover span {
  pointer-events: none;
}
.c-form-modal-pc__inner__distance .distance-border-box {
  border: 1px solid #cccccc;
  padding: 0 20px;
}
.c-form-modal-pc__inner__distance .distance-contents-box {
  display: flex;
  flex-wrap: wrap;
  height: 150px;
  align-items: center;
}
.c-form-modal-pc__inner__distance .distance-contents-box .m-distance-pc {
  width: 30%;
  height: 40px;
  margin-right: 10px;
  padding: 6px 0 0 10px;
  cursor: pointer;
}
.c-form-modal-pc__inner__distance .distance-contents-box .m-distance-pc:hover {
  background-color: #dae6f1;
}
.c-form-modal-pc__inner__maker .step1__inner {
  display: flex;
  justify-content: space-evenly;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents {
  width: 45%;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-selected {
  background: #dae6f1 !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space {
  border: 1px solid #cccccc;
  text-align: center;
  width: 85px;
  height: 90px;
  margin-bottom: 15px;
  margin-right: 10px;
  cursor: pointer;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space:hover {
  background: #dae6f1 !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-maker3 {
  margin: 0;
  line-height: 1;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .fix-margin {
  margin-top: 5px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space span[class*=m-logo-] {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 55px;
  height: 50px;
  background-position: 0 8px;
  pointer-events: none;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-aldina {
  background-image: url("../images/modal_form/aldina.webp");
  background-position: 0px 5px !important;
  background-size: 56px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-alfaromeo {
  background-image: url("../images/modal_form/alfaromeo.svg");
  background-size: 45px !important;
  background-position: 5px 5px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-amg {
  background-image: url("../images/modal_form/amg.webp");
  background-size: 56px !important;
  background-position: 0px 20px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-audi {
  background-image: url("../images/modal_form/audi.webp");
  background-position: -3px 8px !important;
  background-size: 61px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-bentley {
  background-image: url("../images/modal_form/bentley.svg");
  background-size: 56px !important;
  background-position: 0px 20px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-benz {
  background-image: url("../images/modal_form/benz.webp");
  background-size: 62px !important;
  background-position: -4px 7px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-bmw {
  background-image: url("../images/modal_form/bmw.svg");
  background-position: 6px 7px !important;
  background-size: 40px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-buick {
  background-image: url("../images/modal_form/buick.svg");
  background-position: 7px 9px !important;
  background-size: 40px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-cadillac {
  background-image: url("../images/modal_form/cadillac.svg");
  background-position: 11px 8px !important;
  background-size: 31px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-chevrolet {
  background-image: url("../images/modal_form/chevrolet.webp");
  background-size: 62px !important;
  background-position: -4px -2px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-chrysler {
  background-image: url("../images/modal_form/chrysler2.webp");
  background-size: 72px !important;
  background-position: -3px 24px !important;
  width: 65px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-citroen {
  background-image: url("../images/modal_form/citroen.webp");
  background-position: 0px 12px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-daihatsu {
  background-image: url("../images/modal_form/daihatsu.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-dodge {
  background-image: url("../images/modal_form/dodge.webp");
  background-position: 1px 26px !important;
  background-size: 64px !important;
  width: 65px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-ferrari {
  background-image: url("../images/modal_form/ferrari.webp");
  background-size: 45px !important;
  background-position: 5px 4px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-fiat {
  background-image: url("../images/modal_form/fiat.svg");
  background-size: 44px !important;
  background-position: 5px 6px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-ford {
  background-image: url("../images/modal_form/ford.webp");
  background-position: 1px 4px !important;
  background-size: 54px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-gmc {
  background-image: url("../images/modal_form/gmc.webp");
  background-position: 1px 24px !important;
  background-size: 56px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-hino {
  background-image: url("../images/modal_form/hino.webp");
  background-size: 49px !important;
  background-position: 3px 11px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-honda {
  background-image: url("../images/modal_form/honda.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-hummer {
  background-image: url("../images/modal_form/hummer.svg");
  background-position: 0px 27px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-hyundai {
  background-image: url("../images/modal_form/hyundai.svg");
  width: 65px !important;
  background-position: 0px 22px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-isuzu {
  background-image: url("../images/modal_form/isuzu.svg");
  background-position: 0px 24px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-jaguar {
  background-image: url("../images/modal_form/jaguar.webp");
  background-position: -7px 7px !important;
  background-size: 65px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-jeep {
  background-image: url("../images/modal_form/jeep.svg");
  background-size: 53px !important;
  background-position: 0px 19px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-lanborghini {
  background-image: url("../images/modal_form/lanborghini.webp");
  background-position: -9px 0px !important;
  background-size: 72px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-lancia {
  background-image: url("../images/modal_form/lancia.webp");
  background-size: 47px !important;
  background-position: 4px 4px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-landrover {
  background-image: url("../images/modal_form/landrover.svg");
  background-size: 54px !important;
  background-position: 1px 12px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-lexus {
  background-image: url("../images/modal_form/lexus.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-lincoln {
  background-image: url("../images/modal_form/lincoln.webp");
  background-position: 6px 8px !important;
  background-size: 42px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-lotus {
  background-image: url("../images/modal_form/lotus.svg");
  background-size: 44px !important;
  background-position: 5px 7px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-maserati {
  background-image: url("../images/modal_form/maserati.webp");
  background-size: 49px !important;
  background-position: 3px 2px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-matsuda {
  background-image: url("../images/modal_form/matsuda.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-mitsubishi {
  background-image: url("../images/modal_form/mitsubishi.png");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-mitsuoka {
  background-image: url("../images/modal_form/mitsuoka.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-nissan {
  background-image: url("../images/modal_form/nissan2.webp");
  background-position: 1px 7px !important;
  background-size: 52px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-opel {
  background-image: url("../images/modal_form/opel.svg");
  background-size: 62px !important;
  background-position: -6px -1px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-peugeot {
  background-image: url("../images/modal_form/peugeot.webp");
  background-position: -5px 6px !important;
  background-size: 62px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-pontiac {
  background-image: url("../images/modal_form/pontiac.webp");
  background-size: 178px !important;
  background-position: -64px 4px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-porsche {
  background-image: url("../images/modal_form/porsche.webp");
  background-size: 64px !important;
  background-position: -7px 4px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-renault {
  background-image: url("../images/modal_form/renault.webp");
  background-position: -3px 7px !important;
  background-size: 60px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-rolls {
  background-image: url("../images/modal_form/rolls.svg");
  background-position: 16px 7px !important;
  background-size: 24px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-rover {
  background-image: url("../images/modal_form/rover.webp");
  background-size: 43px !important;
  background-position: 5px 6px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-smart {
  background-image: url("../images/modal_form/smart.svg");
  background-size: 56px !important;
  background-position: 0 19px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-saab {
  background-image: url("../images/modal_form/saab.svg");
  background-size: 41px !important;
  background-position: 7px 7px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-subaru {
  background-image: url("../images/modal_form/subaru.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-suzuki {
  background-image: url("../images/modal_form/suzuki.png");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-toyota {
  background-image: url("../images/modal_form/toyota.webp");
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-ud {
  background-image: url("../images/modal_form/ud.svg");
  background-position: 6px 5px !important;
  background-size: 42px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-volkswagen {
  background-image: url("../images/modal_form/volkswagen.svg");
  background-position: 7px 7px !important;
  background-size: 41px !important;
}
.c-form-modal-pc__inner__maker .step1__inner .maker-contents .maker-box .maker-space .m-logo-volvo {
  background-image: url("../images/modal_form/volvo.svg");
  background-size: 42px !important;
  background-position: 7px 7px !important;
}

.pc-new-form .input-focus {
  border: 2px solid #fe0000 !important;
  animation: focusInput 1.3s ease infinite;
  -webkit-animation: focusInput 1.3s ease infinite;
  -webkit-appearance: none;
}
.pc-new-form .form2_box_check .submit-disabled {
  pointer-events: none;
  opacity: 0.5;
}

.c-form-modal-pc-pref {
  position: absolute;
  width: 100%;
  background: white;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0;
  border-radius: 5px;
}
.c-form-modal-pc-pref__inner {
  border: 15px solid rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.c-form-modal-pc-pref__inner .step-title {
  padding: 15px;
  margin: 0;
}
.c-form-modal-pc-pref__close {
  position: absolute;
  padding: 5px 10px;
  font-size: 28px;
  right: 0;
  top: 0;
  line-height: 1;
  text-align: center;
  z-index: 999;
}
.c-form-modal-pc-pref__close span {
  cursor: pointer;
}
.c-form-modal-pc-pref__step {
  height: 100%;
}
.c-form-modal-pc-pref__container {
  height: 100%;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents {
  overflow-y: scroll;
  height: 90%;
  padding-bottom: 20px;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents::-webkit-scrollbar {
  width: 5px;
  background-color: #e4e4e4;
  margin-right: 5px;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents::-webkit-scrollbar-track {
  border-radius: 5px;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents .pref-title {
  text-align: center;
  background-color: rgba(254, 0, 0, 0.1);
  margin: 0;
  padding: 5px 0;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents 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;
  font-size: 16px;
}
.c-form-modal-pc-pref__container .c-form-modal-pc-pref__step__contents .m-pref-pc {
  text-align: left;
  margin-bottom: 0;
  padding: 5px 10px;
  border-bottom: 1px solid #e4e4e4;
  cursor: pointer;
}

.c-form-modal2 {
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 9999;
  background: white;
  width: 100vw;
  padding-top: 0;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .c-form-modal2 {
    position: absolute;
    height: auto;
    padding-bottom: 0;
    overflow: inherit;
    border-radius: 5px;
  }
}
.c-form-modal2__bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
}
.c-form-modal2__inner {
  height: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-form-modal2__inner {
    border: 5px solid rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    padding-right: 5px;
  }
}
.c-form-modal2__inner__top .fixed_box {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
}
.c-form-modal2__inner__top .fixed_box .select-menu {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.c-form-modal2__inner__top .fixed_box .select-menu__value {
  width: 33%;
  background-color: #cccccc;
  padding: 7.6px 0;
  font-size: 16px;
  font-weight: 600;
}
.c-form-modal2__inner__top .fixed_box .select-menu .focus_menu {
  background-color: #d55554 !important;
  color: #ffffff !important;
  position: relative;
}
.c-form-modal2__inner__top .fixed_box .select-menu .focus_menu::before {
  border: solid transparent;
  content: "";
  position: absolute;
  border-top-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #D55554;
  top: 100%;
  left: 50%;
  z-index: 999;
}
.c-form-modal2__inner__top .fixed_box .select-menu .focus_menu_distance {
  background-color: #003770 !important;
  color: #ffffff !important;
  position: relative;
}
.c-form-modal2__inner__top .fixed_box .select-menu .focus_menu_distance::before {
  border: solid transparent;
  content: "";
  position: absolute;
  border-top-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #003770;
  top: 100%;
  left: 50%;
  z-index: 999;
}
.c-form-modal2__inner .modal_footer {
  position: relative;
  height: 230px;
}
.c-form-modal2__inner .top-btn-box {
  position: absolute;
  right: 5%;
  top: 20%;
  background-color: #dae6f1;
  padding-top: 23px;
  padding-left: 10px;
  padding-right: 10px;
}
.c-form-modal2__inner .top-btn-box .up-mark {
  line-height: 1.2;
  font-size: 12px;
  position: relative;
  display: inline-block;
  color: black;
}
.c-form-modal2__inner .top-btn-box .up-mark::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: solid 2px black;
  border-right: solid 2px black;
  position: absolute;
  transform: rotate(-45deg);
  top: -14px;
  left: 11px;
}
.c-form-modal2__inner .step3_next_box {
  position: relative;
  height: 50px;
  background-color: #dae6f1;
  margin-bottom: 20px;
  display: none;
}
.c-form-modal2__inner .step3_next_box .step3_next {
  position: absolute;
  line-height: 50px;
  width: 100%;
}
@media screen and (max-width: 355px) {
  .c-form-modal2__inner .step3_next_box .step3_next {
    font-size: 12px;
  }
}
.c-form-modal2__inner .step3_next_box .step3_next .next_btn {
  color: #4b84f5;
  border-bottom: 1px solid #4b84f5;
  cursor: pointer;
}
.c-form-modal2__step {
  background-color: #ffffff;
  overflow-y: scroll;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-form-modal2__step .title {
    margin-left: auto !important;
  }
  .c-form-modal2__step {
    background-color: inherit;
  }
}
@media screen and (min-width: 768px) {
  .c-form-modal2__step__contents {
    margin-right: 5px;
  }
}
.c-form-modal2__step__contents .title {
  background-image: none !important;
  background-color: #267dcb;
  color: #ffffff;
  margin-bottom: 0;
  padding: 5px 10px;
  text-align: left;
}
.c-form-modal2__step__contents .title.model-of-maker {
  background-color: #e4e4e4;
  color: #333333;
  margin-bottom: 4px;
}
.c-form-modal2__step__contents .title.back-red {
  background-color: rgba(254, 0, 0, 0.1);
  color: #333333;
  text-align: center;
}
.c-form-modal2__step__contents .sub-title {
  background-color: #CCCCCC;
  margin-bottom: 0;
  padding: 0 10px;
  line-height: 1.6;
  text-align: left;
}
.c-form-modal2__step__contents p {
  border-bottom: 1px solid #e4e4e4;
}
.c-form-modal2__step .m-maker2, .c-form-modal2__step .m-carname2, .c-form-modal2__step .m-distance2, .c-form-modal2__step .m-pref2 {
  position: relative;
  text-align: left;
  margin-bottom: 0;
  padding: 11px 10px;
}
.c-form-modal2__step .m-maker2::after, .c-form-modal2__step .m-carname2::after, .c-form-modal2__step .m-distance2::after, .c-form-modal2__step .m-pref2::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg);
  right: 20px;
  top: 18px;
}
.c-form-modal2__step .select-background {
  background-color: #DAE6F1;
}
.c-form-modal2__step.step1, .c-form-modal2__step.step2, .c-form-modal2__step.step3, .c-form-modal2__step.step4 {
  opacity: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .c-form-modal2__step.step1, .c-form-modal2__step.step2, .c-form-modal2__step.step3, .c-form-modal2__step.step4 {
    height: 100%;
  }
}
.c-form-modal2__step.step1.fade-in, .c-form-modal2__step.step2.fade-in, .c-form-modal2__step.step3.fade-in, .c-form-modal2__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-modal2__step.step1 .step1__inner, .c-form-modal2__step.step2 .c-form-modal2__step__contents, .c-form-modal2__step.step3 .c-form-modal2__step__contents, .c-form-modal2__step.step4 .c-form-modal2__step__contents {
    overflow-y: scroll;
    height: 90%;
    padding-bottom: 10px;
  }
  .c-form-modal2__step.step1 .step1__inner::-webkit-scrollbar, .c-form-modal2__step.step2 .c-form-modal2__step__contents::-webkit-scrollbar, .c-form-modal2__step.step3 .c-form-modal2__step__contents::-webkit-scrollbar, .c-form-modal2__step.step4 .c-form-modal2__step__contents::-webkit-scrollbar {
    width: 10px;
    background-color: #e4e4e4;
    margin-right: 5px;
  }
  .c-form-modal2__step.step1 .step1__inner::-webkit-scrollbar-track, .c-form-modal2__step.step2 .c-form-modal2__step__contents::-webkit-scrollbar-track, .c-form-modal2__step.step3 .c-form-modal2__step__contents::-webkit-scrollbar-track, .c-form-modal2__step.step4 .c-form-modal2__step__contents::-webkit-scrollbar-track {
    border-radius: 5px;
  }
  .c-form-modal2__step.step1 .step1__inner::-webkit-scrollbar-thumb, .c-form-modal2__step.step2 .c-form-modal2__step__contents::-webkit-scrollbar-thumb, .c-form-modal2__step.step3 .c-form-modal2__step__contents::-webkit-scrollbar-thumb, .c-form-modal2__step.step4 .c-form-modal2__step__contents::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
  }
}
.c-form-modal2__step.step1 .step1__inner .select-car-category, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category {
  display: flex;
  justify-content: center;
  padding: 19px 0 24px 0;
}
.c-form-modal2__step.step1 .step1__inner .select-car-category .car-model-box, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category .car-model-box, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category .car-model-box, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category .car-model-box {
  display: flex;
  margin-bottom: 0;
  border: 2px solid #267dcb;
  border-radius: 5px;
  font-size: 16px;
}
.c-form-modal2__step.step1 .step1__inner .select-car-category .car-model-box .car_model, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category .car-model-box .car_model, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category .car-model-box .car_model, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category .car-model-box .car_model {
  padding: 4.8px 50px;
  text-decoration: none;
}
.c-form-modal2__step.step1 .step1__inner .select-car-category .car-model-box .border-left, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category .car-model-box .border-left, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category .car-model-box .border-left, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category .car-model-box .border-left {
  border-left: 2px solid #267dcb;
}
.c-form-modal2__step.step1 .step1__inner .select-car-category .car-model-box .japanese_car, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category .car-model-box .japanese_car, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category .car-model-box .japanese_car, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category .car-model-box .japanese_car {
  background-color: #dfe7ec;
  color: #267dcb;
}
.c-form-modal2__step.step1 .step1__inner .select-car-category .car-model-box .imported_car, .c-form-modal2__step.step2 .c-form-modal2__step__contents .select-car-category .car-model-box .imported_car, .c-form-modal2__step.step3 .c-form-modal2__step__contents .select-car-category .car-model-box .imported_car, .c-form-modal2__step.step4 .c-form-modal2__step__contents .select-car-category .car-model-box .imported_car {
  color: #979797;
}
@media screen and (min-width: 768px) {
  .c-form-modal2__step.step2 .c-form-modal2__step__contents {
    width: calc(100% + 10px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .c-form-modal2__step.step2 .c-form-modal2__step__contents::-webkit-scrollbar {
    display: none;
  }
  .c-form-modal2__step.step2 .c-form-modal2__step__contents::-webkit-scrollbar {
    width: 0px;
  }
}
.c-form-modal2__step.step4 .c-form-modal2__step__contents, .c-form-modal2__step.step3 .c-form-modal2__step__contents {
  margin-right: 0px;
  margin-top: 22px;
}
.c-form-modal2__step.step4 summary {
  background-color: rgba(228, 228, 228, 0.3);
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 0;
  padding: 11px 10px;
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-form-modal2__step.step4 summary {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .c-form-modal2__step.step4 summary {
    font-size: 16px;
  }
}
.c-form-modal2__step.step4 summary::-webkit-details-marker {
  display: none;
}
.c-form-modal2 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-modal2 .m-logo-aldina::before {
  background-image: url("../images/modal_form/aldina.webp");
  background-position: -4px;
  background-size: 37px !important;
}
.c-form-modal2 .m-logo-alfaromeo::before {
  background-image: url("../images/modal_form/alfaromeo.svg");
}
.c-form-modal2 .m-logo-amg::before {
  background-image: url("../images/modal_form/amg.webp");
  background-size: 30px !important;
  background-position: center;
}
.c-form-modal2 .m-logo-audi::before {
  background-image: url("../images/modal_form/audi.webp");
  background-position: -3px;
}
.c-form-modal2 .m-logo-bentley::before {
  background-image: url("../images/modal_form/bentley.svg");
  background-size: 29px !important;
  background-position: 0 8px;
}
.c-form-modal2 .m-logo-benz::before {
  background-image: url("../images/modal_form/benz.webp");
  background-size: 44px !important;
  background-position: -6px -3px;
}
.c-form-modal2 .m-logo-bmw::before {
  background-image: url("../images/modal_form/bmw.svg");
  background-position: 2px 0px;
  background-size: 25px !important;
}
.c-form-modal2 .m-logo-buick::before {
  background-image: url("../images/modal_form/buick.svg");
  background-position: 2px;
}
.c-form-modal2 .m-logo-cadillac::before {
  background-image: url("../images/modal_form/cadillac.svg");
  background-position: 5px 0;
}
.c-form-modal2 .m-logo-chevrolet::before {
  background-image: url("../images/modal_form/chevrolet.webp");
  background-size: 30px !important;
  background-position: -1px -4px;
}
.c-form-modal2 .m-logo-chrysler::before {
  background-image: url("../images/modal_form/chrysler.webp");
  background-size: 36px !important;
  background-position: -3px 8px;
}
.c-form-modal2 .m-logo-citroen::before {
  background-image: url("../images/modal_form/citroen.webp");
  background-position: -4px 2px;
}
.c-form-modal2 .m-logo-daihatsu::before {
  background-image: url("../images/modal_form/daihatsu.webp");
}
.c-form-modal2 .m-logo-dodge::before {
  background-image: url("../images/modal_form/dodge.webp");
  background-position: 1px 8px;
  background-size: 30px !important;
}
.c-form-modal2 .m-logo-ferrari::before {
  background-image: url("../images/modal_form/ferrari.webp");
}
.c-form-modal2 .m-logo-fiat::before {
  background-image: url("../images/modal_form/fiat.svg");
}
.c-form-modal2 .m-logo-ford::before {
  background-image: url("../images/modal_form/ford.webp");
  background-position: 1px 4px;
  background-size: 29px !important;
}
.c-form-modal2 .m-logo-gmc::before {
  background-image: url("../images/modal_form/gmc.webp");
  background-position: 1px 6px;
  background-size: 30px !important;
}
.c-form-modal2 .m-logo-hino::before {
  background-image: url("../images/modal_form/hino.webp");
  background-size: 27px !important;
  background-position: 2px 3px;
}
.c-form-modal2 .m-logo-honda::before {
  background-image: url("../images/modal_form/honda.webp");
}
.c-form-modal2 .m-logo-hummer::before {
  background-image: url("../images/modal_form/hummer.svg");
  background-position: -3px 9px;
}
.c-form-modal2 .m-logo-hyundai::before {
  background-image: url("../images/modal_form/hyundai.svg");
  background-size: 25px !important;
  background-position: 1px 8px;
}
.c-form-modal2 .m-logo-isuzu::before {
  background-image: url("../images/modal_form/isuzu.svg");
  background-size: 33px !important;
  background-position: 0px 9px;
}
.c-form-modal2 .m-logo-jaguar::before {
  background-image: url("../images/modal_form/jaguar.webp");
  background-position: -3px 0;
}
.c-form-modal2 .m-logo-jeep::before {
  background-image: url("../images/modal_form/jeep.svg");
  background-size: 30px !important;
  background-position: 0 6px;
}
.c-form-modal2 .m-logo-lanborghini::before {
  background-image: url("../images/modal_form/lanborghini.webp");
  background-position: -7px -3px;
  background-size: 39px !important;
}
.c-form-modal2 .m-logo-lancia::before {
  background-image: url("../images/modal_form/lancia.webp");
}
.c-form-modal2 .m-logo-landrover::before {
  background-image: url("../images/modal_form/landrover.svg");
  background-size: 27px !important;
  background-position: 0 4px;
}
.c-form-modal2 .m-logo-lexus::before {
  background-image: url("../images/modal_form/lexus.webp");
}
.c-form-modal2 .m-logo-lincoln::before {
  background-image: url("../images/modal_form/lincoln.webp");
  background-position: 4px 0px;
  background-size: 23px !important;
}
.c-form-modal2 .m-logo-lotus::before {
  background-image: url("../images/modal_form/lotus.svg");
}
.c-form-modal2 .m-logo-maserati::before {
  background-image: url("../images/modal_form/maserati.webp");
}
.c-form-modal2 .m-logo-matsuda::before {
  background-image: url("../images/modal_form/matsuda.webp");
}
.c-form-modal2 .m-logo-mitsubishi::before {
  background-image: url("../images/modal_form/mitsubishi.png");
}
.c-form-modal2 .m-logo-mitsuoka::before {
  background-image: url("../images/modal_form/mitsuoka.webp");
}
.c-form-modal2 .m-logo-nissan::before {
  background-image: url("../images/modal_form/nissan.webp");
  background-position: 2px -2px;
}
.c-form-modal2 .m-logo-opel::before {
  background-image: url("../images/modal_form/opel.svg");
  background-size: 40px !important;
  background-position: -6px -4px;
}
.c-form-modal2 .m-logo-peugeot::before {
  background-image: url("../images/modal_form/peugeot.webp");
  background-position: -5px 0;
}
.c-form-modal2 .m-logo-pontiac::before {
  background-image: url("../images/modal_form/pontiac.webp");
  background-size: 113px !important;
  background-position: -43px -4px;
}
.c-form-modal2 .m-logo-porsche::before {
  background-image: url("../images/modal_form/porsche.webp");
  background-size: 43px !important;
  background-position: -7px -3px;
}
.c-form-modal2 .m-logo-renault::before {
  background-image: url("../images/modal_form/renault.webp");
  background-position: -4px 0;
}
.c-form-modal2 .m-logo-rolls::before {
  background-image: url("../images/modal_form/rolls.svg");
  background-position: 7px -1px;
  background-size: 14px !important;
}
.c-form-modal2 .m-logo-rover::before {
  background-image: url("../images/modal_form/rover.webp");
}
.c-form-modal2 .m-logo-smart::before {
  background-image: url("../images/modal_form/smart.svg");
  background-size: 32px !important;
  background-position: 0 6px;
}
.c-form-modal2 .m-logo-saab::before {
  background-image: url("../images/modal_form/saab.svg");
}
.c-form-modal2 .m-logo-subaru::before {
  background-image: url("../images/modal_form/subaru.webp");
}
.c-form-modal2 .m-logo-suzuki::before {
  background-image: url("../images/modal_form/suzuki.png");
}
.c-form-modal2 .m-logo-toyota::before {
  background-image: url("../images/modal_form/toyota.webp");
}
.c-form-modal2 .m-logo-ud::before {
  background-image: url("../images/modal_form/ud.svg");
  background-position: 3px 0;
}
.c-form-modal2 .m-logo-volkswagen::before {
  background-image: url("../images/modal_form/volkswagen.svg");
  background-position: 2px;
}
.c-form-modal2 .m-logo-volvo::before {
  background-image: url("../images/modal_form/volvo.svg");
}
.c-form-modal2 .close_box {
  height: 40px;
}
.c-form-modal2__close, .c-form-modal2 .step3-close-el {
  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-list2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
  padding: 10px 5px;
}
.jp-syllabary-list2 li {
  font-size: 16px;
  width: 23.3%;
  margin: 3px;
  padding: 5px 0;
  border: 1.5px solid #267dcb;
  border-radius: 3px;
  color: #267dcb;
}
.jp-syllabary-list2 li.li-not-active {
  border-color: #a4a4a4;
}
.jp-syllabary-list2 li a {
  text-decoration: none;
}
.jp-syllabary-list2 li a.not-active {
  color: #a4a4a4;
}

.main_consult_wrap .c-form-modal2 {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .main_consult_wrap .c-form-modal2 {
    padding: 10px;
  }
}
.main_consult_wrap .c-form-modal2__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-modal2 p {
    font-size: 13px !important;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .c-form-modal2 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: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .step_form_1_test {
    border: none;
  }
  .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-size: 14px !important;
    font-weight: bold !important;
    margin: 0% !important;
  }
}

.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;
}

.step_form_2_test {
  border: 1px solid #e4e4e4;
}
.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 {
    border: none;
  }
  .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 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-size: 14px !important;
    font-weight: bold !important;
    margin: 0% !important;
  }
}

@media screen and (min-width: 768px) {
  .step-meter {
    display: none !important;
  }
}
.step-meter {
  background-color: #050505;
  opacity: 0.8;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 100;
  width: 100%;
  padding: 20px 10px;
}
.step-meter__contents {
  display: flex;
}
.step-meter__contents .step-meter-text {
  color: #ffffff;
}
.step-meter__contents .step-meter-text p {
  font-size: 15px;
  margin-bottom: 0;
}
.step-meter__contents .step-meter-text p .step-number {
  font-size: 26px;
}
.step-meter__contents .step-meter-box {
  width: 50%;
  margin-left: 10px;
  margin-top: 15px;
}
.step-meter__contents .step-meter-box .step-meter-frame {
  background-color: #fff;
  border: 4px solid #f5a731;
  border-radius: 100vh;
  height: 20px;
  width: 100%;
}
.step-meter__contents .step-meter-box .step-meter-frame .step-meter-bar {
  background-color: #f5a731;
  border-radius: 100vh;
  -webkit-box-shadow: -1px -1px #f5a731;
  box-shadow: -1px -1px #f5a731;
  height: 100%;
  -webkit-transition: width 0.5s linear;
  transition: width 0.5s linear;
}
.step-meter .top-step-text {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.top-step-meter {
  padding: 10px 10px;
}

.form3-new .input-focus {
  border: 2px solid #fe0000 !important;
  animation: focusInput 1.3s ease infinite;
  -webkit-animation: focusInput 1.3s ease infinite;
  -webkit-appearance: none;
}
.form3-new .form2_box_check .submit-disabled {
  pointer-events: none;
  opacity: 0.5;
}

@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;
}
@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 {
    border: 2px solid rgba(38, 125, 203, 0.8) !important;
    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__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 {
  margin-bottom: 0;
  padding: 10px;
  text-align: left;
}
@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 {
  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;
  padding-bottom: 120px;
}
@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%;
    padding-bottom: 0;
  }
}
.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 {
  position: fixed;
  right: 0;
  top: 75px;
  background: #e4e4e4;
  z-index: 9999;
  padding-left: 3px;
}
@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: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .step_form_1_test {
    border: none;
  }
  .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-size: 14px !important;
    font-weight: bold !important;
    margin: 0% !important;
  }
}

.step_form_2_test {
  border: 1px solid #e4e4e4;
}
.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 {
    border: none;
  }
  .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 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-size: 14px !important;
    font-weight: bold !important;
    margin: 0% !important;
  }
}

.c-blue-border {
  letter-spacing: -0.02em;
  position: relative;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .c-blue-border {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.c-blue-border::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  display: inline-block;
  width: 2em;
  height: 3px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #3b84d1;
}
@media screen and (min-width: 768px) {
  .c-blue-border::before {
    height: 5px;
  }
}

.c-mokuji {
  margin-top: 0;
  background-color: #e4e4e4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-mokuji {
    background-color: #ffffff;
    padding: 0;
  }
}
.c-mokuji .l-container {
  padding: 0 5%;
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .c-mokuji .l-container {
    padding: 2% 5%;
    padding-top: 0;
    background-color: #ffffff;
  }
}
.c-mokuji__wrap {
  background-color: #ffffff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .c-mokuji__wrap {
    padding: 0;
    width: 90%;
    margin: auto;
    font-size: 20px;
    font-weight: bold;
  }
}
.c-mokuji__wrap ol.mokuji-list {
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 1rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .c-mokuji__wrap ol.mokuji-list {
    font-size: 16px;
    font-weight: normal;
  }
}
.c-mokuji__wrap ol.mokuji-list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
}
.c-mokuji__wrap ol.mokuji-list ol li {
  border-bottom: none;
}

.page-nation .page-numbers {
  display: inline-block;
  background-color: #e4e4e4;
  padding: 0.5rem 1rem;
  color: #267dcb;
  text-decoration: none;
}
.page-nation .page-numbers.current {
  color: #e4e4e4;
  background-color: #267dcb;
}

.c-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 5px;
  font-size: 93%;
  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;
}

.c-chk-list ul {
  border: solid 2px #3984D1;
  padding: 0.5em 1em 0.5em 2.3em !important;
  position: relative;
}
.c-chk-list ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none !important;
  position: relative;
}
.c-chk-list ul li::before {
  content: url("../images/icon/chk_list.svg");
  position: absolute;
  left: -1.2em;
  color: #3984D1;
  height: 0.8em;
  width: 0.8em;
}

.c-circle-num-list ol {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.5em !important;
  background: #e6f2ff;
  padding-left: 1em !important;
}
.c-circle-num-list ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 1.6em;
}
.c-circle-num-list ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #3984D1;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.author {
  border: 3px solid #e2f1ff;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .author {
    padding: 30px 30px 50px;
  }
}
@media screen and (min-width: 1000px) {
  .author {
    padding: 30px 30px 50px;
    margin-bottom: 50px;
  }
}
.author:last-child {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .author:last-child {
    margin-bottom: 50px;
  }
}
.author__main-visual {
  max-width: 1000px;
  margin: auto;
}
.author__main-visual .d-sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .author__main-visual .d-sp-none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .author__main-visual {
    max-width: 560px;
  }
}
.author__intro {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .author__intro {
    margin-bottom: 50px;
    flex-direction: initial;
  }
}
.author__intro__img {
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .author__intro__img {
    margin: initial;
  }
}
.author__intro__img > img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #e2f1ff;
  max-width: initial;
}
@media screen and (min-width: 768px) {
  .author__intro__img > img {
    width: 200px;
    height: 200px;
  }
}
.author__intro__description {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .author__intro__description {
    font-size: 16px;
    padding-left: 30px;
  }
}
.author__intro__description__name {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .author__intro__description__name {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.author__intro__description__workdetail {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .author__intro__description__workdetail {
    margin-bottom: 30px;
  }
}
.author__intro__description__detail {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .author__intro__description__detail {
    margin-bottom: 30px;
  }
}
.author__intro__description__link {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .author__intro__description__link {
    margin-bottom: 30px;
  }
}
.author__intro__description__list > span {
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .author__intro__description__list > span {
    display: initial;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .author__intro__description__list > a {
    padding-left: 15px;
  }
}
.author__intro-column {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .author__intro-column {
    margin-bottom: 0;
  }
}
.author__articles {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .author__articles {
    font-size: 16px;
  }
}
.author__articles__title {
  margin-bottom: 20px;
}
.author__articles__links {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .author__articles__links {
    padding-left: 15px;
  }
}
.author__articles__links__item {
  display: block;
  position: relative;
  margin-bottom: 25px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .author__articles__links__item {
    margin-bottom: 30px;
  }
}
.author__articles__links__item:last-child {
  margin-bottom: initial;
}
.author__articles__links__item:before {
  content: "";
  background: #000;
  height: 5px;
  width: 5px;
  left: 0;
  position: absolute;
  top: 14px;
  transform: translate(0, -50%);
}

.author-title, .writer__content__title {
  font-size: 20px !important;
  color: #ffffff;
  background: #267dcb;
  text-align: center;
  padding: 10px 30px;
  background-image: url("../images/tt/form_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 40px 0px 30px !important;
  margin-left: auto;
  margin-right: auto;
}
.author-title::before, .writer__content__title::before {
  content: "";
}
@media screen and (min-width: 768px) {
  .author-title, .writer__content__title {
    padding: 20px 30px;
    font-size: 28px !important;
    margin: 50px 0px 30px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.author-description {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .author-description {
    font-size: 16px;
  }
}

.author-container {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .author-container {
    padding: 0 5%;
  }
}
@media screen and (min-width: 1000px) {
  .author-container {
    padding: 0;
  }
}

.author-column {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .author-column {
    margin-top: 50px;
  }
}
.author-column__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .author-column__title {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
  }
}

.writer__content__title {
  line-height: 1.2 !important;
}
.writer__content__sub-title {
  font-size: 18px;
  line-height: 1.4;
  padding: 0.2em;
  padding-left: 1rem;
  background: #e6f2ff;
  border-left: 4px solid #267dcb;
  margin: 30px 0px 20px;
}
.writer__content__sub-title:before {
  height: 0;
}
@media screen and (min-width: 768px) {
  .writer__content__sub-title {
    font-size: 26px;
    margin: 30px 0px;
  }
}
.writer__content p {
  margin: 0px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .writer__content p {
    font-size: 16px;
  }
}
.writer__content__list {
  display: block;
}
.writer__content__list__description {
  margin: 20px 0px !important;
}
.writer__content__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid #e2f1ff;
  border-radius: 3px;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .writer__content__list__item {
    flex-direction: row;
    margin-bottom: 50px;
  }
}
.writer__content__list__item .writer-avatar {
  text-align: center;
}
.writer__content__list__item .writer-avatar__img {
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .writer__content__list__item .writer-avatar__img {
    margin: initial;
  }
}
.writer__content__list__item .writer-avatar__img > img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 2px solid #e2f1ff;
  max-width: initial;
}
@media screen and (min-width: 768px) {
  .writer__content__list__item .writer-avatar__img > img {
    width: 200px;
    height: 200px;
  }
}
.writer__content__list__item .writer-comment {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .writer__content__list__item .writer-comment {
    margin-left: 30px;
    font-size: 16px;
  }
}
.writer__content__list__item .writer-comment__writer-name {
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .writer__content__list__item .writer-comment__writer-name {
    font-size: 20px;
  }
}

.company {
  max-width: 800px !important;
}

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

.page-company__container {
  max-width: 1040px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .page-company__container {
    padding: 0;
  }
}
.page-company__banner {
  width: 100%;
}
.page-company__banner h1 {
  border: none;
  padding: 0;
}
.page-company__banner img {
  width: 100%;
}
.page-company__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  max-width: 1040px;
  margin: 30px auto 0 auto;
}
.page-company__title h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.page-company__title {
  text-align: left;
  color: #267dcb;
}
@media screen and (min-width: 768px) {
  .page-company__title {
    margin-top: 50px;
  }
}
.page-company__title:first-child {
  margin: 0 auto;
}
.page-company__title__line {
  background-color: #cccccc;
  height: 3px;
  display: flex;
  margin-top: 14px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-company__title__line {
    margin-bottom: 30px;
  }
}
.page-company__title__line span {
  background-color: #267dcb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .page-company__title__line span {
    width: 180px;
  }
}
.page-company__union {
  margin: 30px auto;
  text-align: center;
  max-width: 1040px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-company__union {
    margin: 60px auto;
    padding: 0;
  }
}
.page-company__union__text {
  text-align: left;
  font-weight: 500;
  padding-top: 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__union__text {
    text-align: center;
    padding-top: 30px;
    font-size: 16px;
  }
}
.page-company__message_ceo__content {
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__message_ceo__content {
    display: flex;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-company__message_ceo__content__left {
    margin-right: 50px;
  }
}
.page-company__message_ceo__content__right {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-company__message_ceo__content__right {
    margin-top: 0;
    max-width: 383px;
  }
}
.page-company__company {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-company__company {
    padding-top: 60px;
  }
}
.page-company__company table tr {
  border-bottom: solid 1px #bfbfbf;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr {
    display: flex;
    align-items: baseline;
  }
}
.page-company__company table tr .remove-padding {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr .remove-padding {
    padding: 10px 90px 10px 90px;
  }
}
.page-company__company table tr:last-child {
  border-bottom: none;
}
.page-company__company table tr .business_content {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr .business_content {
    margin-top: -90px;
  }
}
.page-company__company table tr th {
  display: block;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  padding: 15px 0 0 0;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr th {
    display: inline-block;
    width: 40%;
    padding: 10px 90px 10px 90px;
  }
}
.page-company__company table tr td {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr td {
    display: inline-block;
    width: 60%;
    margin-bottom: initial;
    font-size: 16px;
    padding: 30px 0;
  }
}
.page-company__company table tr td iframe {
  width: 100%;
  max-height: 300px;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-company__company table tr td iframe {
    margin-top: 30px;
  }
}
.page-company__business_law {
  padding: 0 0 30px;
}
@media screen and (min-width: 768px) {
  .page-company__business_law {
    padding: 30px 0 60px;
  }
}
.page-company__business_law__content {
  letter-spacing: normal;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__business_law__content {
    letter-spacing: unset;
    font-size: 16px;
  }
}
.page-company__alliance_vendor {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__alliance_vendor {
    font-size: 16px;
  }
}
.page-company__alliance_vendor__item {
  display: flex;
  margin-bottom: 1em;
}
.page-company__alliance_vendor__item-title {
  width: 15em;
  flex-shrink: 0;
}
.page-company__alliance_vendor__column-wrapper {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-company__alliance_vendor__column-wrapper {
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-company__alliance_vendor__column {
    flex: 1;
  }
}
.page-company__sdg {
  padding: 14px 0 20px;
}
.page-company__sdg__initiatives {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives {
    display: flex;
  }
}
.page-company__sdg__initiatives__left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives__left {
    margin-right: 40px;
  }
}
.page-company__sdg__initiatives__left img {
  max-width: 371px;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives__left img {
    margin-top: -26px;
  }
}
.page-company__sdg__initiatives__left img {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives__left img {
    max-width: 371px;
    max-height: 146px;
  }
}
.page-company__sdg__initiatives__right__title {
  color: #006ebb;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives__right__title {
    font-size: 20px;
    line-height: 29px;
    text-align: left;
    margin-top: 0;
  }
}
.page-company__sdg__initiatives__right__content {
  letter-spacing: normal;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__initiatives__right__content {
    letter-spacing: unset;
    font-size: 16px;
  }
}
.page-company__sdg__btn {
  width: 300px;
  background: #00366e;
  border-radius: 8px;
  height: 46px;
  margin: 15px auto 0;
  box-shadow: 2px 3px 4px 0px grey;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-company__sdg__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-company__sdg__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
  height: 100%;
  display: block;
}
.page-company__sdg__btn p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.page-company__sdg__btn p img {
  position: absolute;
  right: 14px;
}
.page-company__website {
  padding: 10px 0 30px;
}
@media screen and (min-width: 768px) {
  .page-company__website {
    padding: 30px 0 60px;
  }
}
.page-company__website ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 780px;
  margin: auto;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-company__website ul {
    gap: 5px;
    justify-content: center;
  }
}
.page-company__website ul li {
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .page-company__website ul li {
    padding: 10px;
  }
}
.page-company__website ul li a {
  height: 100%;
}
.page-company__other {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-company__other {
    padding-bottom: 60px;
  }
}
.page-company__other__content {
  display: block;
  color: #267dcb;
}
.page-company__other__content a {
  width: 100%;
  display: block;
  margin: 10px 0;
}
.page-company .media-renew__wrap {
  gap: 4.75vw;
}
@media screen and (min-width: 1200px) {
  .page-company .media-renew__wrap {
    gap: 57px;
  }
}
.page-company .media-renew__wrap__img {
  text-align: center;
}
.page-company .media-renew__wrap__img img {
  width: auto;
  height: auto;
}
.page-company .media-renew__wrap__item {
  width: auto;
}
@media screen and (min-width: 1200px) {
  .page-company .media-renew__wrap__item {
    width: 583px;
  }
}
.page-company .media-renew__wrap__item ul li hr {
  opacity: 0.5;
}
.page-company .change-color {
  color: #333333;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 768px) {
  .page-company .change-color {
    letter-spacing: unset;
  }
}

.company_box_detail {
  width: 100%;
}
.company_box_detail tr {
  border: none;
}
@media screen and (min-width: 768px) {
  .company_box_detail tr {
    border-top: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-left: solid 1px #ccc;
  }
}
.company_box_detail tr:not(:nth-child(1)) {
  border-top: none;
  border-bottom: none;
}
.company_box_detail tr:nth-child(8) {
  display: initial;
  margin: initial;
}
@media screen and (min-width: 768px) {
  .company_box_detail tr:nth-child(8) {
    display: flex;
    margin: -1px -1px -1px 0;
  }
}
.company_box_detail tr:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .company_box_detail tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}
.company_box_detail th {
  display: block;
  text-align: left;
  font-weight: 200;
  color: rgb(57, 133, 208);
}
@media screen and (min-width: 768px) {
  .company_box_detail th {
    display: inline-block;
    width: 20%;
    padding: 10px 20px;
  }
}
.company_box_detail td {
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .company_box_detail td {
    border-left: solid 1px #ccc;
    display: inline-block;
    width: 80%;
    padding: 10px;
    margin-bottom: initial;
  }
}
.company_box_detail td iframe {
  width: 100%;
  max-height: 300px;
}

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

.contact-cta .bnr-contact a {
  padding: 0;
}

.contact {
  background-color: rgb(229, 229, 229);
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 50px 0 0;
  }
}
.contact_box {
  background-color: white;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  border-top: 1px solid rgb(177, 177, 177);
  border-right: 1px solid rgb(177, 177, 177);
  border-left: 1px solid rgb(177, 177, 177);
}
@media screen and (min-width: 768px) {
  .contact_box {
    padding: 30px;
    border: initial;
  }
}
.contact_box_column {
  display: initial;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contact_box_column {
    display: flex;
    justify-content: space-between;
  }
}
.contact_box_column_item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 50%;
}
.contact_box_column_item_box {
  margin-top: 5px;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .contact_box_column_item_box {
    margin-top: initial;
  }
}
.contact_box_column_item_required {
  background-color: rgb(252, 82, 81);
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .contact_box_column_item_required {
    margin-right: 10px;
  }
}
.contact_box_column_item_input {
  height: 35px !important;
  border: none !important;
  background-color: rgb(229, 229, 229) !important;
}
.contact_box_column_item_flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .contact_box_column_item:nth-child(1) {
    padding-right: 20px;
  }
  .contact_box_column_item:nth-child(2) {
    padding-left: 20px;
  }
}
.contact_box_txtarea {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.contact_box_txtarea_item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 100%;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .contact_box_txtarea_item {
    margin-top: initial;
  }
}
.contact_box_txtarea_item div {
  margin-top: 5px;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .contact_box_txtarea_item div {
    margin-top: initial;
  }
}
.contact_box_txtarea_item_required {
  background-color: rgb(252, 82, 81);
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .contact_box_txtarea_item_required {
    margin-right: 10px;
  }
}
.contact_box_txtarea_item_input {
  border: none !important;
  background-color: rgb(229, 229, 229) !important;
}
.contact_box_txtarea_item_flex {
  display: flex;
  justify-content: space-between;
}
.contact_box_img_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact_box_img_pc {
    display: initial;
  }
}
.contact_box_img_sp {
  display: initial;
}
@media screen and (min-width: 768px) {
  .contact_box_img_sp {
    display: none;
  }
}
.contact_box_img_sp img {
  width: 100%;
  margin-top: -14px;
  background-color: #fff;
}
.contact_box_img_description {
  background-color: rgb(250, 222, 221);
  color: rgb(235, 126, 127);
  display: flex;
  justify-content: center;
  padding: 3px 0;
}
@media screen and (min-width: 768px) {
  .contact_box_img_description {
    display: none;
  }
}
.contact_box_img_description_bottom {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact_box_img_description_bottom {
    display: none;
  }
}
.contact_box_description p {
  text-align: left;
  margin: initial;
  color: rgb(135, 135, 135);
  font-size: 11px;
}
.contact_box_direction {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .contact_box_direction {
    flex-direction: column;
  }
}
.contact_privacy {
  background-color: white;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  text-align: left;
  border-left: 1px solid rgb(177, 177, 177);
  border-right: 1px solid rgb(177, 177, 177);
  border-bottom: 1px solid rgb(177, 177, 177);
}
@media screen and (min-width: 768px) {
  .contact_privacy {
    margin-top: 1px;
    text-align: center;
    padding: 30px;
    border-left: initial;
    border-right: initial;
    border-bottom: initial;
  }
}
.contact_privacy_txt {
  color: rgb(135, 135, 135);
  font-size: 11px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .contact_privacy_txt {
    text-align: center;
  }
}
.contact_privacy_btn {
  max-width: initial;
  margin: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact_privacy_btn {
    max-width: 300px;
  }
}

.contact-20seconds {
  display: block;
  background-color: #ffffff;
  padding: 10px 0px 20px 0px;
}
@media screen and (min-width: 768px) {
  .contact-20seconds {
    padding: 20px 0px 30px 0px;
  }
}
.contact-20seconds__banner {
  display: block;
  max-width: 800px;
  margin: auto;
}
.contact-20seconds .sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-20seconds .sp {
    display: none;
  }
}
.contact-20seconds.sp-bg-transparent {
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .contact-20seconds.sp-bg-transparent {
    background-color: #ffffff;
  }
}
.contact-20seconds .pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-20seconds .pc {
    display: block;
  }
}

.js-cta-type-b {
  margin-bottom: -5px;
}
@media screen and (min-width: 768px) {
  .js-cta-type-b {
    margin-bottom: 0;
  }
}
.js-cta-type-b p.txt {
  background-color: inherit !important;
  font-size: 16px !important;
  color: #ffffff !important;
  margin-top: 5px !important;
  margin-bottom: -5px !important;
}
.js-cta-type-b .column-header-contact__wrap {
  align-items: flex-end !important;
  max-height: inherit !important;
  max-width: 490px !important;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .js-cta-type-b .column-header-contact__wrap {
    max-width: 770px !important;
    padding: 0 50px !important;
  }
}
@media screen and (min-width: 1000px) {
  .js-cta-type-b .column-header-contact__wrap {
    max-width: 890px !important;
  }
}
.js-cta-type-b .column-header-contact__wrap::before {
  content: none !important;
}
.js-cta-type-b .column-header-contact__wrap img {
  max-height: inherit !important;
}
@media screen and (min-width: 768px) {
  .js-cta-type-b .column-header-contact__wrap img {
    height: 58px !important;
  }
}
@media screen and (min-width: 1000px) {
  .js-cta-type-b .column-header-contact__wrap img {
    height: 69px !important;
  }
}
.js-cta-type-b .column-header-contact__tel {
  flex: 0 0 59% !important;
}
@media screen and (min-width: 768px) {
  .js-cta-type-b .column-header-contact__tel {
    margin-bottom: 3px !important;
  }
}
@media screen and (min-width: 1000px) {
  .js-cta-type-b .column-header-contact__tel {
    margin-bottom: 4px !important;
  }
}
.js-cta-type-b .column-header-contact__web {
  padding: 0 0 0 2% !important;
}
.js-cta-type-b .column-header-contact__web.off-ours-web img {
  max-height: 50px !important;
  margin-top: 8px !important;
}
.js-cta-type-b .bnr-contact__pc img {
  max-width: 800px;
}
.js-cta-type-b .bnr-contact__pc p {
  font-size: 46px;
}
@media screen and (min-width: 1000px) {
  .js-cta-type-b .bnr-contact__pc p {
    font-size: 55px;
  }
}

@media screen and (min-width: 768px) {
  #tracking_footer .js-cta-type-b .column-header-contact__tel p.free-txt {
    font-size: 30px !important;
    top: 31px !important;
    left: 131px !important;
    width: 263px;
    text-align: center;
  }
}
@media screen and (min-width: 1000px) {
  #tracking_footer .js-cta-type-b .column-header-contact__tel p.free-txt {
    font-size: 36px !important;
    left: 152px !important;
    top: 38px !important;
    width: 314px;
  }
}
@media screen and (min-width: 768px) {
  #tracking_footer .js-cta-type-b .column-header-contact__tel p.free-txt:after {
    font-size: 16px !important;
    font-weight: bold !important;
  }
}
@media screen and (min-width: 1000px) {
  #tracking_footer .js-cta-type-b .column-header-contact__tel p.free-txt:after {
    font-size: 18px !important;
  }
}

.document_header {
  background-image: url("../images/tt/bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.document_header .document_intro_text1 {
  font-size: 16px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .document_header .document_intro_text1 {
    font-size: 30px;
  }
}
.document_header .document_intro_text2 {
  display: inline-block;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .document_header .document_intro_text2 {
    font-size: 40px;
  }
}
.document_header p.document_thankyou {
  margin-top: 17%;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  .document_header p.document_thankyou br {
    display: none;
  }
}
.document_header p.document_pleasewait {
  margin-bottom: 14%;
}
.document_header .document_continue {
  margin-bottom: 17%;
}
.document_header .document_onayami_list_wrapper .document_onayami_list {
  background-color: #ffffff;
  border-radius: 5px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  position: relative;
  padding: 1rem 1rem 0.5rem 1rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .document_header .document_onayami_list_wrapper .document_onayami_list {
    padding: 1rem;
  }
}
.document_header .document_onayami_list_wrapper .document_onayami_list::before {
  content: "こんなお悩みが解決できます！";
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 15px;
  border-radius: 5px;
  background-color: #e6f2ff;
  color: #267dcb;
  width: fit-content;
  min-width: 238px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .document_header .document_onayami_list_wrapper .document_onayami_list {
    font-size: 16px;
    min-width: 615px;
    max-width: 80%;
    text-align: center;
  }
}
.document_header .document_onayami_list_wrapper .document_onayami_list li {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .document_header .document_onayami_list_wrapper .document_onayami_list li {
    width: auto;
  }
}
.document_header .document_onayami_list_wrapper .document_onayami_list li .document_onayami_list_item::before {
  content: "・";
}
@media screen and (min-width: 768px) {
  .document_header .document_onayami_list_wrapper .document_onayami_list li .document_onayami_list_item::before {
    content: "";
    display: inline-block;
    background: black;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    vertical-align: initial;
  }
}
.document_header .document_img_header {
  height: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  position: relative;
}
.document_header .document_img_header .document_img_appeerance {
  height: auto;
  position: absolute;
}
.document_header .document_img_header .document_img_bubble {
  position: absolute;
  right: 0;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .document_header .document_img_header .document_img_bubble {
    right: 0;
    width: 6rem;
  }
}

.document_img_sodan {
  width: 15rem;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .document_img_sodan {
    width: 25rem;
  }
}

.bnr-contact__sp a {
  padding: 0 1rem 1rem;
}

.document_content {
  background-color: #e4e4e4;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .document_content .bnr-contact {
    margin-bottom: 20px;
  }
}
.document_content .bnr-contact__pc img {
  max-width: 800px;
}
.document_content .bnr-contact__pc p {
  font-size: 48px;
  left: 24.5vw;
}
@media screen and (min-width: 1000px) {
  .document_content .bnr-contact__pc p {
    left: 30%;
  }
}
.document_content .document_form_wrapper {
  background-color: #ffffff;
  width: 797px;
  max-width: 90%;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper {
    margin-bottom: 0;
    padding: 0;
  }
}
.document_content .document_form_wrapper .document_form {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;
  gap: 10px;
}
.document_content .document_form_wrapper .document_form select,
.document_content .document_form_wrapper .document_form input {
  width: 100%;
  background-color: #e4e4e4;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .document_form select,
  .document_content .document_form_wrapper .document_form input {
    font-size: 14px;
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .document_form {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 35px;
    gap: 10px;
  }
}
.document_content .document_form_wrapper .document_form li label[for] {
  display: block;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .document_form li label[for] {
    width: 90%;
  }
}
.document_content .document_form_wrapper .document_form li label[for] span {
  display: none;
}
.document_content .document_form_wrapper .document_form li label[for] .invalid_name {
  display: inline;
  margin-left: 2.5vw;
  color: red;
  font-weight: bold;
  position: absolute;
  right: 0;
}
.document_content .document_form_wrapper .document_form li label[for] .invalid_tel {
  display: inline;
  margin-left: 6.5vw;
  color: red;
  font-weight: bold;
  position: absolute;
  right: 0;
}
.document_content .document_form_wrapper .document_form li label[for] .invalid_zip {
  display: inline;
  margin-left: 6.5vw;
  color: red;
  font-weight: bold;
  position: absolute;
  right: 0;
}
.document_content .document_form_wrapper .document_form li label[for] img {
  width: 2.4rem;
  height: auto;
  margin-right: 3px;
}
.document_content .document_form_wrapper .document_form li input.error-form {
  background-color: rgba(254, 0, 0, 0.2);
  border: 2px solid #fe0000;
}
.document_content .document_form_wrapper .document_form input::placeholder {
  color: #696969;
}
.document_content .document_form_wrapper .document_form input[type=number]::-webkit-outer-spin-button,
.document_content .document_form_wrapper .document_form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.document_content .document_form_wrapper .document_form input[type=number] {
  -moz-appearance: textfield;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper div.document_personal_info {
    margin-left: 35px;
  }
}
.document_content .document_form_wrapper div.document_personal_info label > input {
  display: inline-block;
}
.document_content .document_form_wrapper .c-button__link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .c-button__link {
    width: 50%;
  }
}
.document_content .document_form_wrapper hr {
  height: 2px;
  background-color: #e4e4e4;
  border: none;
  margin-bottom: 0px;
}
.document_content .document_form_wrapper .document_form_button {
  text-align: center;
  padding-bottom: 5%;
  padding-top: 5%;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .document_form_button {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.document_content .document_form_wrapper .document_form_button button {
  cursor: pointer;
  width: auto;
  height: auto;
  outline: none;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  overflow: visible;
}
.document_content .document_form_wrapper .document_form_button button img {
  min-width: 100px;
}
@media screen and (min-width: 768px) {
  .document_content .document_form_wrapper .document_form_button button img {
    width: 50%;
  }
}

.page-faq .faq-header {
  margin-bottom: initial;
}
.page-faq .ad .bnr-contact {
  margin-top: 20px;
}
.page-faq .ad .bnr-contact .l-container {
  padding: 0;
}
.page-faq .ad .bnr-contact .l-container a {
  padding: 0;
}
.page-faq .ad .bnr-contact .l-container a p {
  color: #fc5251;
}
@media screen and (min-width: 768px) {
  .page-faq .ad .bnr-contact .l-container a p {
    left: 11%;
    font-size: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .page-faq .ad .bnr-contact .l-container a p {
    left: 12%;
    margin-top: 0px;
  }
}
.page-faq .ad .bnr-contact .l-container a p::after {
  content: "";
  font-size: 0;
  margin-left: 0;
}
.page-faq .ad {
  background-color: #fff;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .page-faq .ad {
    padding: 20px 0;
  }
}
.page-faq .ad_box {
  background-color: white;
  max-width: 800px;
  margin: auto;
  font-size: 14px !important;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-faq .ad_box {
    padding: 30px;
    font-size: 16px !important;
  }
}
.page-faq .ad_box_content {
  text-align: initial;
}
@media screen and (min-width: 768px) {
  .page-faq .ad_box_content {
    text-align: center;
  }
}
.page-faq .ad_box_content p {
  margin: initial;
  font-size: 14px !important;
}
@media screen and (min-width: 768px) {
  .page-faq .ad_box_content p {
    font-size: 16px !important;
  }
}
.page-faq .ad_box_img_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-faq .ad_box_img_pc {
    display: initial;
  }
}
.page-faq .ad_box_img_sp {
  display: initial;
}
@media screen and (min-width: 768px) {
  .page-faq .ad_box_img_sp {
    display: none;
  }
}
.page-faq {
  padding: 0;
}
.page-faq .faq {
  max-width: 1040px;
  text-align: center;
  font-family: "Noto Sans";
  padding: 0;
}
.page-faq .faq__banner {
  width: 100%;
}
.page-faq .faq__banner h1 {
  border: none;
  padding: 0;
}
.page-faq .faq__banner img {
  width: 100%;
}
.page-faq .faq__nav {
  display: block;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__nav {
    display: flex;
    gap: 30px;
  }
}
.page-faq .faq__nav a {
  color: #fff;
  cursor: pointer;
}
.page-faq .faq__nav a img {
  margin-bottom: 20px;
}
.page-faq .faq__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 30px;
}
.page-faq .faq__title h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.page-faq .faq__title {
  text-align: left;
  color: #267dcb;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__title {
    margin-top: 60px;
  }
}
.page-faq .faq__title:first-child {
  margin-top: 0;
}
.page-faq .faq__title__line {
  background-color: #cccccc;
  height: 3px;
  display: flex;
  margin-top: 14px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__title__line {
    margin-bottom: 30px;
  }
}
.page-faq .faq__title__line span {
  background-color: #267dcb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__title__line span {
    width: 180px;
  }
}
.page-faq .faq__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__container {
    padding: 40px 20px 0 20px;
  }
}
.page-faq .faq__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__header {
    width: 568px;
    margin-bottom: 36px;
  }
}
.page-faq .faq__header h2 {
  margin: 0;
}
.page-faq .faq__header h2 img {
  width: auto;
  height: auto;
}
.page-faq .faq__group {
  border: 1px solid #bfbfbf;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group:not(:first-child) {
    margin-top: 20px;
  }
}
.page-faq .faq__group__box-question {
  display: flex;
  justify-content: space-between;
  padding: 15.5px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-question {
    margin: auto 30px;
  }
}
.page-faq .faq__group__box-question {
  cursor: pointer;
}
.page-faq .faq__group__box-question__content {
  display: flex;
}
.page-faq .faq__group__box-question__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-question__content img {
    margin-right: 15px;
    width: 32px;
    height: 32px;
  }
}
.page-faq .faq__group__box-question__content__icon-add {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-question__content__icon-add {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-faq .faq__group__box-question__content__icon-sub {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-question__content__icon-sub {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-faq .faq__group__box-question__content h3 {
  margin: 0;
  font-size: unset;
  text-align: left;
}
.page-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) {
  .page-faq .faq__group__box-question__content p {
    font-size: 18px;
    padding-top: 5px;
    line-height: 24px;
  }
}
.page-faq .faq__group__box-question__content__icon-sub {
  display: none;
}
.page-faq .faq__group__box-answer {
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer {
    margin: auto 30px;
  }
}
.page-faq .faq__group__box-answer__content {
  display: flex;
}
.page-faq .faq__group__box-answer__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content img {
    margin-right: 15px;
    width: 32px;
    height: 32px;
  }
}
.page-faq .faq__group__box-answer__content div {
  color: #333333;
  line-height: normal;
  font-style: normal;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content div {
    font-size: 16px;
    margin: 0;
  }
}
.page-faq .faq__group__box-answer__content div ul {
  list-style: disc;
  padding: 0 0 0 20px;
}
.page-faq .faq__group__box-answer__content div ul li::marker {
  font-size: 14px;
}
.page-faq .faq__group__box-answer__content__text-nagare {
  border: 1px solid #333333;
  padding: 15px 0 15px 15px;
  margin: 10px auto 10px !important;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare {
    padding: 20px;
    margin: 15px auto 15px !important;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__first {
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 118px;
  width: 100%;
  margin-bottom: 15px !important;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__first {
    margin-bottom: 9px;
    max-width: 132px;
    padding: 4px 0;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__first h4 {
  padding: 0;
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__first h4 {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__second {
  display: flex;
  margin-bottom: 15px !important;
  gap: 30px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__second {
    margin-bottom: 12px !important;
  }
}
@media screen and (min-width: 1200px) {
  .page-faq .faq__group__box-answer__content__text-nagare__second {
    gap: 74px;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1 p, .page-faq .faq__group__box-answer__content__text-nagare__second-child2 p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__second-child1 p, .page-faq .faq__group__box-answer__content__text-nagare__second-child2 p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 21.79px;
    margin: 15px auto 10px;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1__href, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__second-child1__href, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1__href ul, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href ul {
  list-style: disc;
  padding: 0 0 0 24px;
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1__href ul li::marker, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href ul li::marker {
  font-size: 14px;
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1__href a, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href a {
  color: #333333;
}
.page-faq .faq__group__box-answer__content__text-nagare__second-child1__href .href-second, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href .href-second {
  margin: 6px auto;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__second-child1__href .href-second, .page-faq .faq__group__box-answer__content__text-nagare__second-child2__href .href-second {
    margin: 6px auto;
  }
}
.page-faq .faq__group__box-answer__content__text-nagare__note {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 14.98px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-faq .faq__group__box-answer__content__text-nagare__note {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-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) {
  .page-faq .faq__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-faq .faq__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.page-faq .faq__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.page-faq .faq__btn p img {
  float: right;
  margin-right: 20px;
}

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

.ad .bnr-contact .l-container {
  padding: 0;
}
.ad .bnr-contact .l-container a {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .ad .bnr-contact .l-container a p {
    left: 25%;
    font-size: 47px;
  }
}
@media screen and (min-width: 1000px) {
  .ad .bnr-contact .l-container a p {
    font-size: 50px;
  }
}
.ad {
  background-color: rgb(229, 229, 229);
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .ad {
    padding: 20px 0;
  }
}
.ad_box {
  background-color: white;
  max-width: 800px;
  margin: auto;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .ad_box {
    padding: 30px;
  }
}
.ad_box_content {
  text-align: initial;
}
@media screen and (min-width: 768px) {
  .ad_box_content {
    text-align: center;
  }
}
.ad_box_content p {
  margin: initial;
}
.ad_box_img_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .ad_box_img_pc {
    display: initial;
  }
}
.ad_box_img_sp {
  display: initial;
}
@media screen and (min-width: 768px) {
  .ad_box_img_sp {
    display: none;
  }
}

.faq-nav {
  padding: 20px;
  background-color: #e5e5e5;
}
@media screen and (min-width: 768px) {
  .faq-nav {
    padding: initial;
    background-color: initial;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
  }
}
.faq-nav_box {
  margin: auto;
  background-color: white;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .faq-nav_box {
    max-width: 980px !important;
    display: flex;
    justify-content: center;
    padding: 0 10px;
  }
}
.faq-nav_box_item {
  margin: auto;
  flex-basis: 25%;
}
@media screen and (min-width: 768px) {
  .faq-nav_box_item {
    padding: 10px 0;
    text-align: center;
    border-left: 1px solid #e4e4e4;
  }
}
@media screen and (min-width: 768px) {
  .faq-nav_box_item:last-child {
    border-right: 1px solid #e4e4e4;
  }
}
.faq-nav_box_item a {
  color: #333333;
  padding: 2px 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq-nav_box_item a {
    color: initial;
    text-decoration: none;
    padding: 0;
  }
}

.faq {
  background-color: #ffffff;
}
.faq h2:not(:first-child) {
  padding-top: 20px;
}
.faq .c-button__blue2 {
  letter-spacing: -0.01em;
}
.faq_box {
  font-size: 15px;
  border: 1px solid #e4e4e4;
  max-width: 900px;
  margin: auto;
}
.faq_box_details {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .faq_box_details {
    padding: 18px 14px 12px;
  }
}
.faq_box_details:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.faq_box_summary {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 58px;
  outline: none;
}
.faq_box_summary::-webkit-details-marker {
  display: none;
}
.faq_box_summary_img {
  margin-left: 8px;
  width: 22px;
}
.faq_box_summary_txt {
  width: 75%;
  text-align: left;
  color: initial;
  font-weight: 100;
  font-size: 15px;
  position: absolute;
  top: 50%;
  line-height: 1.4;
  left: 45px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .faq_box_summary_txt {
    margin-right: initial;
    font-size: 16px;
  }
}
.faq_box_summary_txt::before {
  content: "";
  position: initial;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 0;
  height: 0;
  background-color: initial;
}
.faq_box_detail {
  display: flex;
  padding: 7px 0 0 8px;
  line-height: 1.5;
  margin-top: 10px;
  border-top: 2px dotted #e4e4e4;
}
@media screen and (min-width: 768px) {
  .faq_box_detail {
    font-size: 14px;
    padding: 20px 0 6px 8px;
  }
}
.faq_box_detail_img {
  width: 24px;
  height: 24px;
}
.faq_box_detail_txt {
  color: initial;
  margin: initial;
  margin-left: 20px;
}
.faq_box_detail:not(:last-child) {
  border-top: 2px dotted #e4e4e4;
}
.faq_box details[open] summary {
  transition: all 100ms ease;
}
.faq_box details[open]::after {
  transform: rotate(180deg);
}

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

.feedback-content {
  background-color: rgb(229, 229, 229);
  text-align: left;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .feedback-content {
    padding: 20px;
    text-align: center;
  }
}
.feedback-content_box {
  background-color: white;
  max-width: 900px;
  margin: auto;
  display: block;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .feedback-content_box {
    padding: 20px;
    text-align: center;
  }
}
.feedback-content_box p {
  margin: initial;
}
.feedback-content_box p:nth-child(1) {
  margin-bottom: 15px;
}
.feedback-content_box p:nth-child(2) {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .feedback-content_box p:nth-child(1) {
    margin-bottom: 0;
  }
  .feedback-content_box p:nth-child(2) {
    margin-bottom: 0;
  }
}
.feedback-content_box_txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .feedback-content_box_txt {
    font-size: 14px;
    flex-direction: row;
  }
}
.feedback-content_box_txt_p {
  margin-bottom: initial !important;
}
@media screen and (min-width: 768px) {
  .feedback-content_box_txt_p {
    margin-bottom: 15px;
  }
}
.feedback-content__feedback-banner-contact div.bnr-contact {
  background: #e4e4e4;
}

.feedback {
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .feedback {
    padding: 20px 0;
  }
}
.feedback_box {
  background-color: white;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  display: block;
  border: 1px solid rgb(229, 229, 229);
}
@media screen and (min-width: 768px) {
  .feedback_box {
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
}
.feedback_box_item {
  width: 100%;
}
.feedback_box_column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feedback_box_column {
    width: 50%;
  }
}
.feedback_box_column_item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 100%;
}
.feedback_box_column_item_box {
  margin-top: 5px;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .feedback_box_column_item_box {
    margin-top: initial;
  }
}
.feedback_box_column_item_required {
  background-color: rgb(252, 82, 81);
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .feedback_box_column_item_required {
    margin-right: 10px;
  }
}
.feedback_box_column_item_optional {
  background-color: rgb(0, 55, 112);
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 10px;
}
.feedback_box_column_item_input {
  height: 35px !important;
  border: none !important;
  background-color: rgb(229, 229, 229) !important;
}
.feedback_box_column_item_input option:nth-child(1) {
  color: rgb(134, 134, 134);
}
.feedback_box_column_item_flex {
  display: flex;
  justify-content: space-between;
}
.feedback_box_column_item:nth-child(2) {
  margin-top: 10px;
}
.feedback_box_column_item:nth-child(3) {
  margin-top: 10px;
}
.feedback_box_txtarea {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.feedback_box_txtarea_item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 100%;
  margin-top: initial;
}
@media screen and (min-width: 768px) {
  .feedback_box_txtarea_item {
    margin-top: 15px;
  }
}
.feedback_box_txtarea_item div {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .feedback_box_txtarea_item div {
    margin-top: initial;
  }
}
.feedback_box_txtarea_item_required {
  background-color: rgb(252, 82, 81);
  padding: 3px 10px;
  border-radius: 10px;
  color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .feedback_box_txtarea_item_required {
    margin-right: 10px;
  }
}
.feedback_box_txtarea_item_input {
  border: none !important;
  background-color: rgb(229, 229, 229) !important;
}
.feedback_box_txtarea_item_flex {
  display: flex;
  justify-content: space-between;
}
.feedback_box_btn {
  max-width: initial;
  margin: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .feedback_box_btn {
    max-width: 300px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer .bnr-contact,
  .form2-wrap .bnr-contact,
  .page-form .bnr-contact {
    background-color: #e4e4e4;
  }
}
.l-footer .bnr-contact .l-container,
.form2-wrap .bnr-contact .l-container,
.page-form .bnr-contact .l-container {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-footer .bnr-contact .l-container,
  .form2-wrap .bnr-contact .l-container,
  .page-form .bnr-contact .l-container {
    padding: 0 5%;
  }
}
.l-footer .bnr-contact__pc,
.form2-wrap .bnr-contact__pc,
.page-form .bnr-contact__pc {
  padding-top: 0;
  padding-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .l-footer .bnr-contact__pc,
  .form2-wrap .bnr-contact__pc,
  .page-form .bnr-contact__pc {
    padding-bottom: 30px !important;
  }
}
.l-footer .bnr-contact__pc img,
.form2-wrap .bnr-contact__pc img,
.page-form .bnr-contact__pc img {
  max-width: 800px !important;
}
.l-footer .bnr-contact__pc p,
.form2-wrap .bnr-contact__pc p,
.page-form .bnr-contact__pc p {
  top: 30%;
}
@media screen and (min-width: 1000px) {
  .l-footer .bnr-contact__pc p,
  .form2-wrap .bnr-contact__pc p,
  .page-form .bnr-contact__pc p {
    top: 35%;
    left: 28%;
    font-size: 55px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer .form-col2 {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .form-col2 .bnr-contact {
    margin-top: 15px;
  }
}

.form-col2 {
  padding-top: 10px;
}
.form-col2 .unsetPosition {
  position: unset !important;
}

.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;
}
.form-col2__title img:first-child {
  width: 38%;
  margin-bottom: 0.5rem;
}
.form-col2__title img:nth-of-type(2) {
  width: 80%;
  margin-bottom: 15px;
}
.form-col2 .form-submit {
  width: 90%;
}
.form-col2 .form2-title-norika {
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 380px) {
  .form-col2 .form2-title-norika {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 340px) {
  .form-col2 .form2-title-norika {
    margin-bottom: 40px;
  }
}
.form-col2 .form2-title-norika img:first-child {
  width: 60%;
  margin: 0;
}
.form-col2 .form2-title-norika img:last-child {
  position: absolute;
  width: 130px;
  right: 0;
  top: 0;
}
@media screen and (min-width: 530px) {
  .form-col2 .form2-title-norika img:last-child {
    top: 14px;
  }
}
@media screen and (min-width: 550px) {
  .form-col2 .form2-title-norika img:last-child {
    top: 0;
  }
}

.form-describe {
  background-color: #e4e4e4 !important;
  padding: 10px 0 0 !important;
  margin-bottom: -20px;
}
@media screen and (min-width: 768px) {
  .form-describe {
    background-color: #e6f2ff !important;
  }
}
.form-describe .l-container {
  max-width: 1042px !important;
  width: 100% !important;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .form-describe .l-container {
    padding: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .form-describe .l-container {
    padding: 0 !important;
  }
}
.form-describe .l-container .diagonal-bar {
  position: relative;
  color: #267dcb;
}
.form-describe .l-container .diagonal-bar::before {
  content: "|";
  position: absolute;
  height: 10px;
  width: 25px;
  rotate: -30deg;
  left: -25%;
}
.form-describe .l-container .diagonal-bar::after {
  content: "|";
  position: absolute;
  height: 25px;
  width: 20px;
  rotate: 30deg;
}
.form-describe .l-container .blue-ellipse {
  background-color: #006EBB;
  border-radius: 31.02px;
  font-size: 12.5px;
  color: #ffffff;
  margin: 0 auto;
  font-family: NotoSans;
  width: 160px;
}
@media screen and (min-width: 768px) {
  .form-describe .l-container .blue-ellipse {
    width: 18%;
  }
}
@media screen and (min-width: 1000px) {
  .form-describe .l-container .blue-ellipse {
    width: 160px;
  }
}
.form-describe .l-container .title {
  font-family: NotoSans;
  font-weight: 700;
  color: #267dcb;
  margin-bottom: 0;
}
.form-describe .l-container p {
  color: #006EBB;
  margin-bottom: 0;
}

.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;
}
@media screen and (min-width: 768px) {
  .form2_box {
    border: 1px solid #e4e4e4;
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
}
.form2_box label {
  font-size: 12px;
}
.form2_box_item {
  flex-basis: 49%;
}
.form2_box_item_title {
  color: #fff;
  padding: 2px;
  background-image: url("../images/tt/form_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.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.ab-email {
  display: none;
}
.form2_box_column_item {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-basis: 50%;
}
.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: rgb(252, 82, 81);
}
.form2_box_column_item_optional {
  background-color: rgb(0, 55, 112);
}
.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: rgb(229, 229, 229);
  height: 40px;
  border: none;
  border: 2px solid rgba(38, 125, 203, 0.8);
}
.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_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: rgb(250, 222, 221);
  color: rgb(235, 126, 127);
  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: 20px 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;
  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;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.form-submit input {
  background: #fde44d;
  border: none;
  border-bottom: 5px solid #f8dc4d;
  width: 100%;
  padding: 10px 8px 7px 8px;
  font-size: 16px;
  border-radius: 3px;
  color: #333333;
}
@media screen and (min-width: 1000px) {
  .form-submit input {
    padding: 10px 10px 7px 10px;
    font-size: 18px;
  }
}
.form-submit.focused {
  border-radius: 5px;
}

.hajimete h3 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .hajimete h3 {
    font-size: 26px;
  }
}
.hajimete .hajimete_intro_pics {
  margin: 10% auto;
}
.hajimete .hajimete_intro_pics img {
  margin: auto;
  display: block;
}
.hajimete {
  /* ハイシャルをご紹介
  ------------------------------------*/
}
.hajimete__head h2::before {
  bottom: -15px;
}
.hajimete__head h2 img:first-child {
  display: block;
  margin: auto;
  height: 28px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .hajimete__head h2 img:first-child {
    height: 45px;
  }
}
.hajimete .hajimete_top {
  max-width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_top {
    position: relative;
    height: 494px;
    max-width: 800px !important;
    margin: auto;
    margin-bottom: 30px;
  }
}
.hajimete .hajimete_top .hajimete_intro_callcentre {
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_top .hajimete_intro_callcentre {
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    max-width: 660px;
  }
}
.hajimete .hajimete_top .hajimete_intro {
  position: relative;
  z-index: 2;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_top .hajimete_intro {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95%;
  }
}
.hajimete .hajimete_top .hajimete_intro .hajimete_intro_text {
  padding: 1rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_top .hajimete_intro .hajimete_intro_text {
    margin-bottom: 0;
    padding: 1rem 2rem;
  }
}
.hajimete .hajimete_top .hajimete_intro .hajimete_intro_text .hajimete_intro_example {
  background: #ffffff;
  position: relative;
  padding: 1rem;
  border-radius: 2px;
  margin: 30px auto 20px;
}
.hajimete .hajimete_top .hajimete_intro .hajimete_intro_text .hajimete_intro_example:before {
  content: "お客様に多いお悩み";
  position: absolute;
  top: -1rem;
  left: 20%;
  color: #ffffff;
  background: #267dcb;
  padding: 0 0.6rem;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_top .hajimete_intro .hajimete_intro_text .hajimete_intro_example:before {
    left: 38%;
  }
}
.hajimete .hajimete_container {
  background-color: #e4e4e4;
}
.hajimete .hajimete_container .hajimete_container_title {
  text-align: center;
}
.hajimete .hajimete_container .hajimete_container_title .hajimete_container_title_text {
  background-color: #2ba4a0;
  color: #ffffff;
  width: 110px;
  margin: 0 auto 10px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_container_title .hajimete_question {
    width: 300px;
  }
}
.hajimete .hajimete_container .hajimete_container_title .hajimete_question {
  width: 250px;
}
.hajimete .hajimete_container .hajimete_content_wrap {
  background: #ffffff;
  padding: 15px 15px 20px;
  margin-bottom: 20px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap {
    padding: 0.5rem 2rem;
    display: flex;
    flex-flow: row;
    align-items: flex-start;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title {
  padding-left: 14px;
  display: flex;
  flex-flow: column;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title span {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title span {
    font-size: 14px;
    margin-top: 0;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title .hajimete_column_num {
  width: fit-content;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title .hajimete_question_title {
  text-align: left;
  display: inline-block;
  color: #267dcb;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_content1 .hajimete_column_title .hajimete_question_title {
    display: inline-block;
    color: #267dcb;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_content2 {
  padding: 0.5rem;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2 {
  height: fit-content;
  min-width: 15rem;
  padding: 0.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2 {
    margin: auto;
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2.hutan {
    min-width: 90px;
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2.recycle {
    min-width: 280px;
    margin-right: -25px;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2_5 {
  height: fit-content;
  padding: 0.5rem;
  width: 65vw;
  max-width: 400px;
  margin: auto;
  margin-right: -20px;
  position: relative;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2_5 span {
  position: absolute;
  bottom: 14%;
  left: 20px;
  font-size: 2vw;
  color: #e65c5c;
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2_5 span {
    font-size: 32px;
    bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_responsive2_5 span {
    font-size: 36px;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_pic_sp {
  width: 90px;
  float: right;
  margin-left: 3px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_pic_pc {
  min-width: 75px;
  max-width: 75px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list {
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:nth-child(odd) {
    border-left: none;
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:nth-child(even) {
    border-right: none !important;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item {
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 10px 0;
  border: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  min-height: 150px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item {
    border: 1px solid #e4e4e4;
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:nth-of-type(odd) {
    padding-right: 10px;
  }
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:nth-of-type(even) {
    padding-left: 10px;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item:last-child {
    border: 1px solid #e4e4e4;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text {
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text {
    flex-basis: 60%;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .hajimete_flow_item_title {
  display: flex;
  align-items: center;
  flex-flow: row;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .hajimete_flow_item_title {
    flex-flow: column;
    align-items: normal;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .hajimete_flow_item_title .step {
  background-color: #333333;
  color: #ffffff;
  border-radius: 3px;
  width: fit-content;
  height: 50%;
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .hajimete_flow_item_title .item_title {
  margin-left: 5px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .hajimete_flow_item_title .item_title {
    font-size: 18px;
    margin-left: 0;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .responsive_sp {
  display: flex;
  flex-flow: row;
  padding-top: 10px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .responsive_sp .responsive_sp_text {
  font-size: 14px;
  line-height: 1.4;
  flex-basis: 50%;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .responsive_sp .responsive_sp_text {
    flex-basis: 100%;
  }
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .hajimete_flow_item_text .responsive_sp .responsive_sp_img {
  flex-basis: 50%;
  padding-left: 0.5rem;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_flow_list .hajimete_flow_item .responsive_pc_img {
  width: 270px;
  max-width: 165px;
  padding-left: 10px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #fb5154;
  padding: 10px;
  line-height: 15px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box .phoneicon {
  max-width: 20px;
  margin-right: 10px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box .bubble {
  max-width: 92px;
  margin-left: 10px;
}
.hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box .call_box {
  color: #fb5154;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box .call_box {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .hajimete .hajimete_container .hajimete_content_wrap .hajimete_call_box {
    display: none;
  }
}

.page-hajimete .banner-hajimete1 {
  background-image: url("../images/hajimete/header/bg-hajimete.svg");
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 28px 0 38px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .banner-hajimete1 {
    padding: 22px 0 34px;
  }
}
.page-hajimete .banner-hajimete1__title h1 {
  padding: 0;
  margin: 0;
  border: none;
  text-align: center;
}
.page-hajimete .banner-hajimete1__arrow {
  position: absolute;
  top: 80.5%;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .banner-hajimete1__arrow {
    top: 80%;
  }
}
.page-hajimete .banner-hajimete2__container {
  position: relative;
  max-width: 1040px;
  margin: 69px 20px 30px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .banner-hajimete2__container {
    margin: 111.5px 20px 60px;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .banner-hajimete2__container {
    margin: 111.5px auto 60px;
  }
}
.page-hajimete .banner-hajimete2__banner {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .banner-hajimete2__banner {
    margin-bottom: 30px;
  }
}
.page-hajimete .banner-hajimete2__text {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 20.72px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .banner-hajimete2__text {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 23.68px;
    text-align: center;
  }
}
.page-hajimete .solve-hajimete__container {
  position: relative;
  max-width: 800px;
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__container {
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .solve-hajimete__container {
    margin: 0 auto;
    padding: 0;
  }
}
.page-hajimete .solve-hajimete__title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__title {
    margin-bottom: 30px;
  }
}
.page-hajimete .solve-hajimete__title h2 {
  margin: 0;
}
.page-hajimete .solve-hajimete__box-item {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__box-item {
    margin-bottom: 60px;
  }
}
.page-hajimete .solve-hajimete__chat-container {
  display: flex;
  align-items: center;
  border-radius: 10px;
  gap: 23px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__chat-container {
    gap: 41px;
    margin-bottom: 30px;
  }
}
.page-hajimete .solve-hajimete__chat-container__chat-bubble {
  background-color: #e6f3ff;
  border-radius: 10px;
  position: relative;
  color: #267DCB;
  display: flex;
  height: 62px;
  padding: 10px 13px 10px 15px;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__chat-container__chat-bubble {
    height: 109px;
    padding: 38px 26px;
  }
}
.page-hajimete .solve-hajimete__chat-container__chat-bubble h3 {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__chat-container__chat-bubble h3 {
    font-size: 24.57px;
    line-height: 33.47px;
  }
}
.page-hajimete .solve-hajimete__chat-container__chat-bubble::before {
  content: "";
  position: absolute;
  top: 56%;
  left: -15px;
  transform: translateY(-50%);
  width: 22px;
  height: 28px;
  background-image: url("../images/hajimete/arrow-message.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__chat-container__chat-bubble::before {
    left: -26px;
    width: 38.61px;
    height: 49.15px;
  }
}
.page-hajimete .solve-hajimete__text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20.72px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text {
    font-family: Noto Sans;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.page-hajimete .solve-hajimete__text p {
  margin: 0;
}
.page-hajimete .solve-hajimete__text span {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.8em;
  font-weight: bold;
  background-size: 200% 0.5em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffff66 50%);
  transition: background-position 2s ease 0.1s;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.72px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text span {
    font-family: Noto Sans;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.page-hajimete .solve-hajimete__text__number {
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20.72px;
  text-align: left;
  float: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text__number {
    font-family: Noto Sans;
  }
}
.page-hajimete .solve-hajimete__chat-container img {
  border-radius: 7.02px;
  max-width: 62px;
  max-height: 62px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__chat-container img {
    max-width: 108px;
    max-height: 108px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step {
  padding: 0;
  background-color: #ffffff;
}
.page-hajimete .solve-hajimete .solve-hajimete_step h3 {
  margin: 0;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__container {
    padding: 10px 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__container {
    padding: 10px 0 0;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__title {
  text-align: center;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__title h2 img {
  width: auto;
  height: auto;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box {
    margin: 30px auto;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon img {
  position: relative;
  z-index: 1;
  max-height: 20px;
  max-width: 45px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon img {
    max-height: 100%;
    max-width: 100%;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon hr {
  position: absolute;
  transform: rotate(0deg);
  border-left: 5px solid #EDEDED;
  z-index: 0;
  height: 110%;
  top: 10px;
  left: 17.5px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon hr {
    height: 100%;
    top: 30px;
    left: 2.8%;
  }
}
@media screen and (min-width: 1200px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__icon hr {
    height: 145px;
    top: 30px;
    left: 23px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text {
  margin-right: 20px;
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 56%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text {
    flex-basis: 65%;
    margin-left: 30px;
    padding-right: 105px;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text {
    flex-grow: 1;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text h4 {
  margin-bottom: 0;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text span {
  display: none;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text p:first-child {
  color: #333333;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text p:first-child {
    margin-bottom: 10px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  margin: 0;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text p:not(:first-child) {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__text p:not(:first-child) a {
  color: #333333;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__group__box__img {
    margin-left: 20px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__group__box__img img {
  max-width: 100%;
  height: auto;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__content img {
  width: 100%;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__btn {
  margin: 15px auto;
  background-color: #00366E;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__btn {
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-hajimete .solve-hajimete .solve-hajimete_step__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete .solve-hajimete_step__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-hajimete .solve-hajimete .solve-hajimete_step__btn img {
  margin-right: 10px;
}
.page-hajimete .solve-hajimete .btn-second {
  margin: 34px auto 0 !important;
}
.page-hajimete .solve-hajimete__text3 {
  border: 1px solid #333333;
  padding: 15px 0 15px 15px;
  margin: 15px auto 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3 {
    padding: 20px;
    margin: 20px auto 53px;
  }
}
.page-hajimete .solve-hajimete__text3__first {
  background-color: #333333;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 137px;
  width: 100%;
  height: 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__first {
    margin-bottom: 9px;
  }
}
.page-hajimete .solve-hajimete__text3__first h4 {
  padding: 0;
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__first h4 {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-hajimete .solve-hajimete__text3__second {
  display: flex;
  margin-bottom: 15px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__second {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .page-hajimete .solve-hajimete__text3__second {
    gap: 74px;
  }
}
.page-hajimete .solve-hajimete__text3__second-child1 p, .page-hajimete .solve-hajimete__text3__second-child2 p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__second-child1 p, .page-hajimete .solve-hajimete__text3__second-child2 p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 21.79px;
    margin: 15px auto 10px;
  }
}
.page-hajimete .solve-hajimete__text3__second-child1__href, .page-hajimete .solve-hajimete__text3__second-child2__href {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__second-child1__href, .page-hajimete .solve-hajimete__text3__second-child2__href {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-hajimete .solve-hajimete__text3__second-child1__href a, .page-hajimete .solve-hajimete__text3__second-child2__href a {
  color: #333333;
}
.page-hajimete .solve-hajimete__text3__second-child1__href .href-second, .page-hajimete .solve-hajimete__text3__second-child2__href .href-second {
  margin: 6px auto;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__second-child1__href .href-second, .page-hajimete .solve-hajimete__text3__second-child2__href .href-second {
    margin: 6px auto;
  }
}
.page-hajimete .solve-hajimete__text3__note {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 14.98px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-hajimete .solve-hajimete__text3__note {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-hajimete .trader-table-hajimete {
  background: #fff;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete {
    margin-bottom: 0;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew {
  padding: 0;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px 20px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container {
    padding: 0;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap {
  text-align: center;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap h2 {
  margin: 0;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap h2 img {
  width: 100%;
  height: auto;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap .sub-tt {
    height: 30px;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container .title-wrap h2 img {
  width: auto;
  height: auto;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table {
  display: block;
  position: relative;
  padding: 20px 0 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table {
    padding: 30px 0 40px;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table .table {
  text-align: center;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table .table img {
  display: inline-block;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table .table img {
    max-width: 100%;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__table__hand-swipe {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 30%;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group {
  text-align: center;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group__content-second {
  margin: 6px auto 8px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group__content-second {
    margin: 30px auto 15px;
  }
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group__content-third {
  color: #ff4d4d;
}
.page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group__content-third p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete .trader-compare-table-renew__container__group__content-third p {
    font-size: 40px;
    font-weight: 700;
    line-height: 54.48px;
  }
}
.page-hajimete .trader-table-hajimete__btn {
  margin: 0 auto;
  background-color: #00366E;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete__btn {
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-hajimete .trader-table-hajimete__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-hajimete .trader-table-hajimete__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .trader-table-hajimete__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-hajimete .trader-table-hajimete__btn img {
  float: right;
  margin-right: 10px;
}
.page-hajimete .faq-hajimete {
  padding: 0;
}
.page-hajimete .faq-hajimete .faq {
  font-family: "Noto Sans";
  padding: 0;
}
.page-hajimete .faq-hajimete .faq__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px 0;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__container {
    padding: 60px 20px 0;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .faq-hajimete .faq__container {
    padding: 60px 0 0;
  }
}
.page-hajimete .faq-hajimete .faq__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__header {
    width: 568px;
    margin-bottom: 36px;
  }
}
.page-hajimete .faq-hajimete .faq__header h2 {
  margin: 0;
}
.page-hajimete .faq-hajimete .faq__header h2 img {
  width: auto;
  height: auto;
}
.page-hajimete .faq-hajimete .faq__group {
  border: 1px solid black;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group:not(:first-child) {
    margin-top: 20px;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-question {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-question {
    margin: auto 30px;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-question__content {
  display: flex;
}
.page-hajimete .faq-hajimete .faq__group__box-question__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-question__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-question__content__icon-add {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-question__content__icon-add {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-question__content__icon-sub {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-question__content__icon-sub {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-hajimete .faq-hajimete .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) {
  .page-hajimete .faq-hajimete .faq__group__box-question__content p {
    font-size: 24px;
    padding-top: 5px;
    line-height: 32.69px;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-question__content__icon-sub {
  display: none;
}
.page-hajimete .faq-hajimete .faq__group__box-answer {
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-answer {
    margin: auto 30px;
  }
}
.page-hajimete .faq-hajimete .faq__group__box-answer__content {
  display: flex;
}
.page-hajimete .faq-hajimete .faq__group__box-answer__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__group__box-answer__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.page-hajimete .faq-hajimete .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) {
  .page-hajimete .faq-hajimete .faq__group__box-answer__content p {
    font-size: 18px;
    margin: 0;
  }
}
.page-hajimete .faq-hajimete .faq__btn {
  margin: 15px auto 0;
  background-color: #00366E;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__btn {
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-hajimete .faq-hajimete .faq__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-hajimete .faq-hajimete .faq__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .faq-hajimete .faq__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-hajimete .faq-hajimete .faq__btn img {
  float: right;
  margin-right: 10px;
}
.page-hajimete .cta-hajimete {
  background-color: #ffffff;
}
.page-hajimete .cta-hajimete .l-header {
  background-color: #ffffff;
}
.page-hajimete .cta-hajimete .l-header__wrap {
  background-color: #ffffff;
}
.page-hajimete .cta-hajimete__sp-banner .bnr-contact a {
  padding-top: 0;
  padding-bottom: 0;
}
.page-hajimete .cta-hajimete .l-container {
  position: relative;
}
.page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc {
  padding: 50px 0 20px;
}
@media screen and (min-width: 768px) {
  .page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc p.phone-txt {
    top: 71%;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc p.phone-txt {
    top: 72%;
  }
}
.page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc__btn-form {
    top: 68%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .edit-padding .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
.page-hajimete .cta-hajimete .bnr-contact__sp {
  padding: 30px 0 10px;
}
.page-hajimete .cta-hajimete .bnr-contact__pc {
  padding: 60px 0;
}
.page-hajimete .cta-hajimete .bnr-contact__pc img {
  max-width: 800px;
}
.page-hajimete .cta-hajimete .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.page-hajimete .cta-hajimete .bnr-contact__pc .phone-txt::after {
  content: "";
}
.page-hajimete .cta-hajimete .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.page-hajimete .cta-hajimete .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc__btn-form {
    top: 61%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
@media screen and (min-width: 768px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-hajimete .cta-hajimete .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.page-hajimete .cta-hajimete .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.page-hajimete .cta-hajimete .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.page-hajimete .cta-hajimete .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}

.info-column {
  background-color: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .info-column .l-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.info-column hr.line {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .info-column hr.line {
    width: 4px;
    height: 85%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .info-column__contents {
    width: 45%;
    margin: initial;
  }
}
@media screen and (min-width: 768px) {
  .info-column__contents .c-button__blue2 {
    width: 80%;
  }
}
.info-column__contents ul {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  .info-column__contents ul {
    font-size: 16px;
  }
}
.info-column__contents ul li {
  border-bottom: 1px solid #e4e4e4;
  padding: 9px 0;
}
@media screen and (min-width: 768px) {
  .info-column__contents ul li {
    height: 100px;
  }
  .info-column__contents ul li:first-child {
    border-top: 1px solid #e4e4e4;
  }
}
.info-column__contents ul li a {
  color: #333333;
  text-decoration: none;
  height: 100%;
}
.info-column__contents ul li .date {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .info-column__contents ul li .date {
    font-size: 16px;
  }
}
.info-column__contents__column ul li a {
  display: flex;
  align-items: center;
}
.info-column__contents__column ul li a img {
  width: 22%;
  height: 100%;
  padding-right: 10px;
  object-fit: cover;
}
.info-column__contents__column ul li p.detail {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.single-post .wp-post-image {
  height: auto;
}

#info_container {
  padding: 20px 0;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  #info_container {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  #info_container {
    background-color: #e4e4e4;
    padding: 30px;
  }
}
#info_container .l-container {
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  #info_container .l-container {
    padding: 3%;
  }
}
@media screen and (min-width: 1000px) {
  #info_container .l-container {
    padding: 3%;
  }
}
#info_container #info_list {
  list-style: none;
  padding-left: 0;
}
#info_container #info_list li {
  padding: 0.5rem 0;
}
#info_container #info_list li:hover {
  cursor: pointer;
  opacity: 0.5;
}
#info_container #info_list li a {
  text-decoration: none;
  color: initial;
}
#info_container #info_list li:not(:first-child) {
  border-top: 1px solid #e4e4e4;
}
#info_container #info_list dd {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  #info_container .page-nation {
    margin-top: 2rem;
  }
}

.single-post h1 {
  border: none;
  text-align: left;
  padding: 1rem 0 3rem;
}
.single-post .thumbnail {
  width: 100%;
  object-fit: cover;
}
.single-post .c-button__link {
  width: 70%;
  padding: 0.8em;
}

/* ---------------------------------------------------------
- 固定page
- テンプレート
-----------------------------------------------------------*/
/*==================================================
固定ページ
==================================================*/
.page-media h2 {
  font-size: 20px;
  color: #ffffff;
  background: #267dcb;
  padding: 1rem 12%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -12%;
  margin-right: -12%;
  background-image: url("../images/tt/form_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .page-media h2 {
    margin-right: 0;
    margin-left: 0;
    padding: 1rem;
  }
}
.page-media h2:first-child {
  margin-top: 0;
}
.page-media h3 {
  font-size: 18px;
  line-height: 1.4;
  padding: 0.2em;
  margin: 10px auto;
  padding-left: 1rem;
  background: #e6f2ff;
  border-left: 4px solid #267dcb;
  margin-bottom: 1rem;
}
.page-media h3::before {
  content: none;
}
.page-media .media_title_img {
  width: 100%;
  max-height: 15rem;
}
.page-media .media_container {
  background-color: #ccc;
}
.page-media .main_mokuji_container {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.page-media .main_mokuji_container .main_mokuji_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  font-size: 20px;
}
@media screen and (min-width: 1000px) {
  .page-media .main_mokuji_container .main_mokuji_wrap {
    width: 80%;
  }
}
.page-media .main_mokuji_container .main_mokuji_wrap ol {
  column-count: 1;
  border: 2px solid #e4e4e4;
  padding: 1rem;
  padding-left: 2rem;
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-media .main_mokuji_container .main_mokuji_wrap ol {
    column-count: 2;
    font-size: 16px;
    height: 290px;
  }
  .page-media .main_mokuji_container .main_mokuji_wrap ol::after {
    position: absolute;
    content: "";
    display: block;
    height: 87%;
    width: 1px;
    background-color: #e4e4e4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.page-media .main_mokuji_container .main_mokuji_wrap ol li {
  border-bottom: 2px dotted #e4e4e4;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-media .main_mokuji_container .main_mokuji_wrap ol li {
    line-height: 2.5rem;
  }
  .page-media .main_mokuji_container .main_mokuji_wrap ol li:nth-child(-n+6) {
    margin-right: 10px;
  }
  .page-media .main_mokuji_container .main_mokuji_wrap ol li:nth-of-type(n + 7) {
    margin-left: 15px;
  }
}
.page-media .contents {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-media .contents p {
    font-size: 16px;
  }
}
.page-media .contents iframe {
  width: 100%;
  height: 58vw;
  max-height: 374px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .page-media .contents iframe {
    height: 52vw;
    max-height: 560px;
  }
}

/*==================================================
テンプレート
==================================================*/
.media {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .media {
    background-color: #e4e4e4;
  }
}
.media__wrap {
  display: flex;
  justify-content: center;
  padding: 0rem;
  flex-direction: column;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .media__wrap {
    background-color: #e4e4e4;
    flex-direction: row;
  }
}
.media__wrap__item {
  padding: 20px 20px 0 20px;
}
@media screen and (min-width: 768px) {
  .media__wrap__item {
    padding-top: 0;
    font-size: 16px;
    width: 50%;
  }
}
.media__wrap__item ul li {
  margin-bottom: 8px;
}
.media__wrap__item ul li .sub, .media__wrap__item ul li .sub__blue, .media__wrap__item ul li .sub__black {
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  .media__wrap__item ul li .sub, .media__wrap__item ul li .sub__blue, .media__wrap__item ul li .sub__black {
    font-size: 1em;
  }
}
.media__wrap__item ul li .sub, .media__wrap__item ul li .sub__blue, .media__wrap__item ul li .sub__black {
  background-color: #267dcb;
  padding: 1px 5px;
}

.page-flow .main_title_wrap .l-container,
.page-flow .nagare_header .l-container {
  max-width: 800px !important;
}
.page-flow #nagare_container {
  background-color: #ccc;
  padding: 1rem;
}
.page-flow .nagare_header_intro2 {
  border: 3px solid #2ba4a0;
  color: #2ba4a0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-flow .nagare_header_intro2 {
    text-align: center;
  }
}
.page-flow .purchase-flow {
  background-color: #e4e4e4;
}

.page-nagare .banner-nagare {
  background-image: url("../images/tt/bg.webp");
  background-size: 100% 100%;
  position: relative;
  background-repeat: no-repeat;
  height: 120px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .page-nagare .banner-nagare {
    height: 140px;
  }
}
.page-nagare .banner-nagare .main_title_string {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
}
@media screen and (min-width: 768px) {
  .page-nagare .banner-nagare .main_title_string {
    height: 80px;
    top: 50%;
  }
}
.page-nagare .banner-nagare .main_title_icon {
  position: absolute;
  bottom: -45px;
  height: 70px;
  left: 50%;
  transform: translateX(-50%);
}
.page-nagare .banner-nagare h1 {
  border: none;
}
.page-nagare .step-nagare .step-nagare-container {
  text-align: center;
  margin: 0 auto;
  width: auto;
  padding: 30px 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare .step-nagare-container {
    max-width: 1040px;
    width: auto;
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .step-nagare .step-nagare-container {
    padding: 60px 0;
  }
}
.page-nagare .step-nagare__title h2 {
  max-width: 389px;
  width: 100%;
  margin: 0 auto;
}
.page-nagare .step-nagare__title h2 img {
  height: auto;
}
.page-nagare .step-nagare__content p {
  text-align: left;
  margin: 20px auto 30px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__content p {
    letter-spacing: unset;
    margin: 30px auto 50px;
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    text-align: center;
  }
}
.page-nagare .step-nagare__box {
  gap: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .step-nagare__box {
    gap: 30px;
  }
}
.page-nagare .step-nagare__box a {
  text-decoration: none;
  cursor: pointer;
}
.page-nagare .step-nagare__box-item:nth-child(3) {
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-item:nth-child(3) {
    margin: 0;
  }
}
.page-nagare .step-nagare__box-item:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-item:nth-child(2) {
    margin: 0;
  }
}
.page-nagare .step-nagare__box-item:nth-child(4) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-item:nth-child(4) {
    margin: 0;
  }
}
.page-nagare .step-nagare__box-content {
  cursor: pointer;
  background-color: #e6f2ff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 15px 15px;
  position: unset;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content {
    padding: 0;
    display: block;
    position: relative;
    flex: 1;
    padding: 30px 5px 10px;
    height: 86px;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .step-nagare__box-content {
    padding: 30px 29px 10px;
  }
}
.page-nagare .step-nagare__box-content__title {
  padding-top: 1px;
  color: #ffffff;
  margin: 0 auto;
  background-color: #006EBB;
  border-radius: 14px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 45px;
  position: unset;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content__title {
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    max-width: 50px;
  }
}
.page-nagare .step-nagare__box-content__title p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Helvetica;
  margin: 0 !important;
  gap: 1px;
  font-size: 9.05px;
  font-weight: 700;
  line-height: 10.4px;
  text-align: center;
}
.page-nagare .step-nagare__box-content__title p span {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.4px;
  text-align: center;
}
.page-nagare .step-nagare__box-content__text {
  width: 76%;
  text-align: left;
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content__text {
    margin-bottom: 2px;
    width: auto;
    margin-left: 0;
  }
}
.page-nagare .step-nagare__box-content__text p {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  text-align: left;
  line-height: 24.52px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content__text p {
    line-height: 23px;
    text-align: center;
    font-size: 1.7vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .step-nagare__box-content__text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content .second {
    margin-bottom: -8px;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .step-nagare__box-content .second {
    margin-bottom: -6px;
  }
}
.page-nagare .step-nagare__box-content__arrow {
  width: 10%;
  margin-right: 10px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__box-content__arrow {
    width: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare .second-text {
    padding: 17px 29px 10px;
  }
}
.page-nagare .step-nagare__group {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group {
    margin: 60px auto;
  }
}
.page-nagare .step-nagare__group__title {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group__title {
    margin-bottom: 0;
  }
}
.page-nagare .step-nagare__group__video {
  position: relative;
  margin: 0 auto;
  background-color: #d9d9d9;
  width: 100%;
  height: 190px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group__video {
    width: 700px;
    height: 397.01px;
  }
}
.page-nagare .step-nagare__group__video p {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  font-family: Noto Sans;
  font-size: 25px;
  font-weight: 700;
  line-height: 34.05px;
  letter-spacing: -0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group__video p {
    font-family: Noto Sans;
    font-size: 43.96px;
    font-weight: 700;
    line-height: 59.87px;
    letter-spacing: -0.04em;
    text-align: center;
  }
}
.page-nagare .step-nagare__group-content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content {
    margin-top: 60px;
  }
}
.page-nagare .step-nagare__group-content {
  text-align: left;
}
.page-nagare .step-nagare__group-content__title {
  display: flex;
  color: #267dcb;
  font-size: 18px;
  font-weight: 700;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__title {
    font-weight: 600;
  }
}
.page-nagare .step-nagare__group-content__title h3 {
  margin-bottom: 12px;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__title h3 {
    margin-bottom: 17px;
    font-weight: 600;
  }
}
.page-nagare .step-nagare__group-content__title h3 span {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__title h3 span {
    margin-left: 20px;
  }
}
.page-nagare .step-nagare__group-content .graLine {
  height: 3px;
  margin-bottom: 20px;
  border-bottom: 3px solid #ccc;
  z-index: 10;
  background: none;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content .graLine {
    margin-bottom: 30px;
  }
}
.page-nagare .step-nagare__group-content .graLine::before {
  content: "";
  position: absolute;
  width: 70px;
  height: inherit;
  border-bottom: 3px solid #0b5dbf;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content .graLine::before {
    width: 160px;
  }
}
.page-nagare .step-nagare__group-content__flex {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex {
    display: flex;
    gap: 3vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .step-nagare__group-content__flex {
    gap: 2.2vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .step-nagare__group-content__flex {
    gap: 91px;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__box {
    width: 85%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .step-nagare__group-content__flex__box {
    width: 64%;
  }
}
.page-nagare .step-nagare__group-content__flex__img img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__img img {
    max-width: 322px;
  }
}
.page-nagare .step-nagare__group-content__flex__text {
  text-align: left;
  font-family: Noto Sans;
  margin: 15px auto;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text {
    margin: 0 auto 30px;
  }
}
.page-nagare .step-nagare__group-content__flex__text p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text p {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text p a {
  color: #333333;
}
.page-nagare .step-nagare__group-content__flex__text2 {
  background-color: #e6f2ff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text2 {
    padding: 20px 5px 20px 20px;
  }
}
.page-nagare .step-nagare__group-content__flex__text2__first {
  border-radius: 2px;
  background-color: #006EBB;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  width: 76px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text2__first {
    padding: 4px 0;
    width: 84px;
    height: 30px;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text2__first p {
  margin: 0;
}
.page-nagare .step-nagare__group-content__flex__text2__second {
  text-align: left;
  font-family: Noto Sans;
}
.page-nagare .step-nagare__group-content__flex__text2__second ul {
  list-style: disc;
  padding: 0 0 0 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text2__second ul {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text2__second ul li::marker {
  font-size: 14px;
}
.page-nagare .step-nagare__group-content__flex__text2__second ul span {
  color: #ff4d4d;
  font-size: 14px;
  line-height: 19.07px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text2__second ul span {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text2__second ul a {
  color: #333333;
}
.page-nagare .step-nagare__group-content__flex__text2__second__note {
  color: #333333 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 14.98px !important;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text2__second__note {
    font-size: 13px !important;
    line-height: 17.71px;
  }
}
.page-nagare .step-nagare__group-content__flex .fix-padding {
  padding: 15px 15px 34px !important;
}
.page-nagare .step-nagare__group-content__flex__text3 {
  border: 1px solid #333333;
  padding: 15px 0 15px 15px;
  margin: 15px auto 5px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3 {
    padding: 20px;
    margin: 20px auto 15px;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__first {
  background-color: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 118px;
  width: 100%;
  margin-bottom: 15px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__first {
    margin-bottom: 9px;
    max-width: 132px;
    padding: 4px 0;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__first h4 {
  padding: 0;
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__first h4 {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__second {
  display: flex;
  margin-bottom: 15px;
  gap: 30px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__second {
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .step-nagare__group-content__flex__text3__second {
    gap: 74px;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1 p, .page-nagare .step-nagare__group-content__flex__text3__second-child2 p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__second-child1 p, .page-nagare .step-nagare__group-content__flex__text3__second-child2 p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 21.79px;
    margin: 15px auto 10px;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1__href, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__second-child1__href, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1__href ul, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href ul {
  list-style: disc;
  padding: 0 0 0 24px;
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1__href ul li::marker, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href ul li::marker {
  font-size: 14px;
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1__href a, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href a {
  color: #333333;
}
.page-nagare .step-nagare__group-content__flex__text3__second-child1__href .href-second, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href .href-second {
  margin: 6px auto;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__second-child1__href .href-second, .page-nagare .step-nagare__group-content__flex__text3__second-child2__href .href-second {
    margin: 6px auto;
  }
}
.page-nagare .step-nagare__group-content__flex__text3__note {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 14.98px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__text3__note {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-nagare .step-nagare__group-content__flex__btn {
  margin: 15px auto;
  background-color: #00366e;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__btn {
    width: 400px;
  }
}
.page-nagare .step-nagare__group-content__flex__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-nagare .step-nagare__group-content__flex__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__flex__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__flex__btn img {
  margin-right: 10px;
}
.page-nagare .step-nagare__group-content__btn {
  margin: 15px auto;
  background-color: #00366e;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__btn {
    width: 400px;
  }
}
.page-nagare .step-nagare__group-content__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-nagare .step-nagare__group-content__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__group-content__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__group-content__btn img {
  margin-right: 10px;
}
.page-nagare .step-nagare__last-content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content {
    margin-top: 60px;
  }
}
.page-nagare .step-nagare__last-content h2 img {
  height: auto;
}
.page-nagare .step-nagare__last-content__text {
  margin: 20px auto 15px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text {
    margin: 30px auto 40px;
  }
}
.page-nagare .step-nagare__last-content__text p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  letter-spacing: -0.2px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text p {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 21.79px;
    text-align: center;
  }
}
.page-nagare .step-nagare__last-content__text2 {
  background-color: #e6f2ff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text2 {
    padding: 20px 17px 13px 20px;
  }
}
.page-nagare .step-nagare__last-content__text2__first {
  background-color: #006EBB;
  color: #ffffff;
  padding: 2px 0;
  max-width: 76px;
  margin-bottom: 15px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text2__first {
    padding: 4px 0;
    max-width: 84px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__last-content__text2__group {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text2__group {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__last-content__text2__group ul {
  list-style: disc;
  padding: 0 0 0 17px;
}
.page-nagare .step-nagare__last-content__text2__group ul li::marker {
  font-size: 14px;
}
.page-nagare .step-nagare__last-content__text2__group span {
  color: #ff4d4d;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text2__group span {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .step-nagare__last-content__text2__group__third, .page-nagare .step-nagare__last-content__text2__group__fourth {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 14.98px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare__last-content__text2__group__third, .page-nagare .step-nagare__last-content__text2__group__fourth {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-nagare .step-nagare .third-content-nagare {
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare .third-content-nagare {
    margin: 60px auto;
  }
}
.page-nagare .step-nagare .second-content-nagare {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare .second-content-nagare {
    margin-top: 60px;
  }
}
.page-nagare .step-nagare .fourth-content-nagare {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-nagare .step-nagare .fourth-content-nagare {
    margin-bottom: 60px;
  }
}
.page-nagare .tax-refund-nagare .tax-refund-nagare-container {
  background-color: #d5f2f1;
  margin: 0 auto;
  width: auto;
  margin: 30px 20px;
  padding: 15px 15px 17px 15px;
}
@media screen and (min-width: 768px) {
  .page-nagare .tax-refund-nagare .tax-refund-nagare-container {
    width: auto;
    margin: 60px 20px 0;
    padding: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .tax-refund-nagare .tax-refund-nagare-container {
    width: 100%;
    max-width: 1040px;
    margin: 60px auto 0;
  }
}
.page-nagare .tax-refund-nagare__title {
  color: #ffffff;
  background-color: #2ba4a0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  width: 174px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .page-nagare .tax-refund-nagare__title {
    width: 196px;
    padding: 4px 0;
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
  }
}
.page-nagare .tax-refund-nagare__content {
  margin: 15px auto 10px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.12px;
  text-align: left;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .page-nagare .tax-refund-nagare__content {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-nagare .tax-refund-nagare__content span {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 15.03px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-nagare .tax-refund-nagare__content span {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-nagare .tax-refund-nagare__btn {
  text-align: right;
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
}
.page-nagare .tax-refund-nagare__btn img {
  margin-left: 5px;
}
.page-nagare .tax-refund-nagare__btn a {
  color: #333333;
}
.page-nagare .cta-nagare {
  background-color: #ffffff;
}
.page-nagare .cta-nagare .l-header {
  background-color: #ffffff;
}
.page-nagare .cta-nagare .l-header__wrap {
  background-color: #ffffff;
}
.page-nagare .cta-nagare__sp-banner .bnr-contact a {
  padding-top: 0;
  padding-bottom: 0;
}
.page-nagare .cta-nagare .l-container {
  position: relative;
}
.page-nagare .cta-nagare .edit-padding .bnr-contact__pc {
  padding: 50px 0 20px;
}
@media screen and (min-width: 768px) {
  .page-nagare .cta-nagare .edit-padding .bnr-contact__pc p.phone-txt {
    top: 71%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .edit-padding .bnr-contact__pc p.phone-txt {
    top: 72%;
  }
}
.page-nagare .cta-nagare .edit-padding .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-nagare .cta-nagare .edit-padding .bnr-contact__pc__btn-form {
    top: 68%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .edit-padding .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
.page-nagare .cta-nagare .bnr-contact__sp {
  padding: 30px 0 10px;
}
.page-nagare .cta-nagare .bnr-contact__pc {
  padding: 60px 0;
}
.page-nagare .cta-nagare .bnr-contact__pc img {
  max-width: 800px;
}
.page-nagare .cta-nagare .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-nagare .cta-nagare .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.page-nagare .cta-nagare .bnr-contact__pc .phone-txt::after {
  content: "";
}
.page-nagare .cta-nagare .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.page-nagare .cta-nagare .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-nagare .cta-nagare .bnr-contact__pc__btn-form {
    top: 61%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .cta-nagare .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .cta-nagare .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.page-nagare .cta-nagare .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.page-nagare .cta-nagare .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.page-nagare .cta-nagare .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}
.page-nagare .refund-nagare .bnr-refund {
  padding: 0;
  background-color: #e6f2fd;
}
.page-nagare .refund-nagare .bnr-refund__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund__container {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-nagare .refund-nagare .bnr-refund__container {
    padding: 60px 0;
  }
}
.page-nagare .refund-nagare .bnr-refund__container__title {
  text-align: center;
  margin-bottom: 20px;
}
.page-nagare .refund-nagare .bnr-refund__container__title h2 {
  margin: 0;
}
.page-nagare .refund-nagare .bnr-refund__container__title h2 img {
  width: auto;
  height: auto;
}
.page-nagare .refund-nagare .bnr-refund .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .title-wrap .sub-tt {
    height: 30px;
  }
}
.page-nagare .refund-nagare .bnr-refund .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .title-wrap .main-tt {
    height: 35px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap {
  position: relative;
}
.page-nagare .refund-nagare .bnr-refund .img-wrap p {
  position: absolute;
  font-size: 1rem;
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month {
  word-break: keep-all;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  top: 3%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month {
    font-size: 16px;
    top: 2vw;
    left: 28%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month {
    top: 20px;
    left: 280px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month span {
  font-weight: bold;
  font-size: 6vw;
}
@media screen and (min-width: 500px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .refund-month span {
    font-size: 24px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice {
  top: 10.5%;
  left: 12%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 18.5vw;
    font-size: inherit;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 7.5vw;
    left: 4%;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice {
    top: 90px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
  display: inline-block;
  text-align: center;
  font-size: 15vw;
  width: 47.5vw;
  letter-spacing: -0.06rem;
}
@media screen and (min-width: 500px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 80px;
    width: 50vw;
    max-width: 278px;
  }
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 8vw;
    width: 29vw;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 92px;
    width: 320px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice span {
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice span:nth-of-type(1) {
  position: relative;
  bottom: -8px;
}
@media screen and (min-width: 768px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice span {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .p-return__priceLPrice span {
    font-size: 28px;
  }
}
.page-nagare .refund-nagare .bnr-refund .img-wrap .refund-txt {
  font-size: 1.2vw;
  letter-spacing: -0.08em;
  position: absolute;
  top: 70%;
  left: 4%;
}
@media screen and (min-width: 1000px) {
  .page-nagare .refund-nagare .bnr-refund .img-wrap .refund-txt {
    font-size: 12px;
    letter-spacing: -0.04em;
    top: 320px;
  }
}
.page-nagare .refund-nagare .bnr-refund__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) {
  .page-nagare .refund-nagare .bnr-refund__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-nagare .refund-nagare .bnr-refund__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.page-nagare .refund-nagare .bnr-refund__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.page-nagare .refund-nagare .bnr-refund__btn p img {
  float: right;
  margin-right: 20px;
}

.p-lptop8 .main_consult_wrap dl dt {
  flex: 0 0 100%;
}
@media screen and (min-width: 1000px) {
  .p-lptop8 .main_consult_wrap dl dt {
    font-size: 14px;
  }
}
.p-lptop8 .main_consult_wrap dl dt img {
  width: 40px;
}
.p-lptop8 .main_consult_wrap dl dd {
  flex: 0 0 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-lptop8 .main_consult_wrap dl {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-lptop8 .main_consult_wrap dl dt {
    flex: 0 0 15%;
  }
  .p-lptop8 .main_consult_wrap dl dd {
    flex: 0 0 85%;
    margin: 0;
  }
  .p-lptop8 .main_consult_wrap dl dd select,
  .p-lptop8 .main_consult_wrap dl dd input {
    border: 2px solid rgba(38, 125, 203, 0.8);
    height: 29px;
    padding: 4px 6px;
    font-size: 12px;
    letter-spacing: 0.07em;
    will-change: contents;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  .p-lptop8 .main_consult_wrap dl dd select,
  .p-lptop8 .main_consult_wrap dl dd input {
    font-size: 14px;
    letter-spacing: initial;
  }
}
@media screen and (min-width: 768px) {
  .p-lptop8 .main_consult_wrap dl dd select::placeholder,
  .p-lptop8 .main_consult_wrap dl dd input::placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
  .p-lptop8 .main_consult_wrap dl dd select::-ms-input-placeholder,
  .p-lptop8 .main_consult_wrap dl dd input::-ms-input-placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
  .p-lptop8 .main_consult_wrap dl dd select:-ms-input-placeholder,
  .p-lptop8 .main_consult_wrap dl dd input:-ms-input-placeholder {
    color: rgba(105, 105, 105, 0.6);
    opacity: 1;
  }
}
.p-lptop8 .main_consult_wrap.sp {
  background-color: #e4e4e4;
  position: initial;
  margin: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-lptop8 .main_consult_wrap.sp {
    display: none;
  }
}
.p-lptop8 .main_consult_wrap.sp dl {
  flex-direction: row;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px;
}
.p-lptop8 .main_consult_wrap.sp dl dt {
  flex: 0 0 15%;
}
.p-lptop8 .main_consult_wrap.sp dl dt img {
  width: 40px;
}
.p-lptop8 .main_consult_wrap.sp dl dd {
  flex: 0 0 85%;
  margin: 0;
}
.p-lptop8 .main_consult_wrap.sp dl dd select,
.p-lptop8 .main_consult_wrap.sp dl dd input {
  border: 2px solid rgba(38, 125, 203, 0.8);
  height: 29px;
  padding: 4px 6px;
  font-size: 12px;
  letter-spacing: 0.07em;
  will-change: contents;
}
@media screen and (min-width: 1000px) {
  .p-lptop8 .main_consult_wrap.sp dl dd select,
  .p-lptop8 .main_consult_wrap.sp dl dd input {
    font-size: 14px;
    letter-spacing: initial;
  }
}
.p-lptop8 .main_consult_wrap.sp dl dd select::placeholder,
.p-lptop8 .main_consult_wrap.sp dl dd input::placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}
.p-lptop8 .main_consult_wrap.sp dl dd select::-ms-input-placeholder,
.p-lptop8 .main_consult_wrap.sp dl dd input::-ms-input-placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}
.p-lptop8 .main_consult_wrap.sp dl dd select:-ms-input-placeholder,
.p-lptop8 .main_consult_wrap.sp dl dd input:-ms-input-placeholder {
  color: rgba(105, 105, 105, 0.6);
  opacity: 1;
}
.p-lptop8 .main_consult_wrap.sp form {
  background-color: #ffffff;
  padding-bottom: 20px;
}
.p-lptop8 .main_consult_wrap.sp .submit {
  font-size: 14px;
}
.p-lptop8 form .err_msg {
  margin: -6px 0 0px 0;
  font-size: 11px;
}
.p-lptop8 .title {
  background-color: #3984d1;
}

.p-policy h1,
.p-site-policy h1 {
  border-bottom: 2px solid #e4e4e4;
}

.p-site-policy__head {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-site-policy__head {
    padding-top: 30px;
  }
}

.sitepolicy_container {
  background-color: #ccc;
  padding: 1rem 0;
}
.sitepolicy_container .sitepolicy_head_txt {
  padding: 1rem;
  background-color: #ffffff;
}

.sitepolicy_main_txt {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .sitepolicy_main_txt {
    padding-bottom: 30px;
  }
}
.sitepolicy_main_txt span {
  color: #267dcb;
}
.sitepolicy_main_txt__policy-link {
  text-decoration: none !important;
}

.sitepolicy_contact_wrap {
  display: flex;
  flex-direction: column;
  border: 2px solid #e4e4e4;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sitepolicy_contact_wrap {
    width: 70%;
  }
}
.sitepolicy_contact_wrap .sitepolicy_contact_title {
  display: flex;
  justify-content: center;
  margin: 0 1rem;
  border-bottom: 1px solid #e4e4e4;
}
.sitepolicy_contact_wrap .sitepolicy_contact_txt {
  display: flex;
  justify-content: center;
  text-align: center;
}

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

.sitemap {
  background-color: rgb(229, 229, 229);
  text-align: center;
  padding: 10px;
}
.sitemap a {
  display: block;
  text-decoration: none;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .sitemap {
    padding: 20px 0;
  }
}
.sitemap_box {
  background-color: white;
  max-width: 800px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .sitemap_box {
    border: initial;
    padding: 0 10px 10px;
  }
}
.sitemap_box_link {
  display: initial;
}
@media screen and (min-width: 768px) {
  .sitemap_box_link {
    display: flex;
    justify-content: space-around;
  }
}
.sitemap_box_link a {
  width: 100%;
}
.sitemap_box_link a:nth-child(2) {
  border-left: none;
}
@media screen and (min-width: 768px) {
  .sitemap_box_link a:nth-child(2) {
    border-left: solid 1px #ccc;
  }
}
.sitemap_box_link a img {
  margin-bottom: 0;
  width: 100%;
  border-top: solid 1px #ccc;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .sitemap_box_link a img {
    border-top: none;
    margin-bottom: 0px;
  }
}
.sitemap_box_title {
  background-color: rgb(230, 242, 255);
  text-align: left;
  padding: 3px 10px;
  letter-spacing: 1.2px;
}
@media screen and (min-width: 768px) {
  .sitemap_box_title {
    text-align: left;
    padding: 3px 20px;
    background-color: rgb(220, 220, 220);
    letter-spacing: 1.2px;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_box_column {
    display: flex;
    border-bottom: 1px solid #ccc;
  }
}
.sitemap_box_column.b-bottom-none {
  border-bottom: none;
}
.sitemap_box_column_item {
  width: 100%;
  background: url(../images/icon/arrow_r.svg) no-repeat right 15px top 50%;
  text-align: left;
  margin: auto;
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  background-size: 20px;
}
.sitemap_box_column_item.b-bottom-none {
  border-bottom: none;
}
.sitemap_box_column_item.b-top {
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item.b-top {
    border-top: none;
  }
}
.sitemap_box_column_item.open-list {
  background: none;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item.open-list {
    background: url(../images/icon/arrow_r.svg) no-repeat right 15px top 50%;
    background-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item {
    border-bottom: initial;
    padding: 10px 30px 10px 20px;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item:nth-child(2) {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
}
.sitemap_box_column_item.none-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item.none-arrow {
    display: block;
    background: none;
  }
}
.sitemap_box_column_item.b-rl-none {
  border-right: none;
  border-left: none;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_item.b-right {
    border-right: 1px solid #ccc;
  }
}
.sitemap_box_column_list {
  width: 100%;
  text-align: left;
  padding: 0 10px 0 30px;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_list {
    padding: 10px;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_list:nth-child(2) {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_list:nth-child(3) {
    border-right: 1px solid #ccc;
  }
}
.sitemap_box_column_list_item {
  background: url(../images/icon/arrow_r.svg) no-repeat right 15px top 50%;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  padding: 20px 30px 20px 0;
  background-size: 20px;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_list_item {
    padding: initial;
    font-size: 10px;
    background: none;
    border-bottom: none;
  }
}
.sitemap_box_column_list_item.l-b-bottom-none {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .sitemap_box_column_list_item a {
    text-decoration: underline;
  }
}
.sitemap_box_performance {
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance {
    padding: 5px 8px 5px 14px;
    display: flex;
    text-align: center;
  }
}
.sitemap_box_performance_title {
  width: initial;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_title {
    width: 40%;
  }
}
.sitemap_box_performance_title {
  margin: auto;
}
.sitemap_box_performance_car {
  display: flex;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_car a {
    width: 100%;
  }
}
.sitemap_box_performance_car a:nth-child(1) {
  margin-right: 5px;
}
.sitemap_box_performance_car a:nth-child(2) {
  margin-right: 5px;
}
.sitemap_box_performance_car_box {
  display: initial;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_car_box {
    display: flex;
  }
}
.sitemap_box_performance_car_box {
  width: 100%;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_car_box {
    border: 1px solid #ccc;
  }
}
.sitemap_box_performance_car_box img {
  object-fit: cover;
  height: 60px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_car_box img {
    height: 55px;
    width: 50%;
  }
}
.sitemap_box_performance_car_box .car-info {
  font-size: 10px;
  text-align: left;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_car_box .car-info {
    font-size: 11px;
    padding: 0 4px;
  }
}
.sitemap_box_performance_car_box .car-info_price {
  color: rgb(252, 102, 104);
}
.sitemap_box_performance_car_box .car-info_name {
  margin-top: -5px;
}
.sitemap_box_performance_arrow {
  width: 80%;
  background: url(../images/icon/arrow_r.svg) no-repeat right 5px top 25%;
  background-size: 20px;
}
@media screen and (min-width: 768px) {
  .sitemap_box_performance_arrow {
    background-position-y: 50%;
    width: 80px;
  }
}

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

.thanks_box_img {
  width: 100%;
}
.thanks_box_content {
  padding-top: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-image: url("../images/tt/bg.webp");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .thanks_box_content {
    align-items: center;
  }
}
.thanks_box_content_item {
  color: #fff;
  text-align: center;
  letter-spacing: 0px;
  font-size: 15px;
  max-width: 86%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item {
    max-width: 550px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item {
    max-width: 800px;
  }
}
.thanks_box_content_item_description {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  content: "";
  margin: 30px 0 15px;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_description {
    font-size: 14px;
  }
}
.thanks_box_content_item_replation {
  display: block;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 1px;
  max-width: 350px;
  margin: auto;
  content: "";
  text-align: left;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_replation {
    max-width: initial;
    font-size: 14px;
  }
}
.thanks_box_content_item_replation p a {
  color: #fff;
  text-decoration: none;
}
.thanks_box_content_item_contact {
  text-align: left;
  font-size: 10px;
  font-weight: 200;
  max-width: 350px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_contact {
    text-align: center;
    font-size: 12px;
    max-width: initial;
    margin: 20px auto;
  }
}
.thanks_box_content_item_contact a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.thanks_box_content_item_cta {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_cta {
    font-size: 14px;
  }
}
.thanks_box_content_item_cta .txt {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_cta .txt {
    font-size: 18px;
  }
}
.thanks_box_content_item_cta .txt2 {
  letter-spacing: -0.08em;
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_cta .bnr-contact {
    max-width: 600px;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .thanks_box_content_item_cta .bnr-contact__pc .free-txt {
    left: 117px;
    font-size: 4vw;
    margin-top: 0px;
  }
}
@media screen and (min-width: 1000px) {
  .thanks_box_content_item_cta .bnr-contact__pc .free-txt {
    left: 25%;
    font-size: 39px;
  }
}
.thanks_box_btn {
  width: 100%;
  max-width: 400px;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .thanks_box_btn {
    margin: 50px auto;
    position: initial;
  }
}
.thanks__google-form {
  background-color: #ffffff;
  height: 500px;
  overflow: scroll;
  border-radius: 5px;
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .thanks__google-form {
    max-width: 90%;
    margin: auto;
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .thanks__google-form {
    max-width: 600px;
  }
}
.thanks__google-form iframe {
  width: 100%;
}

.page-thank_lp {
  width: 100%;
  height: 100%;
}
.page-thank_lp body,
.page-thank_lp .thanks,
.page-thank_lp .thanks_box {
  width: 100%;
  height: 100%;
}
.page-thank_lp .thanks_box_content {
  align-items: center;
  height: 100%;
}
.page-thank_lp .cus_copy-right {
  margin-top: 0;
  height: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0;
}

.main-lp-thank_en {
  width: 100%;
  height: calc(100% - 110px);
}
@media screen and (min-width: 768px) {
  .main-lp-thank_en {
    height: calc(100% - 120px);
  }
}
.main-lp-thank_en .thanks_box_content_item {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .main-lp-thank_en .thanks_box_content_item {
    font-size: 34px;
  }
}
.main-lp-thank_en .thanks_box_content_item_description {
  font-size: 20px;
}

.main-lp-thank {
  height: calc(100% - 110px);
}
@media screen and (min-width: 768px) {
  .main-lp-thank {
    height: calc(100% - 120px);
  }
}
.main-lp-thank .thanks_box_content {
  height: calc(100% - 39px);
}
.main-lp-thank .thanks_box_content_item p:first-child {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .main-lp-thank .thanks_box_content_item p:first-child {
    font-size: 30px;
  }
}
.main-lp-thank .thanks_box_content_item .thanks_box_content_item_description {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .main-lp-thank .thanks_box_content_item .thanks_box_content_item_description {
    font-size: 24px;
  }
}

@font-face {
  font-family: enex;
  src: url("../fonts/notosans_jp/NotoSansJP-Bold.otf");
}
@font-face {
  font-family: enexSp;
  src: url("../fonts/notosans_jp/NotoSansJP-Medium.otf");
}
.lp_enex_thanks .sub_cta {
  font-family: enexSp;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta {
    font-family: enex;
    font-weight: initial;
  }
}
.lp_enex_thanks .sub_cta {
  padding: 0;
}
.lp_enex_thanks .sub_cta__box {
  padding: 30px 0 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta__box {
    padding: 60px 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  .lp_enex_thanks .sub_cta__box {
    background-size: 270%;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_title_box {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_title_box {
    max-width: 850px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_title_box p {
  margin: 0;
  padding: 15px 0 10px;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_title_box p {
    padding: 30px 0 25px;
    font-size: 22px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box {
    max-width: 850px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box > a {
  text-decoration: none;
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__tel {
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__tel__line__number {
    display: none;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__tel__line__number {
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  left: 32%;
  top: -9%;
  font-size: 3.1rem;
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code {
  display: none;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code {
    display: block;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(37%, -70%);
  width: 100%;
  max-width: 13vw;
}
@media screen and (min-width: 1000px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code {
    max-width: 15vw;
    transform: translate(82%, -76%);
  }
}
@media screen and (min-width: 1200px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code {
    max-width: 160px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p {
  margin: 0;
  color: #333333;
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:first-child {
  font-weight: 700;
  font-size: 1.5vw;
}
@media screen and (min-width: 1200px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:first-child {
    font-size: 20px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:not(.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:first-child) {
  margin-top: -25px;
  font-size: 6vw;
}
@media screen and (min-width: 1000px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:not(.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:first-child) {
    margin-top: -28px;
  }
}
@media screen and (min-width: 1200px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:not(.lp_enex_thanks .sub_cta .sub_cta_btn_box__code__content p:first-child) {
    margin-top: -27px;
    font-size: 60px;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_btn_box__code-sp {
    display: none;
  }
}
.lp_enex_thanks .sub_cta .sub_cta_btn_box__code-sp__content {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #333333;
  font-size: 5vw;
}
.lp_enex_thanks .sub_cta .sub_cta_box_note {
  max-width: 850px;
  margin: 0 5%;
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  .lp_enex_thanks .sub_cta .sub_cta_box_note {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .lp_enex_thanks .sub_cta .sub_cta_box_note {
    font-size: 1.8vw;
  }
}
@media screen and (min-width: 1000px) {
  .lp_enex_thanks .sub_cta .sub_cta_box_note {
    margin: 0 auto;
    font-size: 19px;
  }
}

.home {
  background-color: #e4e4e4;
}
.home .l-header {
  background-color: #ffffff;
}
.home .l-header__wrap {
  background-color: #ffffff;
}
.home__sp-banner .bnr-contact a {
  padding-top: 0;
  padding-bottom: 0;
}
.home .l-container {
  position: relative;
}
.home .edit-padding .bnr-contact__pc {
  padding: 50px 0 20px;
}
@media screen and (min-width: 768px) {
  .home .edit-padding .bnr-contact__pc p.phone-txt {
    top: 71%;
  }
}
@media screen and (min-width: 1000px) {
  .home .edit-padding .bnr-contact__pc p.phone-txt {
    top: 72%;
  }
}
.home .edit-padding .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .home .edit-padding .bnr-contact__pc__btn-form {
    top: 68%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .home .edit-padding .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
.home .bnr-contact__sp {
  padding: 30px 0 10px;
}
.home .bnr-contact__pc {
  padding: 50px 0;
}
.home .bnr-contact__pc img {
  max-width: 800px;
}
.home .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.home .bnr-contact__pc .phone-txt::after {
  content: "";
}
.home .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.home .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc__btn-form {
    top: 61%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.home .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}

.toppage_font_weight {
  font-weight: bold;
}

#toppage_main_visual {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual {
    background-image: url("../images/visual/bg_top.webp");
    background-size: 100%;
    background-repeat: round;
    height: 530px;
  }
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .main_visual__inner {
    height: 100%;
    max-width: 1040px;
    margin: auto;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .main_visual__inner {
    padding: 0;
  }
}
#toppage_main_visual .l-main_top_mainvisual {
  flex: 0 0 50%;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual {
    max-width: initial;
    left: initial;
    transform: initial;
    height: 100%;
    min-height: 277px;
    margin-top: 20px;
    position: relative;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .l-main_top_mainvisual {
    flex: 0 0 53%;
  }
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual img {
    position: absolute;
  }
}
#toppage_main_visual .l-main_top_mainvisual__bg {
  width: 100%;
  display: none;
}
#toppage_main_visual .l-main_top_mainvisual__title {
  position: relative;
}
#toppage_main_visual .l-main_top_mainvisual__title__img {
  display: block !important;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual__title__img {
    transform: translateX(20%);
    height: 204px;
    width: 330px;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .l-main_top_mainvisual__title__img {
    max-width: initial;
    width: 408px;
    height: 252px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }
}
#toppage_main_visual .l-main_top_mainvisual__title .u-display-sp {
  font-weight: normal;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 99;
  width: fit-content;
}
#toppage_main_visual .l-main_top_mainvisual__title .u-display-sp p {
  font-size: 10px;
  margin-bottom: 5px;
}
#toppage_main_visual .l-main_top_mainvisual__title .u-display-sp a {
  position: relative;
  text-decoration: none;
  color: #333333;
  background-color: #fce44d;
  font-weight: normal;
  font-size: 12px;
  display: block;
  padding: 5px 40px;
  border-radius: 23px;
  border: 0.2em solid #edc348;
}
#toppage_main_visual .l-main_top_mainvisual__title .u-display-sp a::after {
  content: "";
  background-image: url("../images/icon/arrow_r.svg");
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}
#toppage_main_visual .l-main_top_mainvisual__car, #toppage_main_visual .l-main_top_mainvisual__women {
  bottom: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual__car, #toppage_main_visual .l-main_top_mainvisual__women {
    display: block;
  }
}
#toppage_main_visual .l-main_top_mainvisual__car {
  left: 0;
  height: 160px;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual__car {
    height: 260px;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .l-main_top_mainvisual__car {
    height: 205px;
    left: 39px;
    bottom: 19px;
  }
}
#toppage_main_visual .l-main_top_mainvisual__women {
  right: -24px;
  height: 166px;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual__women {
    height: 265px;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .l-main_top_mainvisual__women {
    right: -5px;
    bottom: -20px;
    height: 266px;
  }
}
#toppage_main_visual .l-main_top_mainvisual_1_2 .l-main_top_mainvisual_1_2__women {
  right: -73px;
  height: 166px;
  z-index: 9;
  bottom: 0px;
}
@media screen and (min-width: 768px) {
  #toppage_main_visual .l-main_top_mainvisual_1_2 .l-main_top_mainvisual_1_2__women {
    height: 265px;
    bottom: 0;
  }
}
#toppage_main_visual .l-main_top_mainvisual2 {
  z-index: 99;
  margin-right: 1%;
  width: 45%;
}
@media screen and (min-width: 1000px) {
  #toppage_main_visual .l-main_top_mainvisual2 {
    width: 43%;
  }
}

.main_consult_wrap {
  position: absolute;
  padding: 10px 40px;
  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 .policy dt {
  display: flex;
  justify-content: center;
  font-size: 16px !important;
}
.main_consult_wrap .policy .checkPolicy {
  display: block !important;
  height: 27px !important;
  width: 20px !important;
  margin-right: 10px;
}
.main_consult_wrap .policy .policy__text {
  text-decoration: none;
}
.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 rgba(38, 125, 203, 0.8);
    height: 29px;
    padding: 4px 6px;
    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: 20px 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;
}

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

#toppage_cont2 * {
  min-height: 0;
  min-width: 0;
}
#toppage_cont2 {
  background-color: #ffffff;
}
#toppage_cont2 .img_list {
  height: 55px;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-width: 1350px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #toppage_cont2 .img_list {
    height: 90px;
  }
}
#toppage_cont2 .img_list_cont {
  min-width: 118px;
}
@media screen and (min-width: 768px) {
  #toppage_cont2 .img_list_cont {
    min-width: 150px;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_cont2 .img_list_cont {
    min-width: 230px;
  }
}
#toppage_cont2 .img_list_cont:first-child {
  padding: 0 8px;
}
#toppage_cont2 .img_list_cont p {
  line-height: 1.4;
  font-size: 10px;
  min-width: 108px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  #toppage_cont2 .img_list_cont p {
    min-width: 140px;
    font-size: 12px;
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_cont2 .img_list_cont p {
    font-size: 16px;
  }
}
#toppage_cont2 .img_list_cont p span {
  font-size: 12px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #toppage_cont2 .img_list_cont p span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  #toppage_cont2 .img_list_cont p span {
    font-size: 24px;
  }
}
#toppage_cont2 .car_splide .splide__list {
  transform-style: unset !important;
}
@media screen and (max-width: 767px) {
  #toppage_cont2 .car_splide .splide__slide {
    height: 46px;
  }
}
#toppage_cont2 .car_splide .splide__slide img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.page-wake {
  background-color: #e4e4e4;
}
.page-wake h1,
.page-wake .breadcrumbs,
.page-wake .wake_container2-wrap {
  background-color: #ffffff;
}
.page-wake h2.choice {
  text-align: center;
}
.page-wake h2.choice img {
  height: 116px;
}
@media screen and (min-width: 768px) {
  .page-wake h2.choice img {
    height: 155px;
  }
}
.page-wake h3 {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-wake h3 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.page-wake h3 img {
  height: 48px;
}
@media screen and (min-width: 768px) {
  .page-wake h3 img {
    height: 34px;
  }
}
.page-wake h3 img.one-col {
  height: 26px;
}
@media screen and (min-width: 768px) {
  .page-wake h3 img.one-col {
    height: 34px;
  }
}
@media screen and (min-width: 768px) {
  .page-wake .sub, .page-wake .sub__blue, .page-wake .sub__black {
    font-size: 16px;
    letter-spacing: inherit !important;
  }
}
.page-wake .banner-wake {
  background: url("../images/wake/wake_background.svg") no-repeat;
  background-size: 100% 100%;
  text-align: center;
}
.page-wake .banner-wake__wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap {
    width: 65%;
  }
}
.page-wake .banner-wake__wrap__img {
  position: relative;
  max-width: 650px;
  margin: auto;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img {
    padding: 30px 0 15px;
  }
}
.page-wake .banner-wake__wrap__img__text {
  display: flex;
  flex-direction: column;
  padding-right: 0;
  width: 80%;
  position: relative;
  z-index: 1;
}
.page-wake .banner-wake__wrap__img__text h1 {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.page-wake .banner-wake__wrap__img__text img,
.page-wake .banner-wake__wrap__img__text p {
  padding: 0.5rem;
  padding-left: 0;
}
.page-wake .banner-wake__wrap__img__text p {
  font-size: 10px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__text p {
    font-size: 14px;
    width: 100%;
  }
}
.page-wake .banner-wake__wrap__img__text .wake_title_first {
  width: 100%;
  max-width: 260px;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__text .wake_title_first {
    max-width: 442px;
  }
}
.page-wake .banner-wake__wrap__img__text .wake_title_group {
  display: flex;
}
.page-wake .banner-wake__wrap__img__text .wake_title_ruikei {
  position: relative;
  width: auto;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__text .wake_title_ruikei {
    width: 100%;
    margin: 0 auto;
  }
}
.page-wake .banner-wake__wrap__img__text-first {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__text-first {
    max-width: 442px;
  }
}
.page-wake .banner-wake__wrap__img__text-first img {
  width: 100%;
}
.page-wake .banner-wake__wrap__img__text-second {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__text-second {
    flex-direction: row;
    gap: 26px;
    padding: 32px 0 18px;
  }
}
.page-wake .banner-wake__wrap__img__text-second__second {
  display: flex;
  align-items: flex-end;
}
.page-wake .banner-wake__wrap__img__text-second__second__note {
  color: #fff;
  margin-left: -12px;
  margin-bottom: 2px;
}
.page-wake .banner-wake__wrap__img__text-second img {
  width: 80%;
}
.page-wake .banner-wake__wrap__img__wake_title_note {
  position: relative;
  z-index: 1;
  text-align: left;
  color: #fff;
}
.page-wake .banner-wake__wrap__img__wake_title_note img:first-child {
  margin-bottom: 10px;
}
.page-wake .banner-wake__wrap__img__wake_title_note1 {
  color: #fff;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__wake_title_note1 {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-wake .banner-wake__wrap__img__wake_title_note2 {
  color: #fff;
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 14.98px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__wake_title_note2 {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-wake .banner-wake__wrap__img__wake_title_person {
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .banner-wake__wrap__img__wake_title_person {
    right: -42px;
  }
}
.page-wake .banner-wake__wrap__img__wake_title_person img {
  height: auto;
}
@media screen and (min-width: 768px) {
  .page-wake .second-text {
    padding: 17px 29px 10px;
  }
}
.page-wake .step-wake {
  background: white;
  padding: 0;
}
.page-wake .step-wake__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__container {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .step-wake__container {
    padding: 60px 0;
  }
}
.page-wake .step-wake__box {
  gap: 20px;
  display: block;
  margin: 30px auto 46px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box {
    display: flex;
    gap: 15px;
    margin: 50px auto 83px;
    justify-content: space-evenly;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__box {
    gap: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .step-wake__box {
    gap: 30px;
  }
}
.page-wake .step-wake__box a {
  text-decoration: none;
  cursor: pointer;
}
.page-wake .step-wake__box-item {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-item {
    max-width: 182px;
  }
}
.page-wake .step-wake__box-item:nth-child(3) {
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-item:nth-child(3) {
    margin: 0;
  }
}
.page-wake .step-wake__box-item:nth-child(2) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-item:nth-child(2) {
    margin: 0;
  }
}
.page-wake .step-wake__box-item:nth-child(4) {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-item:nth-child(4) {
    margin: 0;
  }
}
.page-wake .step-wake__box-content {
  background-color: #E6F2FF;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0 15px 15px;
  position: unset;
  cursor: pointer;
  align-items: stretch;
  max-height: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content {
    display: block;
    position: relative;
    flex: 1;
    padding: 17px 0 9px;
    max-height: 88px;
  }
}
.page-wake .step-wake__box-content__title {
  padding-top: 1px;
  color: #ffffff;
  margin: 0 auto;
  background-color: #006EBB;
  border-radius: 14px;
  max-height: 20px;
  width: 100%;
  height: 100%;
  max-width: 45px;
  position: unset;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content__title {
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    max-width: 50px;
  }
}
.page-wake .step-wake__box-content__title p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Helvetica;
  margin: 0 !important;
  gap: 1px;
  font-size: 9.05px;
  font-weight: 700;
  line-height: 10.4px;
  text-align: center;
}
.page-wake .step-wake__box-content__title p span {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.4px;
  text-align: center;
}
.page-wake .step-wake__box-content__text {
  width: 80%;
  text-align: left;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content__text {
    margin-bottom: -3px;
    width: auto;
  }
}
.page-wake .step-wake__box-content__text p {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  margin: 0 0 0 11px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content__text p {
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.55vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__box-content__text p {
    font-size: 18px;
  }
}
.page-wake .step-wake__box-content__text span {
  font-family: Noto Sans;
  font-size: 13px;
  font-weight: 700;
  line-height: 17.71px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content .second {
    margin-bottom: 2px;
  }
}
.page-wake .step-wake__box-content__arrow {
  width: 10%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__box-content__arrow {
    width: auto;
  }
}
.page-wake .step-wake__content {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  margin-top: 20px;
}
.page-wake .step-wake__title {
  text-align: center;
}
.page-wake .step-wake__title h2 {
  margin: 0;
}
.page-wake .step-wake__title h2 img {
  height: 100%;
}
.page-wake .step-wake__first-group-box-item {
  background-color: #FFFCF2;
  padding: 30px 0 20px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group-box-item {
    padding: 50px 0 30px;
  }
}
.page-wake .step-wake__first-group {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(140.3deg, #B4843D 0.79%, #EBDB6A 50.39%, #B4843D 100%); /* Gradient background */
  width: 100%;
}
.page-wake .step-wake__first-group__title {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -18px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__title {
    top: -25px;
  }
}
.page-wake .step-wake__first-group__content h3 {
  margin: 0;
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__content h3 {
    font-size: 30px;
  }
}
.page-wake .step-wake__first-group__content p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin: 15px 20px 30px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__content p {
    letter-spacing: unset;
    margin: 20px auto 46px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.86px;
    text-align: center;
  }
}
.page-wake .step-wake__first-group__content p span {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.8em;
  font-weight: bold;
  background-size: 200% 0.5em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffff66 50%);
  transition: background-position 2s ease 0.1s;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__content p span {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.86px;
    text-align: center;
  }
}
.page-wake .step-wake__first-group__icon-box {
  background-color: #FFFCF2;
  text-align: center;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  padding: 3px 20px 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__first-group__icon-box {
    padding: 0 50px 30px;
  }
}
.page-wake .step-wake__first-group__icon-box__title {
  box-sizing: border-box;
  text-align: center;
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  align-items: baseline;
}
.page-wake .step-wake__first-group__icon-box__title div {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title {
    padding-bottom: 0;
    display: block;
    flex: 1;
    height: 310px;
  }
  .page-wake .step-wake__first-group__icon-box__title:nth-child(5) {
    border-right: 2px solid #CCCCCC;
    padding: 0;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:nth-child(5) {
    padding: 0 13px 0 20px;
    margin-right: 39px;
  }
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:nth-child(3) {
    border-left: 2px solid #CCCCCC;
    border-right: 2px solid #CCCCCC;
    padding: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:nth-child(3) {
    padding: 0 19px 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:first-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:first-child {
    margin-right: 39px;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__first-group__icon-box__title {
    height: 275px;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .step-wake__first-group__icon-box__title {
    height: 225px;
  }
}
.page-wake .step-wake__first-group__icon-box__title h4 {
  margin: 10px auto 15px;
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title h4 {
    font-size: 20px;
    line-height: 23px;
  }
}
.page-wake .step-wake__first-group__icon-box__title h4 span {
  font-family: Noto Sans;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title h4 span {
    font-size: 14px;
    line-height: 18px;
  }
}
.page-wake .step-wake__first-group__icon-box__title__icon2 {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title__icon2 {
    margin-top: 13px;
  }
}
.page-wake .step-wake__first-group__icon-box__title__text-second {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title__text-second {
    margin: 26px auto 30px !important;
  }
}
.page-wake .step-wake__first-group__icon-box__title__text-third {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title__text-third {
    width: auto;
    margin: 21px auto 30px !important;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .step-wake__first-group__icon-box__title__text-third {
    width: 207px;
  }
}
.page-wake .step-wake__first-group__icon-box__title__text-fourth {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title__text-fourth {
    margin: 16px auto 30px !important;
  }
}
.page-wake .step-wake__first-group__icon-box__title:nth-child(5) {
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:nth-child(5) {
    margin-left: 0;
  }
}
.page-wake .step-wake__first-group__icon-box__title:nth-child(7) {
  margin-left: 14px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__title:nth-child(7) {
    margin-left: 0;
  }
}
.page-wake .step-wake__first-group__icon-box__text {
  width: 100%;
  margin: 0;
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 10px;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__text {
    margin-bottom: 0;
    border-bottom: unset;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 22.86px;
    width: 100%;
    max-width: 196px;
  }
}
.page-wake .step-wake__first-group__icon-box__text span {
  font-family: Noto Sans;
  font-size: 11px;
  font-weight: 400;
  line-height: 15.72px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__first-group__icon-box__text span {
    font-size: 13px;
    line-height: 18.57px;
  }
}
.page-wake .step-wake__first-group__icon-box__text:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-wake .step-wake__second-group {
  display: block;
  gap: 30px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group {
    margin-top: 83px;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__second-group {
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .step-wake__second-group {
    gap: 30px;
  }
}
.page-wake .step-wake__second-group__title {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__title {
    top: -25px;
  }
}
.page-wake .step-wake__second-group__content {
  height: auto;
}
.page-wake .step-wake__second-group__content h3 {
  margin: 0;
}
.page-wake .step-wake__second-group__content h3:first-child {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content h3:first-child {
    font-size: 30px;
  }
}
.page-wake .step-wake__second-group__content h3:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 21px 23px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content h3:not(:first-child) {
    padding: 0 50px 20px;
    font-size: 16px;
    line-height: 22.86px;
  }
}
.page-wake .step-wake__second-group__content__img {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img {
    margin-top: 20px;
  }
}
.page-wake .step-wake__second-group__content__img-group {
  justify-content: center;
  gap: 40px;
  max-width: 720px;
  display: block;
  margin: 0 20px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group {
    width: 100%;
    display: flex;
    margin: 40px auto 30px;
  }
}
.page-wake .step-wake__second-group__content__img-group div {
  position: relative;
  text-align: left;
}
@media screen and (min-width: 400px) {
  .page-wake .step-wake__second-group__content__img-group div {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group div {
    flex: 1;
  }
}
.page-wake .step-wake__second-group__content__img-group h4 {
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #006EBB;
  margin-top: -15px;
  z-index: 1;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group h4 {
    max-width: 100%;
    display: block;
    position: unset;
    padding: 0;
    color: #006EBB;
    background: transparent;
    margin: 16px auto 28px;
    font-family: Noto Sans;
    font-size: 2.3vw;
    font-weight: 600;
    line-height: 25px;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__second-group__content__img-group h4 {
    font-size: 20px;
  }
}
.page-wake .step-wake__second-group__content__img-group p {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-top: 21px;
  letter-spacing: -0.2px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group p {
    letter-spacing: normal;
    margin-top: 15px;
  }
}
.page-wake .step-wake__second-group__content__img-group p span {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.8em;
  font-weight: bold;
  background-size: 200% 0.5em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffff66 50%);
  transition: background-position 2s ease 0.1s;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group p span {
    background-image: none;
  }
}
.page-wake .step-wake__second-group__content__img-group__text1 {
  margin-top: -40px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end !important;
  background-color: transparent !important;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group__text1 {
    margin: 0 auto 20px !important;
  }
}
.page-wake .step-wake__second-group__content__img-group__text1 p {
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  padding: 0 10px;
  background-color: #006EBB;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group__text1 p {
    background-color: transparent;
    font-family: Noto Sans;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
  }
}
.page-wake .step-wake__second-group__content__img-group__text1 p:first-child {
  margin: 0 0 2px 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group__text1 p:first-child {
    margin: 0;
  }
}
.page-wake .step-wake__second-group__content__img-group__text1 p:last-child {
  margin: 2px 0 0 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__img-group__text1 p:last-child {
    margin: 0;
  }
}
.page-wake .step-wake__second-group__content__img-group-sp {
  max-width: 295px;
}
.page-wake .step-wake__second-group__content span {
  font-family: Noto Sans;
  font-weight: 700;
}
.page-wake .step-wake__second-group__content__text {
  letter-spacing: -0.5px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__text {
    letter-spacing: unset;
  }
}
.page-wake .step-wake__second-group__content .second-text {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content .second-text {
    max-width: 720px;
    text-align: center;
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__second-group__content .second-text {
    max-width: 100%;
    font-size: 16px;
  }
}
.page-wake .step-wake__second-group__content .third-text {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content .third-text {
    max-width: 525px;
  }
}
.page-wake .step-wake__second-group__content .fourth-text {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content .fourth-text {
    max-width: 670px;
  }
}
.page-wake .step-wake__second-group__content__text {
  max-width: 100%;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 15px 20px 0;
  margin: 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__text {
    padding: 0;
    max-width: 590px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 22.86px;
  }
}
.page-wake .step-wake__second-group__content__text p {
  padding: 0;
  margin: 0;
  font-family: Inter;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__text p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 18px;
  }
}
.page-wake .step-wake__second-group__content__text span {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.8em;
  font-weight: bold;
  background-size: 200% 0.5em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #ffff66 50%);
  transition: background-position 2s ease 0.1s;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__content__text span {
    font-family: Noto Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.86px;
  }
}
.page-wake .step-wake__second-group__btn {
  margin: 15px auto;
  background-color: #00366E;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__btn {
    width: 400px;
  }
}
.page-wake .step-wake__second-group__btn a {
  width: 100%;
  color: white;
  text-decoration: none;
  display: flex;
}
.page-wake .step-wake__second-group__btn p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  padding: 15px 0;
  flex-basis: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group__btn p {
    font-size: 16px;
    padding: 15px 0;
    line-height: 21.79px;
  }
}
.page-wake .step-wake__second-group__btn img {
  margin-right: 10px;
}
.page-wake .step-wake__second-group-container {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(140.3deg, #B4843D 0.79%, #EBDB6A 50.39%, #B4843D 100%); /* Gradient background */
  width: 100%;
  height: auto;
  margin-bottom: 36px;
}
.page-wake .step-wake__second-group-container:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group-container {
    margin-bottom: 83px;
  }
  .page-wake .step-wake__second-group-container:last-child {
    margin-bottom: 0;
  }
}
.page-wake .step-wake__second-group-container__box {
  background-color: #FFFCF2;
  padding: 30px 0 20px;
}
@media screen and (min-width: 768px) {
  .page-wake .step-wake__second-group-container__box {
    padding: 50px 20px 30px;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .step-wake__second-group-container__box {
    padding: 50px 0 30px;
  }
}
.page-wake .trader-table-wake {
  background: #fff;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake {
    margin-bottom: 0;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew {
  padding: 0;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px 30px;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container {
    padding: 0;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap {
  text-align: center;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap h2 {
  margin: 0;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap h2 img {
  width: 100%;
  height: auto;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap .sub-tt {
    height: 30px;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew__container .title-wrap h2 img {
  width: auto;
  height: auto;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__table {
  display: block;
  position: relative;
  padding: 20px 0 15px;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container__table {
    padding: 30px 0 40px;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__table .table {
  text-align: center;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__table .table img {
  display: inline-block;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container__table .table img {
    max-width: 100%;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__table__hand-swipe {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 30%;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__group {
  text-align: center;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__group__content-second {
  margin: 6px auto 8px;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container__group__content-second {
    margin: 30px auto 15px;
  }
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__group__content-third {
  color: #ff4d4d;
}
.page-wake .trader-table-wake .trader-compare-table-renew__container__group__content-third p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-wake .trader-table-wake .trader-compare-table-renew__container__group__content-third p {
    font-size: 40px;
    font-weight: 700;
    line-height: 54.48px;
  }
}
.page-wake .cta-wake {
  background-color: #ffffff;
}
.page-wake .cta-wake .l-header {
  background-color: #ffffff;
}
.page-wake .cta-wake .l-header__wrap {
  background-color: #ffffff;
}
.page-wake .cta-wake__sp-banner .bnr-contact a {
  padding-top: 0;
  padding-bottom: 0;
}
.page-wake .cta-wake .l-container {
  position: relative;
}
.page-wake .cta-wake .edit-padding .bnr-contact__pc {
  padding: 50px 0 20px;
}
@media screen and (min-width: 768px) {
  .page-wake .cta-wake .edit-padding .bnr-contact__pc p.phone-txt {
    top: 71%;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .edit-padding .bnr-contact__pc p.phone-txt {
    top: 72%;
  }
}
.page-wake .cta-wake .edit-padding .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-wake .cta-wake .edit-padding .bnr-contact__pc__btn-form {
    top: 68%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .edit-padding .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
.page-wake .cta-wake .bnr-contact__sp {
  padding: 30px 0 10px;
}
.page-wake .cta-wake .bnr-contact__pc {
  padding: 60px 0;
}
.page-wake .cta-wake .bnr-contact__pc img {
  max-width: 800px;
}
.page-wake .cta-wake .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-wake .cta-wake .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.page-wake .cta-wake .bnr-contact__pc .phone-txt::after {
  content: "";
}
.page-wake .cta-wake .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.page-wake .cta-wake .bnr-contact__pc__btn-form {
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .page-wake .cta-wake .bnr-contact__pc__btn-form {
    top: 61%;
    left: 63.5%;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .bnr-contact__pc__btn-form {
    left: 63%;
  }
}
@media screen and (min-width: 768px) {
  .page-wake .cta-wake .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .page-wake .cta-wake .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.page-wake .cta-wake .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.page-wake .cta-wake .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.page-wake .cta-wake .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}

.l-container.right {
  padding-right: 0;
}
.l-container.left {
  padding-left: 0;
}

#wake_container {
  padding: 1rem 0;
}

.wake_header {
  background: url("../images/wake/wake_background.svg") no-repeat;
  background-size: 100% 100%;
  text-align: center;
}

.wake_title_wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .wake_title_wrap {
    width: 65%;
  }
}
.wake_title_wrap .wake_title_img {
  position: relative;
  max-width: 650px;
  margin: auto;
}
.wake_title_wrap .wake_title_img .wake_title_text {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-right: 0;
  width: 80%;
  position: relative;
  z-index: 99;
}
.wake_title_wrap .wake_title_img .wake_title_text img,
.wake_title_wrap .wake_title_img .wake_title_text p {
  padding: 0.5rem;
  padding-left: 0;
}
.wake_title_wrap .wake_title_img .wake_title_text p {
  font-size: 10px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .wake_title_wrap .wake_title_img .wake_title_text p {
    font-size: 14px;
    width: 100%;
  }
}
.wake_title_wrap .wake_title_img .wake_title_text .wake_title_ruikei {
  width: 75%;
  margin: none;
}
@media screen and (min-width: 768px) {
  .wake_title_wrap .wake_title_img .wake_title_text .wake_title_ruikei {
    width: 45%;
    margin: 0 auto;
  }
}
.wake_title_wrap .wake_title_img .wake_title_person {
  position: absolute;
  height: 90%;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .wake_title_wrap .wake_title_img .wake_title_person {
    height: 100%;
  }
}
.wake_title_wrap .wake_title_img .wake_title_person img {
  height: 100%;
}

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

.wake_content_wrap {
  background: #ffffff;
}
.wake_content_wrap__body {
  padding: 0 20px 15px;
}
@media screen and (min-width: 768px) {
  .wake_content_wrap__body {
    padding: 0 20px 30px;
  }
}
.wake_content_wrap .wake_content_header {
  margin-top: -15px;
}
.wake_content_wrap .wake_content_header .c-subtitle_badge {
  font-size: 12px;
  width: 100%;
}
.wake_content_wrap .wake_content1 {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url("../images/wake/bg_wake_content1.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: 15rem;
}
.wake_content_wrap .wake_content2 {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url("../images/wake/bg_wake_content2.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: 15rem;
}
.wake_content_wrap .wake_content3 {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url("../images/wake/bg_wake_content3.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  width: 100%;
  height: 15rem;
}
.wake_content_wrap .wake_content4 {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #fff 100%), url("../images/wake/bg_wake_content4.webp");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 15rem;
}
@media screen and (min-width: 768px) {
  .wake_content_wrap .wake_content1,
  .wake_content_wrap .wake_content2,
  .wake_content_wrap .wake_content3,
  .wake_content_wrap .wake_content14 {
    background-position: 50%;
  }
}
.wake_content_wrap .wake_content_text {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .wake_content_wrap .wake_content_text {
    width: 85%;
  }
}
.wake_content_wrap .wake_content_table tr,
.wake_content_wrap .wake_content_table td {
  border: 1px solid #e4e4e4;
  padding: 0.5rem;
}

.wake_content_subtitle {
  background: #2ba4a0;
  color: #ffffff;
  display: inline-block;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
}

.wake_content_title {
  color: #267dcb;
  font-size: 1.2rem;
}

.wake_content_tokuchou {
  flex-wrap: wrap;
}
.wake_content_tokuchou > div {
  border: 1px solid #e4e4e4;
  border-radius: 5px;
  flex: 0 0 48%;
  margin-bottom: 20px;
  padding: 1rem;
  position: relative;
}
.wake_content_tokuchou > div::after {
  position: absolute;
  top: -4px;
  left: 5px;
  content: "";
  display: inline-block;
  background-size: 40px;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
}
.wake_content_tokuchou > div:nth-child(1):after {
  background-image: url("../images/icon/wake_feature1.svg");
}
.wake_content_tokuchou > div:nth-child(2):after {
  background-image: url("../images/icon/wake_feature2.svg");
}
.wake_content_tokuchou > div:nth-child(3):after {
  background-image: url("../images/icon/wake_feature3.svg");
}
.wake_content_tokuchou > div:nth-child(4):after {
  background-image: url("../images/icon/wake_feature4.svg");
}
@media screen and (min-width: 768px) {
  .wake_content_tokuchou > div:nth-child(3), .wake_content_tokuchou > div:nth-child(4) {
    margin-bottom: 0;
  }
}
.wake_content_tokuchou .tokuchou_font {
  font-weight: bold;
}

#wake_container2 .title {
  max-width: 450px;
  margin: auto;
}
#wake_container2 .title img:first-child {
  width: 70%;
}
#wake_container2 .title img:nth-of-type(2) {
  width: 80%;
}
#wake_container2 .title img:not(:last-child) {
  margin-bottom: 1rem;
}
#wake_container2 h3 {
  text-align: left;
  padding-left: 40px;
  color: #267dcb;
  margin-top: 0;
  font-size: 17px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  #wake_container2 h3 {
    line-height: 1.4;
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.post-type-archive-area .main_title_wrap .main_title_icon,
.post-type-archive-city .main_title_wrap .main_title_icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
}
.post-type-archive-area .area_header2,
.post-type-archive-city .area_header2 {
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area .area_header2,
  .post-type-archive-city .area_header2 {
    width: 80%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
}
.post-type-archive-area .area_header2 .area_header_checklist ul,
.post-type-archive-city .area_header2 .area_header_checklist ul {
  font-size: 14px;
  list-style: none;
  padding: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area .area_header2 .area_header_checklist ul,
  .post-type-archive-city .area_header2 .area_header_checklist ul {
    font-size: 14px;
    padding: 1rem 3rem;
  }
}
.post-type-archive-area .area_header2 .area_header_checklist ul li,
.post-type-archive-city .area_header2 .area_header_checklist ul li {
  flex: 0 0 40%;
  background: url("../images/icon/check.svg") no-repeat;
  background-position: 0 50%;
  background-size: 16px;
  padding-left: 1.2rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area .area_header2 .area_header_checklist ul li,
  .post-type-archive-city .area_header2 .area_header_checklist ul li {
    flex: 0 0 50%;
  }
}
.post-type-archive-area .area_header2 .replation,
.post-type-archive-city .area_header2 .replation {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area .area_header2 .replation,
  .post-type-archive-city .area_header2 .replation {
    font-size: 16px;
  }
}
.post-type-archive-area .area_header2 .island_note-right,
.post-type-archive-city .area_header2 .island_note-right {
  font-size: 85%;
  position: absolute;
  bottom: 2px;
  right: 2px;
}
.post-type-archive-area #area_container,
.post-type-archive-city #area_container {
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area #area_container .area_list_item,
  .post-type-archive-city #area_container .area_list_item {
    font-size: 16px;
    background-color: #ffffff;
  }
}
.post-type-archive-area #area_container .area_list_item .area_list_item_parent,
.post-type-archive-city #area_container .area_list_item .area_list_item_parent {
  padding: 0.5rem;
  flex: 0 0 15%;
  background: #333333;
  color: #ffffff;
}
.post-type-archive-area #area_container .area_list_item .area_list_item_child,
.post-type-archive-city #area_container .area_list_item .area_list_item_child {
  flex: 0 0 85%;
  flex-wrap: wrap;
  flex-direction: row !important;
}
.post-type-archive-area #area_container .area_list_item .area_list_item_child div,
.post-type-archive-city #area_container .area_list_item .area_list_item_child div {
  flex: 0 0 50%;
  padding: 0.5rem;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background: url("../images/icon/arrow_r.svg") no-repeat 95% 50%;
  background-color: #ffffff;
  background-size: 20px;
}
@media screen and (min-width: 768px) {
  .post-type-archive-area #area_container .area_list_item .area_list_item_child div,
  .post-type-archive-city #area_container .area_list_item .area_list_item_child div {
    flex: 0 0 20%;
  }
}
.post-type-archive-area #area_container .area_list_item .area_list_item_child div:hover,
.post-type-archive-city #area_container .area_list_item .area_list_item_child div:hover {
  opacity: 0.5;
  cursor: pointer;
}
.post-type-archive-area #area_container .area_list_item .area_list_item_child div a,
.post-type-archive-city #area_container .area_list_item .area_list_item_child div a {
  display: block;
  color: #333333;
  text-decoration: none;
}

/*---------------------------------------
該当ページ
- single
  - area
  - city
-----------------------------------------*/
.single-area .purchase-flow,
.single-city .purchase-flow {
  background-color: #e6f2fd;
}
@media screen and (min-width: 768px) {
  .single-area .purchase-flow,
  .single-city .purchase-flow {
    background-color: #e4e4e4;
  }
}

.p-single-pref-city h1 {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-single-pref-city h1 {
    font-size: 16px;
  }
}
.p-single-pref-city .breadcrumbs {
  border-top: 2px solid #f0f0f0;
  box-shadow: 10px 0 0px rgba(0, 0, 0, 0.1);
}

.no-scroll {
  overflow: hidden;
}

.area-single {
  background-color: #e4e4e4;
}
.area-single .bg-white {
  background-color: white;
}
@media screen and (max-width: 767px) {
  .area-single .contact_bnr_normal-sp-cta {
    margin: 24px auto;
  }
}
.area-single {
  /*どんな車でも買取
  -------------------------------------*/
}
.area-single h2.every-car-title {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .area-single h2.every-car-title {
    font-size: 28px;
  }
}
.area-single__any-purchase {
  background-color: #ffffff;
}
.area-single__any-purchase__sample-car {
  padding-right: 11px;
  padding-left: 11px;
}
.area-single__any-purchase__sample-car ul {
  border-bottom: 1px solid rgba(51, 51, 51, 0.6);
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__any-purchase__sample-car ul {
    border-bottom: 2px solid rgba(51, 51, 51, 0.6);
  }
}
.area-single__any-purchase__sample-car ul li {
  padding-right: 4px;
  padding-left: 4px;
}
.area-single__any-purchase__sample-car ul li .img-wrap {
  height: 22vw;
  max-height: 116px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .area-single__any-purchase__sample-car ul li .img-wrap {
    height: 9vw;
    max-height: 100px;
  }
}
.area-single__any-purchase__sample-car ul li .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.area-single__any-purchase__sample-car ul li p {
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__any-purchase__sample-car ul li p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__any-purchase__sample-car ul li p {
    font-size: 16px;
  }
}
.area-single__any-purchase__letter {
  font-size: 13px;
  letter-spacing: -0.08em;
}
@media screen and (min-width: 768px) {
  .area-single__any-purchase__letter {
    font-size: 14px;
  }
}
.area-single {
  /* spフォーム
  --------------------------------------*/
}
.area-single .form-col2 {
  padding-top: 8px;
}
.area-single {
  /* CTA
  --------------------------------------*/
}
.area-single .u-bg-white .bnr-contact__sp {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .area-single .add-padding-top {
    padding-top: 16px;
  }
}
.area-single .add_padding {
  padding-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .area-single .add_padding {
    padding-bottom: 0;
  }
}
.area-single__cta {
  padding: 5px 0 0;
}
@media screen and (min-width: 768px) {
  .area-single__cta {
    padding: 14px 0;
  }
}
.area-single__cta .l-container {
  padding: 0;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .area-single__cta .l-container {
    max-width: 560px;
  }
}
.area-single .bnr-contact__sp {
  padding-top: 10px;
  padding-bottom: 0;
}
.area-single .bnr-contact__pc {
  padding-top: 5px;
}
.area-single .bnr-contact__pc img {
  max-width: 800px;
}
.area-single .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .area-single .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.area-single .bnr-contact__area a {
  position: relative;
}
.area-single .bnr-contact__area a p {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-single .bnr-contact__area a p {
    position: absolute;
    color: white;
    left: 28%;
    font-size: 46px;
    top: 14%;
  }
}
@media screen and (min-width: 768px) {
  .area-single .bnr-contact__area__web-cta {
    width: 50%;
  }
}
.area-single .strength__container {
  padding: 30px 20px 0;
}
@media screen and (min-width: 768px) {
  .area-single .strength__container {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .strength__container {
    padding: 60px 0;
  }
}
.area-single .trader-compare-table-renew__container {
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .area-single .trader-compare-table-renew__container {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .trader-compare-table-renew__container {
    padding: 60px 0;
  }
}
.area-single {
  /* 提携解体業者
  ---------------------------------------*/
}
.area-single__partner-company {
  background-color: #ffffff;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company {
    padding-bottom: 60px;
  }
}
.area-single__partner-company .title-wrap .note {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company .title-wrap .note {
    text-align: center;
  }
}
.area-single__partner-company .l-container {
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .area-single__partner-company .l-container {
    padding: 0;
  }
}
.area-single__partner-company__card .area-map {
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map {
    height: 531px;
    margin-bottom: 40px;
  }
}
.area-single__partner-company__card .area-map__popup {
  display: block;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map__popup {
    display: flex;
  }
}
.area-single__partner-company__card .area-map__popup__img {
  margin-right: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map__popup__img {
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.area-single__partner-company__card .area-map__popup__img img {
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map__popup__img img {
    width: 200px;
  }
}
.area-single__partner-company__card .area-map__popup__info__company {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map__popup__info__company {
    font-size: 18px;
  }
}
.area-single__partner-company__card .area-map__popup__info__address {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .area-map__popup__info__address {
    font-size: 16px;
  }
}
.area-single__partner-company__card .area-map .gm-style-iw-ch button {
  width: 40px !important;
  height: 40px !important;
  left: 10px;
  top: -4px;
}
.area-single__partner-company__card .info {
  font-size: 13px;
  padding: 25px 0 0;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: auto;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .info {
    padding: 12px;
    font-size: 16px;
    padding: 0;
  }
}
.area-single__partner-company__card .info__company {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 10px;
}
.area-single__partner-company__card .info__company a {
  display: contents;
}
.area-single__partner-company__card .info__dismantling {
  padding-top: 10px;
}
.area-single__partner-company__card .info::-webkit-scrollbar {
  display: none;
}
.area-single__partner-company__card .info__company {
  border-bottom: none;
}
.area-single__partner-company__card .info__company a {
  display: contents;
}
.area-single__partner-company__card .info__company li {
  display: grid;
  grid-template-columns: 170px auto;
  margin-bottom: 15px;
  margin-top: 20px;
}
.area-single__partner-company__card .info__company__details {
  display: inline;
}
.area-single__partner-company__card .info__company__title {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  color: #fff;
  width: 140px;
  margin-right: 20px;
  height: 28px;
  background: #006EBB;
  text-align: center;
  border-radius: 3px;
}
.area-single__partner-company__card .info__tag {
  display: flex;
  gap: 10px;
  margin-bottom: 199px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .info__tag {
    margin-bottom: 227px;
  }
}
.area-single__partner-company__card .info__tag li {
  border: 1.5px solid #2BA4A0;
  border-radius: 3px;
  background: #D9FFFE;
  color: #19615F;
  padding: 0 10px;
  flex: 1 0 -1%;
  box-sizing: border-box;
}
.area-single__partner-company__card .info__comment {
  margin-top: 30px;
  padding: 20px;
  background: #E6F2FD;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.area-single__partner-company__card .info__comment__title {
  font-weight: bold;
}
.area-single__partner-company__card .info__comment button {
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3490196078);
  cursor: pointer;
  padding: 0;
  font-weight: 400;
  color: white;
  background-color: #00366E;
  text-align: center;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 80px;
  width: 208px;
  height: 38.45px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .info__comment button {
    height: 46.69px;
    width: 252.57px;
  }
}
.area-single__partner-company__card .info__comment button p {
  margin-bottom: 0;
  width: 100%;
  font-size: 14px;
  line-height: 19.07px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .info__comment button p {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.area-single__partner-company__card .info__comment button img {
  width: 11px !important;
  height: 11px !important;
  margin-right: 25px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .info__comment button img {
    margin-right: 22px;
    width: 19.63px !important;
    height: 19.63px !important;
  }
}
.area-single__partner-company__card .info__comment__details {
  height: 3.2em;
  overflow: hidden;
  position: relative;
}
.area-single__partner-company__card .info__comment__details::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1em;
}
.area-single__partner-company__card .popup-moderator-comment {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.area-single__partner-company__card .popup {
  display: flex;
  gap: 10px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  max-width: 780px;
  overflow-y: auto;
  position: relative;
  margin: 0 40px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup {
    margin: 0 20px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__partner-company__card .popup {
    margin: 0 auto;
  }
}
.area-single__partner-company__card .popup__img {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup__img {
    display: block;
  }
}
.area-single__partner-company__card .popup__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup__title {
    font-size: 18px;
    line-height: 24.52px;
  }
}
.area-single__partner-company__card .popup__content {
  font-weight: 400;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
  margin: 15px auto 20px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup__content {
    margin: 20px auto 30px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.area-single__partner-company__card .popup__content .info__comment__details {
  height: 100%;
}
.area-single__partner-company__card .popup button {
  cursor: pointer;
  padding: 0;
  font-weight: 400;
  color: white;
  background-color: #00366E;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  width: 100%;
  max-width: 227px;
  height: 47px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup button {
    height: 52px;
    max-width: 538px;
  }
}
.area-single__partner-company__card .popup button p {
  margin-bottom: 0;
  width: 100%;
  font-size: 14px;
  line-height: 19.07px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup button p {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.area-single__partner-company__card .popup button img {
  width: 11px !important;
  height: 11px !important;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .popup button img {
    margin-right: 22px;
    width: 19.63px !important;
    height: 19.63px !important;
  }
}
.area-single__partner-company__card .popup-moderator-comment.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-single__partner-company__card {
  /* splide
  -------------------------------------------------------*/
}
.area-single__partner-company__card .splide {
  margin: 0 auto;
  max-width: 335px;
}
@media screen and (min-width: 500px) {
  .area-single__partner-company__card .splide {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide {
    padding: 0 20px;
    max-width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__partner-company__card .splide {
    padding: 0;
    max-width: 95%;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__partner-company__card .splide {
    padding: 0;
    max-width: 100%;
  }
}
.area-single__partner-company__card .splide__list {
  width: 100%;
  margin-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list {
    margin-bottom: 30px !important;
  }
}
.area-single__partner-company__card .splide__list .splide__slide {
  margin-right: 30px !important;
}
.area-single__partner-company__card .splide__list .splide__slide .area_haishal_partner_store {
  text-align: center;
  border: 1.5px solid #FF4D4D;
  background: #FFDEDE;
  width: 145px;
  font-size: 15px;
  color: #FF4D4D;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list .splide__slide .area_haishal_partner_store {
    margin-top: 16px;
  }
}
.area-single__partner-company__card .splide__list .splide__slide img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 500px) {
  .area-single__partner-company__card .splide__list .splide__slide img {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list .splide__slide img {
    height: 280px;
  }
}
.area-single__partner-company__card .splide__list .splide__slide .image_default {
  height: 187px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .area-single__partner-company__card .splide__list .splide__slide .image_default {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list .splide__slide .image_default {
    height: 280px;
  }
}
.area-single__partner-company__card .splide__list .splide__slide .image_default img {
  height: 187px;
  width: 100%;
  position: absolute;
  zoom: 140%;
  left: 0;
  top: -26px;
}
@media screen and (min-width: 500px) {
  .area-single__partner-company__card .splide__list .splide__slide .image_default img {
    height: 280px;
    top: -40px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list .splide__slide .image_default img {
    height: 280px;
    top: -40px;
  }
}
.area-single__partner-company__card .splide__list .splide__slide__title {
  background: #006EBB;
  color: white;
  text-align: center;
  align-content: center;
  font-size: 20px;
  padding: 0 2px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list .splide__slide__title {
    height: 44px;
  }
}
.area-single__partner-company__card .splide__list img {
  height: auto;
  width: 100%;
}
.area-single__partner-company__card .splide__list {
  /* 件数によって表示変更 --------*/
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list.one-col li.splide__slide {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list.one-col li.splide__slide img {
    height: 300px;
    width: 56%;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide__list.one-col li.splide__slide .info {
    width: 44%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__partner-company__card .splide__list.two-col li.splide__slide img {
    height: 300px;
  }
}
.area-single__partner-company__card .splide {
  /* arrow ------------------------------*/
}
.area-single__partner-company__card .splide .splide__arrow {
  top: 150px;
  z-index: 1;
  background-color: #333333;
}
.area-single__partner-company__card .splide .splide__arrow svg {
  fill: #ffffff;
  font-size: 10px;
}
.area-single__partner-company__card .splide .splide__arrow--prev {
  left: -10px;
}
.area-single__partner-company__card .splide .splide__arrow--next {
  right: -10px;
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide .splide__arrow--prev {
  left: -30px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide.renewal-land-transport-bureau-splide .splide__arrow--next {
    right: -10px;
  }
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide .splide__arrow--next {
  right: -30px;
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page .splide__arrow {
  display: none;
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page-sp {
  margin-bottom: 16px;
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page-sp .splide__arrow {
  display: none;
}
.area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page-sp .splide__pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 234px;
  bottom: auto !important;
}
@media screen and (min-width: 500px) {
  .area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page-sp .splide__pagination {
    top: 328px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card .splide.renewal-land-transport-bureau-splide--city-page-sp .splide__pagination {
    display: none;
  }
}
.area-single__partner-company__card .splide {
  /* dots -----------------------------*/
}
.area-single__partner-company__card .splide .splide__pagination {
  display: none;
}
.area-single__partner-company__card .splide .splide__pagination__page {
  margin: 15px 10px 20px;
  height: 10px;
  width: 10px;
}
.area-single__partner-company__card__map {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .area-single__partner-company__card__map {
    height: 350px;
  }
}
.area-single {
  /* step
  ---------------------------------------*/
}
.area-single__step .home_step__container {
  padding: 30px 20px 0;
}
@media screen and (min-width: 768px) {
  .area-single__step .home_step__container {
    padding: 30px 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__step .home_step__container {
    padding: 30px 0 0;
  }
}
.area-single {
  /* mv_area
  ---------------------------------------*/
}
.area-single .mv_area {
  background-image: url("../images/area/mv/pc/background.webp");
  padding: 0;
  border-top: 2px solid #f0f0f0;
  box-shadow: 10px 0 0px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .area-single .mv_area {
    padding: 30px 0 0 0;
  }
}
.area-single .mv_area__img {
  display: flex;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .area-single .mv_area__img {
    height: 578px;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .mv_area__img {
    padding: 0;
  }
}
.area-single .mv_area__img__left {
  display: flex;
  align-items: end;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .area-single .mv_area__img__left {
    align-items: unset;
    left: 33px;
  }
}
.area-single .mv_area__img__left__picture {
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .area-single .mv_area__img__left__picture {
    margin-top: -5px;
    margin-left: -45px;
  }
}
.area-single .mv_area__img__left__picture img {
  position: relative;
  z-index: 1;
  width: 100vw;
  padding-left: 0;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .area-single .mv_area__img__left__picture img {
    width: 100%;
    height: 52.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .area-single .mv_area__img__left__picture img {
    padding-top: 0;
    height: 565px;
  }
}
.area-single .mv_area__img__left .picture-container {
  position: relative;
}
.area-single .mv_area__img__left .picture-container .text-container {
  position: absolute;
  z-index: 2;
  left: 20%;
  font-size: 20px;
  transform: translate(2%, 31%);
}
@media screen and (min-width: 400px) {
  .area-single .mv_area__img__left .picture-container .text-container {
    font-size: 5vw;
    transform: translate(4%, 38%);
  }
}
@media screen and (min-width: 768px) {
  .area-single .mv_area__img__left .picture-container .text-container {
    font-size: 3vw;
    transform: translate(6%, -73%);
    top: 8%;
    left: 8%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single .mv_area__img__left .picture-container .text-container {
    font-size: 30px;
    transform: translate(-10%, 0%);
    top: 0;
    left: 22%;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .mv_area__img__left .picture-container .text-container {
    transform: translate(-16%, -6%);
  }
}
.area-single .mv_area__img__left .picture-container .text-container p {
  margin: 0;
  color: #f4dc00;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.area-single .mv_area__img__left .picture-container .text-container p span {
  color: #ffffff;
  font-weight: 400;
}
.area-single .mv_area__img__left .picture-container picture {
  display: block;
}
.area-single .mv_area__img__left .picture-container .mv__img__left__car {
  position: absolute;
  z-index: 1;
  display: none !important;
  width: 22vw;
  display: flex;
  justify-content: right;
  bottom: -10%;
  right: -25px;
}
@media screen and (min-width: 768px) {
  .area-single .mv_area__img__left .picture-container .mv__img__left__car {
    display: block !important;
    bottom: -8%;
    right: -28px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .mv_area__img__left .picture-container .mv__img__left__car {
    bottom: -3%;
    left: 59%;
  }
}
.area-single .mv_area__img__content-new .form_old .main_consult_wrap {
  max-width: 100% !important;
}
.area-single .mv_area__shape {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-single .mv_area__shape {
    display: block;
  }
}
.area-single .mv_area__shape {
  position: relative;
  width: 100%;
  margin-top: -2.6vw;
}
.area-single .mv_area__shape__img {
  width: 100%;
}
.area-single .mv_area__shape__img img {
  width: 100%;
  height: auto;
  display: block;
}
.area-single .mv_area__shape__img .overlay-img {
  width: 100%;
  max-width: 1300px;
  height: auto;
  margin: 25px auto 0;
  padding-bottom: 40px;
}
.area-single .mv_area .form_old {
  position: relative;
  border: 5px solid #006ebb;
  z-index: 9;
}
.area-single .mv_area .form_old .main_consult_wrap {
  position: relative;
  margin: 0;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal {
  padding: 0;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner {
  border: none;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .title {
  width: 100%;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .step1 .c-form-modal__step__contents {
  margin-right: 0;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar {
  width: 5px;
  background-color: #e4e4e4;
  margin-right: 5px;
  height: 10px;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar-track,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar-track,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar-track,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar-track {
  border-radius: 5px;
}
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step1 .step1__inner::-webkit-scrollbar-thumb,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step2 .c-form-modal__step__contents::-webkit-scrollbar-thumb,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step3 .c-form-modal__step__contents::-webkit-scrollbar-thumb,
.area-single .mv_area .form_old .main_consult_wrap .c-form-modal .c-form-modal__inner .c-form-modal__step.step4 .c-form-modal__step__contents::-webkit-scrollbar-thumb {
  background: #006ebb;
  border-radius: 5px;
}
.area-single .mv_area .form_old .c-form-modal__close {
  cursor: pointer;
}
.area-single .mv_area .form_old .m-maker,
.area-single .mv_area .form_old .m-carname,
.area-single .mv_area .form_old .m-distance,
.area-single .mv_area .form_old .m-pref {
  cursor: pointer;
}
.area-single {
  /* review-slide
  ---------------------------------------*/
}
.area-single .review-slide {
  background: #C2DEF2;
  padding: 0;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide {
    background: #ffffff;
    padding: 44px 20px 60px;
  }
}
@media screen and (min-width: 768px) {
  .area-single .review-slide {
    padding: 44px 0 60px;
  }
}
.area-single .review-slide .l-container {
  background: #C2DEF2;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide .l-container {
    padding: 60px 0;
  }
}
.area-single .review-slide__title {
  text-align: center;
  padding: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__title {
    padding: 0 0 30px;
  }
}
.area-single .review-slide__title h2 {
  margin: 0;
}
.area-single .review-slide__title h2 img {
  width: auto;
  height: auto;
}
.area-single .review-slide .splide {
  visibility: visible;
}
.area-single .review-slide__group {
  display: flex;
  justify-content: center;
  height: auto;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group {
    height: 355px;
    margin: 0 auto;
  }
}
.area-single .review-slide__group__track {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__list {
    padding: 15px 0;
  }
}
.area-single .review-slide__group__box {
  height: fit-content;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px 15px;
  padding: 20px 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box {
    gap: 0 30px;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 50px 3vw 40px 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .review-slide__group__box {
    padding: 50px 50px 40px 50px;
  }
}
.area-single .review-slide__group__box__img img {
  height: auto;
}
@media screen and (min-width: 1200px) {
  .area-single .review-slide__group__box__img img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .area-single .review-slide__group__box__img img {
    max-width: 260px;
    height: 204px;
  }
}
.area-single .review-slide__group__box__content {
  padding-top: 0;
}
.area-single .review-slide__group__box__content__first {
  display: flex;
  gap: 17px;
  align-items: baseline;
  width: 100%;
  justify-content: space-evenly;
  margin: 15px auto;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first {
    margin: 0 auto;
    justify-content: flex-start;
    gap: 2vw;
  }
}
@media screen and (min-width: 1200px) {
  .area-single .review-slide__group__box__content__first {
    gap: 40px;
  }
}
.area-single .review-slide__group__box__content__first p {
  margin: 0;
  color: #808080;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first p {
    font-weight: 500;
    font-size: 19px;
    line-height: 32.69px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single .review-slide__group__box__content__first p {
    font-size: 24px;
  }
}
.area-single .review-slide__group__box__content__first h3 {
  margin: 0;
  text-align: unset;
}
.area-single .review-slide__group__box__content__first .voice_prefecture {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first .voice_prefecture {
    width: auto;
  }
}
.area-single .review-slide__group__box__content__first-icon {
  display: flex;
  gap: 5px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first-icon {
    margin: 10px 0 30px;
  }
}
.area-single .review-slide__group__box__content__first-icon__icon-stars {
  color: #F2BE41 !important;
  display: flex;
  gap: 5px;
  margin-left: 5px;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first-icon__icon-stars {
    margin-left: 50px;
    margin-bottom: 20px;
    align-items: unset;
  }
}
.area-single .review-slide__group__box__content__first-icon__icon-stars__icon {
  color: #f2be41;
}
.area-single .review-slide__group__box__content__first-icon__icon-stars p {
  margin: 0;
  padding: 0px;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__content__first-icon__icon-stars p {
    font-size: 16px;
    line-height: 28px;
    text-align: left;
  }
}
.area-single .review-slide__group__box__description p {
  color: #333333;
  letter-spacing: 0em;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__box__description p {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single .review-slide__group__box__description p {
    font-size: 16px;
    line-height: 28px;
  }
}
.area-single .review-slide__group .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
  background: #006ebb;
}
.area-single .review-slide__group__pagination {
  text-align: center;
  display: none;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group__pagination {
    position: absolute;
    top: 78.5% !important;
    display: block !important;
  }
}
.area-single .review-slide__group .splide__arrow--prev {
  background-color: #858585;
  left: -0.3em;
  top: 125px;
}
.area-single .review-slide__group .splide__arrow--next {
  background-color: #858585;
  right: -0.3em;
  top: 125px;
}
.area-single .review-slide__group .splide__arrow {
  height: 27px;
  width: 27px;
  top: 44.5%;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group .splide__arrow {
    top: 41%;
    height: 60px;
    width: 60px;
  }
}
.area-single .review-slide__group .splide__arrow svg {
  fill: #ffffff !important;
  height: 8px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .area-single .review-slide__group .splide__arrow svg {
    height: 18.96px;
    width: 18.96px;
  }
}
.area-single .review-slide__group .splide__pagination {
  bottom: 0;
}
.area-single .review-slide__group .splide__pagination li {
  margin: 0 8px;
}
.area-single .review-slide__group .splide__pagination li button {
  background-color: white !important;
}
.area-single .review-slide__group .splide__pagination__page {
  opacity: 1;
}
.area-single .review-slide__group .splide__pagination__page.is-active {
  background: #006ebb !important;
}
.area-single {
  /* solution
  ---------------------------------------*/
}
.area-single__solution {
  padding: 0;
  background-color: #ffffff;
}
.area-single__solution__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5% 0;
}
@media screen and (min-width: 768px) {
  .area-single__solution__container {
    padding: 150px 5% 0;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__solution__container {
    padding: 150px 0 0;
  }
}
.area-single__solution__title {
  text-align: center;
  margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .area-single__solution__title {
    margin-bottom: 30px;
  }
}
.area-single__solution__title img {
  width: auto;
  height: auto;
}
.area-single__solution__group {
  display: block;
}
@media screen and (min-width: 768px) {
  .area-single__solution__group {
    display: flex;
    gap: 30px;
    align-items: baseline;
  }
}
.area-single__solution__group div {
  flex: 1;
}
.area-single__solution__content {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .area-single__solution__content {
    display: block;
  }
}
.area-single__solution__content p {
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: 21.79px;
  text-align: left;
  margin-top: 0;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .area-single__solution__content p {
    font-size: 24px;
    line-height: 32.69px;
    margin-top: 20px;
  }
}
.area-single__solution__content p span {
  color: #FF4D4D;
  font-weight: 700;
  line-height: 21.79px;
}
@media screen and (min-width: 768px) {
  .area-single__solution__content p span {
    line-height: 32.69px;
    text-align: left;
  }
}
.area-single__solution__content div:first-child() {
  flex: 1;
}
.area-single__solution__content div:not(:first-child) {
  flex: 2;
}
.area-single__solution__content:nth-child(2) {
  margin: 15px auto;
}
.area-single {
  /* __bnr-refund-renew
  ---------------------------------------*/
}
.area-single__bnr-refund-renew {
  padding: 0;
  background-color: #e6f2fd;
}
.area-single__bnr-refund-renew__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew__container {
    padding: 60px 0;
  }
}
.area-single__bnr-refund-renew__container__title {
  text-align: center;
  margin-bottom: 20px;
}
.area-single__bnr-refund-renew__container__title h2 {
  margin: 0;
}
.area-single__bnr-refund-renew__container__title h2 img {
  width: auto;
  height: auto;
}
.area-single__bnr-refund-renew .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .title-wrap .sub-tt {
    height: 35px;
  }
}
.area-single__bnr-refund-renew .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .title-wrap .main-tt {
    height: 35px;
  }
}
.area-single__bnr-refund-renew .img-wrap {
  position: relative;
}
.area-single__bnr-refund-renew .img-wrap p {
  position: absolute;
  font-size: 1rem;
}
.area-single__bnr-refund-renew .img-wrap .refund-month {
  word-break: keep-all;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  top: 3%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .area-single__bnr-refund-renew .img-wrap .refund-month {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .img-wrap .refund-month {
    font-size: 16px;
    top: 2vw;
    left: 28%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew .img-wrap .refund-month {
    top: 20px;
    left: 280px;
  }
}
.area-single__bnr-refund-renew .img-wrap .refund-month span {
  font-weight: bold;
  font-size: 6vw;
}
@media screen and (min-width: 500px) {
  .area-single__bnr-refund-renew .img-wrap .refund-month span {
    font-size: 24px;
  }
}
.area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice {
  top: 10.5%;
  left: 12%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 18.5vw;
    font-size: inherit;
  }
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 7.5vw;
    left: 4%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 90px;
  }
}
.area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
  display: inline-block;
  text-align: center;
  font-size: 15vw;
  width: 47.5vw;
  letter-spacing: -0.06rem;
}
@media screen and (min-width: 500px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 80px;
    width: 50vw;
    max-width: 278px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 8vw;
    width: 29vw;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 92px;
    width: 320px;
  }
}
.area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice span {
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
}
.area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice span:nth-of-type(1) {
  position: relative;
  bottom: -8px;
}
@media screen and (min-width: 768px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice span {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew .img-wrap .p-return__priceLPrice span {
    font-size: 28px;
  }
}
.area-single__bnr-refund-renew .img-wrap .refund-txt {
  font-size: 1.2vw;
  letter-spacing: -0.08em;
  position: absolute;
  top: 70%;
  left: 4%;
}
@media screen and (min-width: 1000px) {
  .area-single__bnr-refund-renew .img-wrap .refund-txt {
    font-size: 12px;
    letter-spacing: -0.04em;
    top: 320px;
  }
}
.area-single__bnr-refund-renew__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) {
  .area-single__bnr-refund-renew__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.area-single__bnr-refund-renew__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.area-single__bnr-refund-renew__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.area-single__bnr-refund-renew__btn p img {
  float: right;
  margin-right: 20px;
}
.area-single {
  /* sell-car
  ---------------------------------------*/
}
.area-single__sell-car {
  padding: 0;
  background-color: #DFF7F7;
}
.area-single__sell-car__container {
  padding: 30px 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__container {
    margin: 0 auto;
    padding: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__container {
    margin: 0 auto;
    padding: 60px 0;
  }
}
.area-single__sell-car__title {
  text-align: center;
}
.area-single__sell-car__content {
  font-weight: 400;
  text-align: left;
  font-size: 14px;
  line-height: 20.72px;
  margin: 10px auto 20px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__content {
    text-align: center;
    margin: 30px auto;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.area-single__sell-car__box {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 334px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box {
    max-width: 980px;
  }
}
.area-single__sell-car__box img {
  border-radius: 8px;
  box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.2509803922);
}
.area-single__sell-car__box__first-text {
  position: absolute;
  font-weight: 700;
  font-size: 30px;
  line-height: 43.44px;
  text-align: center;
  top: 4%;
  left: 20%;
  transform: translateX(-21%);
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__first-text {
    font-weight: 700;
    line-height: 57.92px;
    text-align: center;
    font-size: 3.7vw;
    top: 13%;
    left: 15.5%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box__first-text {
    top: 14%;
    left: 15%;
    font-size: 40px;
  }
}
.area-single__sell-car__box__second-text {
  position: absolute;
  top: 50%;
  left: 10%;
  text-align: center;
  transform: translateX(-21%);
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__second-text {
    top: 54.5%;
    left: 42.5%;
    transform: translate(-50%, -50%);
  }
}
.area-single__sell-car__box__third-text {
  position: absolute;
  top: 37.7%;
  left: 25%;
  text-align: center;
  transform: translateX(-21%);
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__third-text {
    top: 44%;
    left: 60.5%;
    transform: translate(-50%, -50%);
  }
}
.area-single__sell-car__box__price {
  font-weight: 700;
  font-size: 26px;
  line-height: 30.47px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__price {
    margin-bottom: 0;
    font-size: 3vw;
    line-height: 42.51px;
    text-align: center;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box__price {
    margin-bottom: 12px;
    font-size: 36.28px;
  }
}
.area-single__sell-car__box__price span {
  font-size: 14px;
  line-height: 16.41px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__price span {
    font-size: 1.814vw;
    line-height: 21.26px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box__price span {
    font-size: 18.14px;
  }
}
.area-single__sell-car__box__date {
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__date {
    font-size: 1.8vw;
    line-height: 23.44px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box__date {
    font-size: 20px;
  }
}
.area-single__sell-car__box__fourth-text {
  position: absolute;
  top: 22.5%;
  left: 46%;
  text-align: center;
  transform: translateX(-12%);
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__fourth-text {
    top: 16.5%;
    left: 71.3%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box__fourth-text {
    top: 3.5%;
    left: 64.5%;
    transform: translateX(-21%);
  }
}
.area-single__sell-car__box__fourth-text__price {
  color: #E90606;
  font-weight: 700;
  font-size: 40px;
  line-height: 46.88px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__fourth-text__price {
    margin-bottom: 0;
    font-size: 5vw;
    line-height: 65.1px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box__fourth-text__price {
    margin-bottom: 15px;
    font-size: 55.56px;
  }
}
.area-single__sell-car__box__fourth-text__price span {
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__fourth-text__price span {
    font-size: 2vw;
    line-height: 23.44px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box__fourth-text__price span {
    font-size: 20px;
  }
}
.area-single__sell-car__box__fourth-text__date {
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box__fourth-text__date {
    font-size: 20px;
    line-height: 23.44px;
  }
}
.area-single__sell-car__box2 {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 334px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2 {
    max-width: 980px;
  }
}
.area-single__sell-car__box2__first-text {
  position: absolute;
  font-weight: 700;
  font-size: 30px;
  line-height: 43.44px;
  text-align: center;
  top: 4%;
  left: 20%;
  transform: translateX(-21%);
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__first-text {
    font-weight: 700;
    line-height: 57.92px;
    text-align: center;
    font-size: 3.7vw;
    top: 4%;
    left: 12%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box2__first-text {
    top: 14%;
    left: 15%;
    font-size: 40px;
  }
}
.area-single__sell-car__box2__second-text {
  position: absolute;
  top: 22.5%;
  left: 20%;
  text-align: center;
  transform: translateX(-21%);
}
@media screen and (min-width: 400px) {
  .area-single__sell-car__box2__second-text {
    top: 23%;
  }
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__second-text {
    top: 14.5%;
    left: 58.5%;
    transform: translate(-50%, -49%);
  }
}
.area-single__sell-car__box2__third-text {
  position: absolute;
  top: 35.8%;
  left: 34%;
  text-align: center;
  transform: translateX(-20%);
}
@media screen and (min-width: 400px) {
  .area-single__sell-car__box2__third-text {
    top: 36.3%;
  }
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__third-text {
    top: 22%;
    left: 76%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box2__third-text {
    top: 22%;
    left: 76.2%;
  }
}
.area-single__sell-car__box2__price {
  font-weight: 700;
  font-size: 26px;
  line-height: 30.47px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__price {
    margin-bottom: 0;
    font-size: 3vw;
    line-height: 42.51px;
    text-align: center;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box2__price {
    margin-bottom: 12px;
    font-size: 36.28px;
  }
}
.area-single__sell-car__box2__price span {
  font-size: 14px;
  line-height: 16.41px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__price span {
    font-size: 1.814vw;
    line-height: 21.26px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box2__price span {
    font-size: 18.14px;
  }
}
.area-single__sell-car__box2__date {
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__date {
    font-size: 1.8vw;
    line-height: 23.44px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box2__date {
    font-size: 20px;
  }
}
.area-single__sell-car__box2__fourth-text {
  position: absolute;
  top: 48%;
  left: 42.5%;
  text-align: center;
  transform: translateX(0%);
}
@media screen and (min-width: 400px) {
  .area-single__sell-car__box2__fourth-text {
    top: 48.5%;
    left: 44.5%;
    text-align: center;
    transform: translateX(-1%);
  }
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__fourth-text {
    top: 44%;
    left: 74%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box2__fourth-text {
    top: 31.5%;
    left: 73.5%;
    transform: translateX(2%);
  }
}
.area-single__sell-car__box2__fourth-text__price {
  color: #006EBB;
  font-weight: 700;
  font-size: 40px;
  line-height: 46.88px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__fourth-text__price {
    margin-bottom: 0;
    font-size: 5vw;
    line-height: 65.1px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__sell-car__box2__fourth-text__price {
    margin-bottom: 15px;
    font-size: 55.56px;
  }
}
.area-single__sell-car__box2__fourth-text__price span {
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__fourth-text__price span {
    font-size: 2vw;
    line-height: 23.44px;
  }
}
@media screen and (min-width: 1200px) {
  .area-single__sell-car__box2__fourth-text__price span {
    font-size: 20px;
  }
}
.area-single__sell-car__box2__fourth-text__date {
  color: white;
  font-weight: 700;
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__sell-car__box2__fourth-text__date {
    font-size: 20px;
    line-height: 23.44px;
  }
}
.area-single {
  /* worry
  ---------------------------------------*/
}
.area-single__worry {
  padding: 0;
  background-color: #C2DEF2;
}
.area-single__worry__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .area-single__worry__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__worry__container {
    padding: 60px 0;
  }
}
.area-single__worry__title-pc {
  text-align: center;
  margin-bottom: 30px;
}
.area-single__worry__title-pc img {
  width: auto;
  height: auto;
}
.area-single__worry__title-sp {
  text-align: center;
  margin-bottom: 20px;
}
.area-single__worry__title-sp img {
  width: auto;
  height: auto;
}
.area-single__worry__title-sp div:first-child {
  margin-bottom: 6px;
}
.area-single__worry__group {
  background-color: #ffffff;
}
.area-single__worry__content {
  margin: 0 auto;
  text-align: center;
  width: auto;
  padding: 20px 15px;
}
@media screen and (min-width: 400px) {
  .area-single__worry__content {
    width: 352px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__worry__content {
    width: 675px;
    padding: 50px 0;
  }
}
.area-single__worry__content__dots {
  font-size: 16px;
  color: #FF4D4D;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .area-single__worry__content__dots {
    font-size: 28px;
  }
}
.area-single__worry__content-child {
  display: flex;
  align-items: center;
}
.area-single__worry__content-child img {
  margin-top: -6px;
}
.area-single__worry__content-child p {
  font-weight: 500;
  font-size: 15px;
  line-height: 20.43px;
  text-align: left;
  margin-left: 6px;
  margin-bottom: 0;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .area-single__worry__content-child p {
    margin-left: 15px;
    font-size: 30px;
    line-height: 40.86px;
  }
}
.area-single__worry__content-child p span {
  color: #FF4D4D;
  font-weight: 700;
  font-size: 15px;
  line-height: 20.43px;
}
@media screen and (min-width: 768px) {
  .area-single__worry__content-child p span {
    font-size: 30px;
    line-height: 40.86px;
  }
}
.area-single__worry__content-child:nth-child(2) {
  margin: 17px 0;
}
.area-single__worry__arrow {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 93.6%;
}
.area-single {
  /* strength
  ---------------------------------------*/
}
.area-single__strength-container .strength__third-group {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .area-single__strength-container .strength__third-group {
    margin-top: 52px;
  }
}
.area-single {
  /* faq
  ---------------------------------------*/
}
.area-single__faq-area .home-faq .faq__container {
  padding: 14px 20px 5px;
}
@media screen and (min-width: 768px) {
  .area-single__faq-area .home-faq .faq__container {
    padding: 30px 0;
  }
}
.area-single {
  /* お客様の声
  -----------------------------------------*/
}
.area-single__customer-voice .row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice .row {
    justify-content: space-between;
  }
}
.area-single__customer-voice__card {
  background-color: #ffffff;
  padding: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.area-single__customer-voice__card:not(:first-child) {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice__card:not(:first-child) {
    margin-top: 0;
  }
}
.area-single__customer-voice__card::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice__card {
    padding: 13px;
    flex: 0 0 100%;
  }
  .area-single__customer-voice__card:nth-child(n+5) {
    margin-top: 15px;
  }
}
.area-single__customer-voice__card .card-head {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 62px;
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice__card .card-head {
    font-size: 14px;
    width: 120px;
  }
}
.area-single__customer-voice__card .card-head img {
  height: 62px;
  width: 62px;
  object-fit: cover;
  margin-bottom: 8px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice__card .card-head img {
    height: 100%;
    width: 120px;
    max-height: 120px;
    margin-top: 10px;
  }
}
.area-single__customer-voice__card .card-head__info {
  line-height: 1;
  margin-left: 0px;
}
.area-single__customer-voice__card .card-head__info p {
  margin-bottom: 8px;
}
.area-single__customer-voice__card .card-head__info p:last-child {
  margin-bottom: 0;
}
.area-single__customer-voice__card .card-letter {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
  width: calc(100% - 80px);
}
@media screen and (min-width: 768px) {
  .area-single__customer-voice__card .card-letter {
    font-size: 14px;
    width: calc(100% - 130px);
  }
}
.area-single {
  /* 他社との違い
  -----------------------------------------*/
}
.area-single__difference-other {
  background-color: #ffffff;
}
.area-single__difference-other__original > ul {
  position: relative;
  margin-top: 30px;
}
.area-single__difference-other__original > ul:before {
  content: "ハイシャルならでは!";
  color: #ffffff;
  background-color: #267dcb;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__original > ul:before {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__original > ul {
    width: 80%;
    margin: 30px auto 20px;
  }
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__original > ul .left,
  .area-single__difference-other__original > ul .right {
    width: 50%;
    padding: 20px !important;
    border-radius: 3px !important;
  }
}
.area-single__difference-other__original > ul .left ul,
.area-single__difference-other__original > ul .right ul {
  padding-left: 25px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__original > ul .left ul,
  .area-single__difference-other__original > ul .right ul {
    font-size: 16px;
  }
}
.area-single__difference-other__original > ul .left ul li,
.area-single__difference-other__original > ul .right ul li {
  list-style: disc;
}
.area-single__difference-other__original > ul .left {
  background-color: #e6f2fd;
  padding: 20px 10px;
  padding-bottom: 0;
  border-radius: 3px 3px 0 0;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__original > ul .left {
    border-right: 3px solid #ffffff;
  }
}
.area-single__difference-other__original > ul .right {
  background-color: #e6f2fd;
  padding: 20px 10px;
  padding-top: 0;
  border-radius: 0 0 3px 3px;
}
.area-single__difference-other__point {
  font-size: 12px;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__point {
    font-size: 16px;
    text-align: center;
  }
}
.area-single__difference-other__point .head {
  color: #fe0000;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
  margin: auto;
  position: relative;
}
.area-single__difference-other__point .head::before, .area-single__difference-other__point .head::after {
  content: "|";
  color: #fe0000;
  position: absolute;
  display: inline-block;
  bottom: 0;
  font-size: 17px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__point .head::before, .area-single__difference-other__point .head::after {
    bottom: -3px;
    font-size: 24px;
  }
}
.area-single__difference-other__point .head::before {
  left: -12px;
  transform: rotate(-25deg);
}
.area-single__difference-other__point .head::after {
  right: -12px;
  transform: rotate(25deg);
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__point .head {
    font-size: 20px;
  }
}
.area-single__difference-other__point__txt {
  font-size: 13px;
  letter-spacing: -0.08em;
  margin-top: 10px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__point__txt {
    font-size: 16px;
  }
}
.area-single__difference-other__point .attention {
  position: absolute;
  right: 0;
  font-size: 10px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__point .attention {
    position: inherit;
    text-align: center;
    font-size: 12px;
  }
}
.area-single__difference-other__compare {
  margin-top: 30px;
}
.area-single__difference-other__compare .attention {
  border: 1px solid red;
  display: block;
  margin-top: 15px;
  color: red;
  text-align: center;
  padding: 5px;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .area-single__difference-other__compare .attention {
    font-size: 18px;
  }
}
.area-single {
  /* 担当者コメント・陸運局・買取エリア
  -----------------------------------------*/
}
.area-single__scrapped-info {
  padding: 0px 0 10px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info {
    padding: 0;
  }
}
.area-single__scrapped-info {
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__land-transport-bureau h2, .area-single__scrapped-info__pruchase-area h2, .area-single__scrapped-info__neighborhood-area h2 {
    margin-top: 30px;
  }
}
.area-single__scrapped-info {
  background-color: #ffffff;
  /* 担当者のコメント*/
}
.area-single__scrapped-info__charge-content {
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__charge-content {
    margin: 30px auto 0;
  }
}
.area-single__scrapped-info__charge-content > div {
  border: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__charge-content > div {
    padding: 0;
    display: flex;
    align-items: flex-start;
  }
  .area-single__scrapped-info__charge-content > div img {
    width: 32%;
    object-fit: cover;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .area-single__scrapped-info__charge-content > div img {
    margin: 24px 0 0 15px;
  }
}
.area-single__scrapped-info__charge-content > div div {
  font-size: 15px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__charge-content > div div {
    font-size: 16px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .area-single__scrapped-info__charge-content > div div::-webkit-scrollbar {
    display: none;
  }
}
.area-single__scrapped-info__charge-content .f14 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__charge-content .f14 {
    font-size: 16px;
  }
}
.area-single__scrapped-info__land-transport-bureau, .area-single__scrapped-info__pruchase-area, .area-single__scrapped-info__neighborhood-area {
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau, .area-single__scrapped-info__pruchase-area, .area-single__scrapped-info__neighborhood-area {
    margin: 60px auto 30px;
  }
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__land-transport-bureau, .area-single__scrapped-info__pruchase-area, .area-single__scrapped-info__neighborhood-area {
    width: 100%;
  }
  .area-single__scrapped-info__land-transport-bureau .wrap, .area-single__scrapped-info__pruchase-area .wrap, .area-single__scrapped-info__neighborhood-area .wrap {
    border: 1px solid #e4e4e4;
    padding: 20px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .area-single__scrapped-info__land-transport-bureau .wrap::-webkit-scrollbar, .area-single__scrapped-info__pruchase-area .wrap::-webkit-scrollbar, .area-single__scrapped-info__neighborhood-area .wrap::-webkit-scrollbar {
    display: none;
  }
}
.area-single__scrapped-info {
  /* 陸運局*/
}
.area-single__scrapped-info .transport-bureau__box {
  background-color: #e4e4e4;
  margin-top: 20px;
  padding: 7px 15px 5px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.area-single__scrapped-info .transport-bureau__box::after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  top: 50%;
  height: 75px;
  background-color: #e4e4e4;
  left: 50%;
  transform: translate(-50%, -50%);
}
.area-single__scrapped-info .transport-bureau__box p {
  border: 1px solid #e4e4e4;
  background-color: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.4);
  padding: 5px 10px;
  font-size: 13px;
  position: relative;
  z-index: 9;
}
.area-single__scrapped-info .transport-bureau__box p:hover {
  opacity: 0.6;
}
.area-single__scrapped-info .remove-line {
  margin-top: 14px;
}
.area-single__scrapped-info .remove-line::after {
  content: "";
  display: none;
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__land-transport-bureau {
    margin-left: 0;
  }
}
.area-single__scrapped-info__land-transport-bureau::after {
  content: "";
  width: 102vw;
  height: 4px;
  background-color: #e4e4e4;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: -6vw;
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__land-transport-bureau::after {
    content: none;
  }
}
.area-single__scrapped-info__land-transport-bureau ul {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau ul {
    font-size: 14px;
  }
}
.area-single__scrapped-info__land-transport-bureau ul li:hover {
  opacity: 0.5;
}
.area-single__scrapped-info__land-transport-bureau ul li::before {
  content: "";
  width: 3px;
  height: 15px;
  background-color: #333333;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.area-single__scrapped-info__land-transport-bureau ul li a {
  color: #333333;
}
.area-single__scrapped-info__land-transport-bureau #LandTransport {
  padding: 0;
}
.area-single__scrapped-info__land-transport-bureau #LandTransport h2:first-child {
  margin-top: 0;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 21.79px;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport h2:first-child {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 32.69px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport h3 {
  margin: 30px auto 15px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport h3 {
    margin: 60px auto 30px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .procedure {
  font-weight: 400;
  font-size: 16px;
  line-height: 21.79px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .procedure {
    font-size: 24px;
    line-height: 32.69px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box {
  border: 2px solid #D9D9D9;
  max-width: 1040px;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box {
    margin-bottom: 20px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box:last-child {
  margin-bottom: 0;
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-text,
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-hr {
  display: none;
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-text.visible,
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-hr.visible {
  display: block;
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-text.visible,
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-hr.visible {
    width: calc(100% - 60px);
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-hr.visible {
  border: unset;
  border-bottom: #D9D9D9 2px solid;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box .hidden-hr.visible {
    margin-bottom: 40px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .procedure_normal {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  line-height: 19.07px;
  width: 100%;
  padding: 0 15px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box .procedure_normal {
    height: 83px;
    padding: 0 30px;
    font-size: 20px;
    line-height: 27.24px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .procedure_normal::after {
  content: "";
  background-image: url("../images/area/procedure/icon-add.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 30px;
  font-size: 23px;
  color: #000;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau #LandTransport .box .procedure_normal::after {
    font-size: 40px;
    width: 21px;
    height: 21px;
  }
}
.area-single__scrapped-info__land-transport-bureau #LandTransport .box .procedure_normal.expanded::after {
  content: "";
  background-image: url("../images/area/procedure/icon-sub.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.area-single__scrapped-info__land-transport-bureau .procedure_table table {
  border-collapse: collapse;
  border: 1px solid #cfc7ae;
  border-bottom: none;
  margin-bottom: 20px;
  background: #fffcf4;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table {
    border: 1px solid #cfc7ae;
  }
}
.area-single__scrapped-info__land-transport-bureau .procedure_table table .change650.lm {
  text-align: center;
}
.area-single__scrapped-info__land-transport-bureau .procedure_table table th,
.area-single__scrapped-info__land-transport-bureau .procedure_table table td {
  padding: 8px;
  display: block !important;
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table th,
  .area-single__scrapped-info__land-transport-bureau .procedure_table table td {
    display: table-cell !important;
    width: auto !important;
  }
}
.area-single__scrapped-info__land-transport-bureau .procedure_table table th,
.area-single__scrapped-info__land-transport-bureau .procedure_table table td {
  border-bottom: 1px solid #cfc7ae;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table th,
  .area-single__scrapped-info__land-transport-bureau .procedure_table table td {
    border: 1px solid #cfc7ae;
  }
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table th.change650.lm {
    width: 220px !important;
  }
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table th.change650.info {
    width: 80px !important;
  }
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table table td.change650 {
    width: calc(100% - 300px) !important;
  }
}
.area-single__scrapped-info__land-transport-bureau .procedure_table table .procedure_table__intro {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 400;
}
.area-single__scrapped-info__land-transport-bureau .procedure_table--sp-tight table {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_table--sp-tight table {
    margin-bottom: 20px;
  }
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info {
  border: 1px solid #cfc7ae;
  background: #fffcf4;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info__heading, .area-single__scrapped-info__land-transport-bureau .procedure_sp_info__body {
  padding: 12px 14px;
  border-top: 1px solid #cfc7ae;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info__heading {
  font-weight: 700;
  text-align: center;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info__body {
  line-height: 1.8;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info__body p {
  margin-bottom: 0;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info > :first-child {
  border-top: none;
}
.area-single__scrapped-info__land-transport-bureau .procedure_sp_info--sp-gap-bottom {
  margin-bottom: 20px;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__land-transport-bureau .procedure_sp_info--sp-gap-bottom {
    margin-bottom: 0;
    border-top: 1px solid #cfc7ae;
  }
}
.area-single__scrapped-info__land-transport-bureau p.va-m {
  margin-bottom: 40px;
}
.area-single__scrapped-info {
  /* 買取エリア*/
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__pruchase-area {
    margin-left: auto;
  }
}
.area-single__scrapped-info__pruchase-area::after {
  content: "";
  width: 118vw;
  height: 4px;
  background-color: #e4e4e4;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: -22vw;
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__pruchase-area::after {
    content: none;
  }
}
.area-single__scrapped-info__pruchase-area.area-renewal::after {
  background-color: transparent;
}
.area-single__scrapped-info__pruchase-area .wrap p:first-child {
  font-size: 15px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__pruchase-area .wrap p:first-child {
    font-size: 16px;
    letter-spacing: -0.08em;
    text-align: center;
  }
}
.area-single__scrapped-info__pruchase-area .wrap .city {
  text-align: center;
  padding: 10px;
}
.area-single__scrapped-info__pruchase-area .wrap #show_area {
  color: #267dcb;
  text-decoration: underline;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__pruchase-area .wrap #show_area {
    font-size: 12px;
  }
}
.area-single__scrapped-info__pruchase-area .wrap #show_area_renewal {
  color: #267dcb;
  text-decoration: underline;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__pruchase-area .wrap #show_area_renewal {
    font-size: 12px;
  }
}
.area-single__scrapped-info__pruchase-area .wrap .pruchase-area {
  padding: 10px;
}
.area-single__scrapped-info__pruchase-area .wrap .pruchase-area li {
  font-size: 11px;
  letter-spacing: -0.01em;
  display: inline-flex;
  width: 32%;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__pruchase-area .wrap .pruchase-area li {
    font-size: 14px;
    width: 24%;
  }
}
.area-single__scrapped-info__pruchase-area .wrap .pruchase-area li a {
  color: #333333;
}
.area-single__scrapped-info__pruchase-area .wrap .pruchase-area li a:hover {
  opacity: 0.5;
}
.area-single__scrapped-info {
  /* 周辺エリア*/
}
.area-single__scrapped-info__neighborhood-area {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__neighborhood-area {
    margin-top: 30px;
  }
}
.area-single__scrapped-info__neighborhood-area .wrap p {
  flex: 0 0 100%;
  margin-top: 30px;
  position: relative;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__neighborhood-area .wrap p {
    font-size: 16px;
    letter-spacing: -0.08em;
  }
}
.area-single__scrapped-info__neighborhood-area .wrap .city {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #919191;
  border-left: 1px solid #919191;
}
.area-single__scrapped-info__neighborhood-area .wrap .city a {
  width: 50%;
  display: inline-block;
  border-right: 1px solid #919191;
  border-bottom: 1px solid #919191;
  line-height: 50px;
  padding-left: 15px;
  position: relative;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__neighborhood-area .wrap .city a {
    width: 25%;
  }
}
.area-single__scrapped-info__neighborhood-area .wrap .city a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  right: 17px;
  top: 40%;
  transform: rotate(45deg);
}
.area-single__scrapped-info__neighborhood-area .wrap .city a:hover {
  background-color: #267dcb;
}
.area-single__scrapped-info__neighborhood-area .wrap .city a:hover::after {
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
}
.area-single__scrapped-info__neighborhood-area .wrap .city a:hover span {
  color: #fff !important;
}
.area-single__scrapped-info__neighborhood-area .wrap .city .active {
  display: none !important;
}
.area-single__scrapped-info .island_note {
  text-align: right;
  font-size: 95%;
}
.area-single .staff {
  background-color: #ffffff;
}
.area-single__point {
  background-color: white;
  padding: 14px 0 30px;
}
@media screen and (min-width: 768px) {
  .area-single__point {
    padding: 30px 0 60px;
  }
}
.area-single__point .l-container {
  max-width: 800px !important;
  padding: 0 20px;
}
.area-single__point__title {
  text-align: center;
}
.area-single__point__title h2 {
  height: auto;
}
@media screen and (min-width: 768px) {
  .area-single__point__title h2 {
    height: 49px;
  }
}
.area-single__point__title__text {
  margin-bottom: 28px;
}
@media screen and (min-width: 768px) {
  .area-single__point__title__text {
    margin-bottom: 35px;
  }
}
.area-single__point__box {
  background-color: white;
  border: 1px solid #cfc7ae;
  padding: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .area-single__point__box {
    padding: 24px;
    background-color: #fffcf4;
  }
}
.area-single__point__box:last-child {
  margin-bottom: 0;
}
.area-single__point__box .hidden-content {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-single__point__box .hidden-content {
    display: block;
  }
}
.area-single__point__box .hidden-content.visible {
  display: block;
  padding: 24px;
  background-color: #fffcf4;
}
@media screen and (min-width: 768px) {
  .area-single__point__box .hidden-content.visible {
    padding: 0 30px;
  }
}
.area-single__point__subtitle {
  display: flex;
  position: relative;
  background-color: #c9b575;
  color: white;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.02em;
  margin: 9px 10px;
  padding: 9px 20px 9px 10px;
}
@media screen and (min-width: 768px) {
  .area-single__point__subtitle {
    margin: 0 0 30px 0;
    cursor: unset;
    padding: 8px;
    font-size: 24px;
  }
}
.area-single__point__subtitle__icon-sub {
  display: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 10px;
  color: #000;
  width: 14px;
  height: 14px;
  top: 13px;
}
.area-single__point__subtitle__icon-add {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 10px;
  color: #000;
  width: 14px;
  height: 14px;
  top: 13px;
}
.area-single__point__info {
  padding: 12px;
  background-color: #f8f8f8;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}

.jisseki-purchase__area .title-wrap .area-renewal_title {
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid #267DCB;
  font-size: 20px;
  line-height: 28px;
  color: #267DCB;
  padding: 10px 0;
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area .title-wrap .area-renewal_title {
    font-size: 32px;
    line-height: 48px;
    margin: 40px 20px;
    padding: 15px 0;
  }
}

.area-achievement-search {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .area-achievement-search {
    margin-top: 60px;
  }
}
.area-achievement-search .achievement-home {
  background-color: #ffffff;
}

.area_column {
  margin-top: 70px;
}
.area_column .column_list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}
.area_column .column_list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}
.area_column .column_list li:first-child {
  padding-top: 0;
}
.area_column .column_list li a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: #333;
}
.area_column .column_list li .img_box {
  width: 200px;
  flex-shrink: 0;
}
.area_column .column_list li .img_box img {
  width: 100%;
  height: auto;
  display: block;
}
.area_column .column_list li .text_box .date {
  display: block;
  color: #0075c2;
  font-weight: bold;
  margin-bottom: 8px;
}
.area_column .column_list li .text_box .title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.area_column .column_btn {
  width: 300px;
  background: #00366e;
  border-radius: 8px;
  height: 46px;
  margin: 15px auto 0;
  box-shadow: 2px 3px 4px 0px grey;
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .area_column .column_btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
    margin-bottom: 70px;
  }
}
.area_column .column_btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.area_column .column_btn p {
  margin-top: 0;
  padding-top: 13px;
}
.area_column .column_btn p img {
  float: right;
  margin-right: 20px;
}

.area-single_renew {
  padding: 0;
}
.area-single_renew section {
  padding: 0;
}

.area-renewal_title {
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid #267DCB;
  font-size: 20px;
  line-height: 28px;
  color: #267DCB;
  padding: 10px 0;
  margin: 24px 0;
}
@media screen and (min-width: 768px) {
  .area-renewal_title {
    font-size: 32px;
    line-height: 48px;
    margin: 40px 20px;
    padding: 15px 0;
  }
}

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

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

.padding-bottom-0 {
  padding-bottom: 0;
}

.border-none {
  border: unset !important;
}

.margin-title-no-bg {
  margin: 0 auto 40px;
}

.bg-white {
  background-color: #ffffff;
}

.form-area-renewal {
  background-color: #e6f2ff;
  padding-bottom: 20px;
  margin-top: 20px;
}
.form-area-renewal .form-col2 .pc-sp-cta .l-container {
  background-color: #e6f2ff;
}

.renewal_fv_form__area-list-pc {
  display: none;
}
.renewal_fv_form__renewal-area-list-pc {
  display: none;
}
.renewal_fv_form__area-list-sp {
  margin: 24px auto;
  background-color: #E6F2FF;
  color: #006EBB;
  font-weight: 700;
  font-size: 18px;
  width: 335px;
  height: 50px;
  padding: 10px;
}
.renewal_fv_form__area-list-sp a {
  text-decoration: none;
}
.renewal_fv_form__area-list-sp__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  pointer-events: none;
}
.renewal_fv_form__renewal-area-list-sp {
  margin: 24px auto;
  background-color: #006EBB;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 18px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  height: 50px;
  padding: 0 15px;
  width: 90%;
}
.renewal_fv_form__renewal-area-list-sp a {
  text-decoration: none;
  color: inherit;
}
.renewal_fv_form__renewal-area-list-sp__text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
  pointer-events: none;
}
.renewal_fv_form__renewal-area-list-sp__text__inner {
  text-align: center;
  font-size: clamp(10px, 3vw, 18px);
  text-overflow: ellipsis;
  margin-top: 0;
}
.renewal_fv_form__renewal-area-list-sp__text__inner__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  margin-left: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .renewal_fv_form__area-list-pc {
    display: block;
    text-align: center;
    margin: 24px auto;
    background-color: #E6F2FF;
    color: #006EBB;
    font-weight: 700;
    font-size: 18px;
    width: 500px;
    height: 70px;
    padding-top: 5px;
  }
  .renewal_fv_form__area-list-pc a {
    text-decoration: none;
  }
  .renewal_fv_form__area-list-pc .no-point {
    pointer-events: none;
  }
  .renewal_fv_form__renewal-area-list-pc {
    display: block;
    text-align: center;
    margin: 24px auto;
    background-color: #006EBB;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    width: 500px;
    height: 70px;
    padding-top: 5px;
  }
  .renewal_fv_form__renewal-area-list-pc a {
    text-decoration: none;
    color: inherit;
  }
  .renewal_fv_form__renewal-area-list-pc .no-point {
    pointer-events: none;
    margin-top: 3px;
  }
  .renewal_fv_form__area-list-sp {
    display: none;
  }
  .renewal_fv_form__renewal-area-list-sp {
    display: none;
  }
  .renewal_fv_form__area-list-cta {
    margin: 24px 0;
  }
  .renewal_fv_form__renewal-area-list-cta {
    padding: 60px 0 60px;
    background-color: #f2f2f2;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1300px) {
  .renewal_fv_form__renewal-area-list-cta {
    padding: 30px 0 30px;
  }
}

.renewal_mv_area {
  padding: 0;
  text-align: center;
}
.renewal_mv_area__renewal_pref-container {
  position: relative;
}
.renewal_mv_area__renewal_pref-name {
  position: absolute;
  top: 28% !important;
  left: 50%;
  font-weight: 600;
  color: #FFF8B6;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1000px) {
  .renewal_mv_area__renewal_pref-name {
    font-size: clamp(20px, 2vw, 32px);
  }
}
.renewal_mv_area__pop {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .renewal_mv_area__bg {
    background-image: url("../images/area/mv/pc/renewal-bg-mv.webp");
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    background-position: center;
  }
}
.renewal_mv_area__bg__container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.renewal_mv_area__bg__container__pref-name {
  width: 256px;
  height: 50px;
  background-color: #FF4D4D;
  border-radius: 50px;
  position: absolute;
  top: 2.5vw;
  font-size: 4vw;
  left: 37%;
  font-weight: 600;
  color: #FFF8B6;
  margin-bottom: 0;
}
@media screen and (min-width: 550px) {
  .renewal_mv_area__bg__container__pref-name {
    top: 16px;
    font-size: 23px;
  }
}
@media screen and (min-width: 767px) {
  .renewal_mv_area__bg__container__pref-name {
    top: 2vw;
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .renewal_mv_area__bg__container__pref-name {
    font-size: 32px;
  }
}
.renewal_mv_area__bg__container__pref-name-sp-two {
  position: absolute;
  top: 9vw;
  font-size: 4vw;
  left: 43.5%;
  font-weight: 600;
  color: #FFF8B6;
  margin-bottom: 0;
}
@media screen and (min-width: 550px) {
  .renewal_mv_area__bg__container__pref-name-sp-two {
    top: 9.5vw;
    font-size: 23px;
    left: 45%;
  }
}
.renewal_mv_area__bg__container__pref-name-sp-three {
  position: absolute;
  top: 9vw;
  font-size: 4vw;
  left: 42%;
  font-weight: 600;
  color: #FFF8B6;
  margin-bottom: 0;
}
@media screen and (min-width: 550px) {
  .renewal_mv_area__bg__container__pref-name-sp-three {
    top: 9.5vw;
    font-size: 23px;
    left: 45%;
  }
}
.renewal_mv_area__bg__container__renewal-pref-name-sp-two {
  position: absolute;
  top: 9vw;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  font-size: clamp(14px, 4vw, 23px);
  font-weight: 600;
  color: #FFF8B6;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 0;
}
@media screen and (min-width: 550px) {
  .renewal_mv_area__bg__container__renewal-pref-name-sp-two {
    top: 9.5vw;
  }
}
.renewal_mv_area__bg__container .renewal-mv-sp {
  width: 100%;
}
.renewal_mv_area__bg__container__middle-mv {
  position: absolute;
  top: 160px;
  z-index: 20;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 55%;
}
.renewal_mv_area__bg__container__bottom-mv {
  position: relative;
}
.renewal_mv_area__bg__container__bottom-mv__car {
  position: absolute;
  left: 0;
  top: 100px;
}
.renewal_mv_area__bg__container__bottom-mv__shape {
  position: absolute;
  top: 262px;
  z-index: 10;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
}
.renewal_mv_area__bg__container__bottom-mv__point {
  position: absolute;
  top: 310px;
  z-index: 10;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
}
.renewal_mv_area__bg__container__bottom-mv__women {
  position: absolute;
  right: 0;
  top: 103px;
  z-index: 1;
}

.table__container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .table__container {
    width: 100%;
  }
}
.table__container.d-none {
  display: none;
}
.table__loading {
  height: 680.625px;
}
.table__loading .circle {
  border-radius: 50%;
  width: 5em;
  height: 5em;
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1em solid rgba(38, 125, 203, 0.2);
  border-right: 1em solid rgba(38, 125, 203, 0.2);
  border-bottom: 1em solid rgba(38, 125, 203, 0.2);
  border-left: 1em solid #267dcb;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loading 1.1s infinite linear;
  animation: loading 1.1s infinite linear;
}
.table__loading .circle::after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.table__filter_sp {
  width: 170px;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 5px 10px 5px 40px;
  border: 2px solid #D9D9D9;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .table__filter_sp {
    display: none;
    margin-left: 5px;
  }
}
.table__filter_sp::before {
  content: "＞";
  z-index: 2;
  position: absolute;
  top: 54%;
  right: 5px;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 12px;
}
.table__filter_sp img {
  position: absolute;
  left: 10px;
  width: 20px;
}
.table__sort__wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 5px;
}
.table__sort__wrapper::before {
  content: "＞";
  z-index: 2;
  position: absolute;
  top: 54%;
  right: 10px;
  transform: translateY(-50%) rotate(90deg);
  font-weight: bold;
  font-size: 12px;
}
.table__sort__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .table__sort__container {
    position: static;
    text-align: right;
    justify-content: right;
  }
}
.table__sort__select {
  width: 170px;
  height: inherit;
  padding-left: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.table__sort__arrow {
  z-index: 2;
  position: absolute;
  left: 6px;
  top: 8px;
  color: #267DCB;
}
.table__wrap {
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .table__wrap {
    overflow-x: auto;
  }
}
.table__car {
  max-width: 1000px;
  margin-top: 30px;
  border-collapse: collapse;
  overflow-x: auto;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .table__car {
    table-layout: auto;
    width: 100%;
  }
}
.table__car th,
.table__car td {
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .table__car th,
  .table__car td {
    width: auto;
  }
}
.table__car th:nth-child(2),
.table__car td:nth-child(2) {
  min-width: 100px;
}
.table__car th:nth-child(3),
.table__car td:nth-child(3) {
  min-width: 140px;
}
.table__car th:nth-child(4),
.table__car td:nth-child(4) {
  min-width: 100px;
}
.table__car th:nth-child(5),
.table__car td:nth-child(5) {
  min-width: 100px;
}
.table__car th:nth-child(6),
.table__car td:nth-child(6) {
  min-width: 75px;
}
.table__car th {
  background-color: #267dcb;
  color: #e4e4e4;
}
.table__car {
  /* 偶数行の背景色 */
}
.table__car tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}
.table__car {
  /* 奇数行の背景色 */
}
.table__car tbody tr:nth-child(odd) {
  background-color: #ffffff;
  /* 白色背景 */
}
.table__car__hand-swipe {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 30%;
}
.table__car__button {
  display: inline-block;
  box-shadow: 0px 4px 0px 0px #002347;
  background: #00366E;
  text-decoration: none !important;
  color: white !important;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  padding: 2px 10px;
}
.table__pagination {
  text-align: center;
  margin: 20px 0px;
}
.table__pagination span {
  display: inline-block;
  background-color: #e4e4e4;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  color: #267dcb;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .table__pagination span {
    padding: 0.3rem 0.7rem;
  }
}
.table__pagination span.dot {
  cursor: default;
}
@media screen and (min-width: 768px) {
  .table__pagination span {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
.table__filter {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .table__filter {
    padding: 0;
  }
}
.table__filter__title {
  text-align: center;
  font-size: 24px;
  color: #333333;
  font-weight: 600;
  margin-top: 60px;
  position: relative;
}
.table__filter__header {
  border-left: 5px solid #267DCB;
  padding: 0 15px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 18px;
  background: #E6F2FF;
}
.table__filter__line {
  border-top: solid 1px #CCCCCC;
  padding-top: 15px;
}
.table__filter__line:first-child {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .table__filter__line:first-child {
    border-top: solid 1px #CCCCCC;
  }
}
@media screen and (min-width: 768px) {
  .table__filter__line {
    padding-top: 0;
  }
}
.table__filter__line__col {
  display: block;
  grid-template-columns: 0.2fr 1fr;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .table__filter__line__col {
    display: grid;
  }
}
.table__filter__line__col__title {
  align-items: left;
  background: #fff;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .table__filter__line__col__title {
    background: #F2F2F2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.table__filter__line__col__fields .radio_filter_button {
  margin: 20px 0;
  display: inline-block;
}
.table__filter__line__col__fields .radio_filter_button::after {
  content: none;
}
.table__filter__line__col__fields__info-tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px auto;
}
.table__filter__line__col__fields__info-tag li {
  border: 1.5px solid #666666;
  border-radius: 3px;
  background: #E5E5E5;
  color: #19615F;
  padding: 0 15px;
  flex: 1 0 -1%;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .table__filter__line__col__fields__info-tag li {
    padding: 0 20px;
    font-size: 15px;
  }
}
.table__filter__line__col__fields__info-tag li::before {
  content: "-";
  position: absolute;
  right: 8px;
}
.table__filter__line__col__fields__info-tag .search_type {
  border: 1.5px solid #2BA4A0;
  background-color: #D9FFFE;
}
.table__filter__line__col__fields__info-tag .search_type::before {
  content: "+";
  position: absolute;
  right: 8px;
}
.table__filter__button {
  border-top: solid 1px #CCCCCC;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}
.table__filter__button .clear_filter {
  box-shadow: 0px -2.44px 6.09px 0px rgba(0, 0, 0, 0.1019607843) inset;
  border: 1.27px solid #D9D9D9;
  height: 45px;
  font-size: 14px;
  background: white;
  font-weight: 600;
  width: 80px;
  cursor: pointer;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .table__filter__button .clear_filter {
    padding: 0 20px;
    font-size: 18px;
    width: unset;
  }
}
.table__filter__button .submit_filter {
  box-shadow: 0px 4px 0px 0px #1D5E99;
  background: #267DCB;
  border: unset;
  color: white;
  width: 300px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}
.table__filter__button .submit_filter .search_icon {
  position: relative;
  margin-right: 10px;
}
.table__filter__button .submit_filter .ken {
  position: relative;
  font-size: 12px;
  padding: 0 7px;
  top: -2px;
}
.table__filter__warning {
  color: #FF8B21;
  text-align: center;
  border: solid 1px;
  padding: 25px 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .table__filter__warning {
    margin-bottom: 60px;
  }
}

.table__sort-sp__group {
  display: flex;
  justify-content: space-between;
}

.table__filter_sp__popup {
  position: fixed;
  top: 50px;
  background: white;
  width: 100%;
  left: 0;
  height: 100%;
  z-index: 1000;
  overflow: scroll;
}
.table__filter_sp__popup__title {
  color: #333333;
  font-size: 20px;
  padding: 5px 20px;
  border-top: solid #D9D9D9;
  text-align: left;
  position: relative;
}
.table__filter_sp__popup__title img {
  position: absolute;
  right: 20px;
  top: 20%;
}
.table__filter_sp__popup__element__title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 20px 0;
}
.table__filter_sp__popup__element__radio {
  display: flex;
  gap: 50px;
  font-size: 15px;
  padding: 0 50px;
}
.table__filter_sp__popup__element__radio input[type=radio] {
  -ms-transform: scale(1.5);
  /* IE 9 */
  -webkit-transform: scale(1.5);
  /* Chrome, Safari, Opera */
  transform: scale(1.5);
}
.table__filter_sp__popup__element__radio .radio_filter_button {
  display: inline-block;
}
.table__filter_sp__popup__element__radio .radio_filter_button::after {
  content: none;
}
.table__filter_sp__popup__element hr {
  margin: 10px 20px 0;
}
.table__filter_sp__popup__element .hr-add-more-mrg {
  margin-top: 30px;
}
.table__filter_sp__popup__element .range {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  top: 20px;
}
.table__filter_sp__popup .slide_container {
  position: relative;
  width: 90%;
  height: initial;
  margin: 0 auto;
}
.table__filter_sp__popup .slide_container input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}
.table__filter_sp__popup .slide_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 2em;
  width: 2em;
  background: #FFFFFF;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 50%;
  border: solid #CCCCCC 2px;
}
.table__filter_sp__popup .slide_container .slide_track {
  width: 100%;
  height: 7px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.table__filter_sp__popup .slide_infor {
  display: flex;
  justify-content: center;
  padding: 10px 20px 20px;
  font-size: 12px;
  gap: 10px;
}
.table__filter_sp__popup__button {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #E6F2FF;
  border-top: solid 1px #CCCCCC;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}
.table__filter_sp__popup__button #clear_filter_sp {
  box-shadow: 0px -2.44px 6.09px 0px rgba(0, 0, 0, 0.1019607843) inset;
  border: 1.27px solid #D9D9D9;
  height: 45px;
  font-size: 14px;
  background: white;
  font-weight: 600;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 5px;
}
.table__filter_sp__popup__button #submit_filter_sp {
  box-shadow: 0px 4px 0px 0px #1D5E99;
  background: #267DCB;
  color: white;
  width: 250px;
  height: 40px;
  font-size: 14px;
  cursor: pointer;
  border: unset;
  border-radius: 5px;
}
.table__filter_sp__popup__button #count_filter_sp {
  font-size: 16px;
}
.table__filter_sp__popup__button .ken {
  font-size: 10px;
}

.cta-renewal {
  padding: 0;
  text-align: center;
}
.cta-renewal__container {
  max-width: 1000px;
  margin: 0 auto;
}
.cta-renewal__container__head {
  margin-bottom: 10px;
}
.cta-renewal__container__img {
  position: relative;
}
.cta-renewal__container__img__phone {
  position: absolute;
  color: black;
  left: 59%;
  font-size: 4.8vw;
  top: 5%;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .cta-renewal__container__img__phone {
    font-size: 46px;
  }
}

.cta-renewal-regional__container__img img {
  width: 80%;
}
.cta-renewal-regional__container__img__phone {
  font-size: clamp(24px, 3.5vw, 42px);
}
@media screen and (min-width: 1000px) {
  .cta-renewal-regional__container__img__phone {
    font-size: clamp(36px, 3vw, 40px);
  }
}

.scrapped-car-price {
  padding: 0px 0 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price {
    padding: 50px 0 0;
  }
}
.scrapped-car-price {
  background-color: #ffffff;
}
.scrapped-car-price__group {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group {
    margin-bottom: 0px;
  }
}
.scrapped-car-price__group__wrap__chart .ward-price-table {
  max-width: 800px;
  margin: 0 auto;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 90px minmax(120px, 2fr);
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  min-height: 46px;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__name {
  border-right: 1px solid #d9d9d9;
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__name a {
  color: #267dcb;
  text-decoration: underline;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__price {
  border-right: 1px solid #d9d9d9;
  text-align: center;
  color: #1f2a44;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__price .value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__price .unit {
  margin-left: 4px;
  font-size: 13px;
  font-weight: 500;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__bar {
  display: flex;
  align-items: center;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__bar-inner {
  height: 16px;
  background: #8fd15f;
  min-width: 2px;
}
.scrapped-car-price__group__wrap__chart .ward-price-table__toggle {
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid #267dcb;
  background: #fff;
  color: #267dcb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group__wrap__chart .ward-price-table__row {
    grid-template-columns: minmax(180px, 1fr) 150px minmax(200px, 2fr);
    min-height: 56px;
  }
  .scrapped-car-price__group__wrap__chart .ward-price-table__name {
    font-size: 18px;
  }
  .scrapped-car-price__group__wrap__chart .ward-price-table__price .value {
    font-size: 24px;
  }
  .scrapped-car-price__group__wrap__chart .ward-price-table__price .unit {
    font-size: 14px;
  }
  .scrapped-car-price__group__wrap__chart .ward-price-table__bar-inner {
    height: 18px;
  }
  .scrapped-car-price__group__wrap__chart .ward-price-table__toggle {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 18px;
  }
}
.scrapped-car-price__group__wrap__chart .chart-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.scrapped-car-price__group__wrap__chart .chart-wrapper .chart-main-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.scrapped-car-price__group__wrap__chart .chart-wrapper .chart-container {
  display: flex;
}
.scrapped-car-price__group__wrap__chart .chart-wrapper .chart-text {
  writing-mode: vertical-rl;
  font-size: 16px;
  font-family: Arial;
  font-weight: bold;
}
.scrapped-car-price__group__wrap__chart .chart-wrapper .dynamic-chart {
  width: 100%;
  height: 400px;
}
.scrapped-car-price__group__wrap__chart .chart-wrapper .chart-percentage {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-family: Arial;
  margin-bottom: 20px;
}
.scrapped-car-price__group__wrap__price {
  margin: 30px auto;
  max-width: 800px;
  background-color: #E6F2FF;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group__wrap__price {
    padding: 24px 0;
  }
}
.scrapped-car-price__group__wrap__price__change {
  font-size: 21px;
  font-weight: 600;
  color: #FE0000;
  margin: 10px auto;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group__wrap__price__change {
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}
.scrapped-car-price__group__wrap__price__change span {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group__wrap__price__change span {
    font-size: 24px;
  }
}
.scrapped-car-price__group__wrap__price__note {
  font-size: 11px;
}
.scrapped-car-price__group__wrap__note {
  margin-bottom: 0;
  text-align: start;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group__wrap__note {
    font-size: 16px;
  }
}
.scrapped-car-price__group__wrap__description {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price.renewal .scrapped-car-price__group {
    margin-bottom: 60px;
  }
}
.scrapped-car-price__group-things {
  text-align: start;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group-things {
    margin-bottom: 60px;
  }
}
.scrapped-car-price__group-things .item_title {
  color: #267dcb;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  font-size: 18px;
  text-align: left;
}
.scrapped-car-price__group-things .item_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 130px;
  height: 3px;
  background: #267dcb;
  bottom: -18px;
}
.scrapped-car-price__group-things .hr3 {
  height: 3px;
  background-color: #CCCCCC;
  border: unset;
  margin-top: 0;
  margin-bottom: 24px;
}
.scrapped-car-price__group-things__note {
  margin-bottom: 24px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .scrapped-car-price__group-things__note {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
.scrapped-car-price__group-things__note .note {
  display: inline-block;
  background: rgba(214, 214, 214, 0.4705882353);
}

.renewal-faq .faq__container {
  padding: 30px 20px !important;
}

.renewal-scrapped-info .area-single__scrapped-info__pruchase-area {
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .renewal-scrapped-info .area-single__scrapped-info__pruchase-area {
    margin: 30px auto 0;
  }
}
.renewal-scrapped-info .area-single__scrapped-info__pruchase-area::after {
  background-color: #ffffff;
}
.renewal-scrapped-info .area-single__scrapped-info__pruchase-area .wrap #show_area_renewal {
  margin-bottom: 0;
}
.renewal-scrapped-info .area-single__scrapped-info__pruchase-area .area-renewal_title {
  margin-bottom: 15px;
}
.renewal-scrapped-info .area-single__scrapped-info__pruchase-area .island_note-center {
  text-align: center;
  font-size: 90%;
}

span.area-renewal_link {
  color: #1976d2;
  font-weight: bold;
}

.area-single__scrapped-info__pruchase-area.area-renewal.area-renewal--ward .wrap .pruchase-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2%;
  row-gap: 8px;
  justify-content: start;
}
.area-single__scrapped-info__pruchase-area.area-renewal.area-renewal--ward .wrap .pruchase-area li {
  display: block;
  width: auto;
}
@media screen and (min-width: 768px) {
  .area-single__scrapped-info__pruchase-area.area-renewal.area-renewal--ward .wrap .pruchase-area {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .area-single__scrapped-info__pruchase-area.area-renewal.area-renewal--ward .wrap .pruchase-area {
    display: grid !important;
  }
}

.jisseki-purchase__area .renewal-purchase-list {
  max-width: 1000px;
}
.jisseki-purchase__area #jisseki-grid {
  max-width: 1000px;
  margin: 0 auto 20px;
}
.jisseki-purchase__area #jisseki-grid .jisseki-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: center;
  justify-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .jisseki-purchase__area #jisseki-grid .jisseki-2x2-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.jisseki-purchase__area #jisseki-grid .jisseki-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .jisseki-purchase__area #jisseki-grid .jisseki-2col-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.renewal-purchase-list .jisseki-horizontal-card {
  display: flex;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  padding: 15px;
  margin-bottom: 0;
  min-height: 245px;
  gap: 20px;
}
.renewal-purchase-list .jisseki-horizontal-card.splide__slide {
  padding: 0 !important;
}
.renewal-purchase-list .jisseki-horizontal-card {
  /* --- 左側（画像＋価格） --- */
}
.renewal-purchase-list .jisseki-horizontal-card__left {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.renewal-purchase-list .jisseki-horizontal-card__left a {
  width: 100%;
  display: block;
}
.renewal-purchase-list .jisseki-horizontal-card__img {
  width: 100%;
  overflow: hidden;
  background: #ececec;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.renewal-purchase-list .jisseki-horizontal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.renewal-purchase-list .jisseki-horizontal-card__price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 0;
  color: #ff3333;
}
.renewal-purchase-list .jisseki-horizontal-card__price-box .price_text {
  font-size: clamp(10px, 2.2vw, 13px);
  margin-right: 5px;
  font-weight: normal;
  white-space: nowrap;
}
.renewal-purchase-list .jisseki-horizontal-card__price-box .price {
  font-size: clamp(16px, 4.4vw, 20px);
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.renewal-purchase-list .jisseki-horizontal-card__price-box .price::after {
  content: "円";
  margin-left: 2px;
  font-size: clamp(12px, 2.8vw, 15px);
}
.renewal-purchase-list .jisseki-horizontal-card {
  /* --- 右側（詳細情報） --- */
}
.renewal-purchase-list .jisseki-horizontal-card__detail {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.renewal-purchase-list .jisseki-horizontal-card__info {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  font-size: clamp(11px, 1.5vw, 16px);
}
.renewal-purchase-list .jisseki-horizontal-card__info dt {
  min-width: 70px;
  background-color: #f7df00;
  color: #333;
  text-align: center;
  padding: 4px 0;
  margin-right: 15px;
  font-size: 13px;
  font-weight: normal;
}
.renewal-purchase-list .jisseki-horizontal-card__info dd {
  margin: 0;
  color: #333;
}
@media screen and (max-width: 767px) {
  .renewal-purchase-list .jisseki-horizontal-card {
    padding: 10px;
    gap: 10px;
  }
  .renewal-purchase-list .jisseki-horizontal-card__price-box {
    margin-top: 10px;
  }
  .renewal-purchase-list .jisseki-horizontal-card__info dt {
    min-width: 55px;
    margin-right: 8px;
    font-size: 11px;
  }
}

.table__sort__container {
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .table__sort__container {
    margin-bottom: 20px;
  }
}
.table__sort__page {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
  align-items: center;
  border-bottom: 1px solid #333333;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .table__sort__page {
    margin-bottom: auto;
    border-bottom: none;
    justify-content: start;
  }
}
.table__sort__wrapper label {
  display: none;
}
@media screen and (min-width: 768px) {
  .table__sort__wrapper label {
    display: block;
  }
}
.table__sort__arrow {
  left: 8px;
}
@media screen and (min-width: 768px) {
  .table__sort__arrow {
    left: 80px;
  }
}
.table__wrap {
  overflow: unset;
}
.table__wrap .area-single__partner-company__card__block .s-company__list {
  display: grid;
  grid-template-columns: auto;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card__block .s-company__list {
    gap: 20px 30px;
    grid-template-columns: 0.5fr 0.5fr;
  }
}
.table__wrap .area-single__partner-company__card__block .s-company__list .s-company__slide__title {
  background: #006EBB;
  color: white;
  text-align: center;
  align-content: center;
  height: 44px;
  font-size: 20px;
}
.table__wrap .area-single__partner-company__card__block .s-company__list .custom-container {
  grid-column: 1/-1;
  display: block;
  text-align: center;
}
.table__wrap .area-single__partner-company__card__block #renewal-list .s-company__slide {
  margin-right: 0 !important;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card__block #renewal-list .s-company__slide {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card__block #renewal-list .s-company__slide .info {
    flex-grow: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.table__wrap .area-single__partner-company__card .s-company {
  margin: 0 auto;
  max-width: 335px;
}
@media screen and (min-width: 500px) {
  .table__wrap .area-single__partner-company__card .s-company {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company {
    padding: 0 20px;
    max-width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .table__wrap .area-single__partner-company__card .s-company {
    padding: 0;
    max-width: 95%;
  }
}
@media screen and (min-width: 1200px) {
  .table__wrap .area-single__partner-company__card .s-company {
    padding: 0;
    max-width: 100%;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list {
  width: 100%;
  margin-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list {
    margin-bottom: 30px !important;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide {
  position: relative;
  margin-right: 30px !important;
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 500px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide img {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide img {
    height: 280px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .haishal_partner_store {
  text-align: center;
  border: 1.5px solid #FF4D4D;
  background: #FFDEDE;
  width: 145px;
  font-size: 15px;
  color: #FF4D4D;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .haishal_partner_store {
    margin-top: 16px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default {
  height: 187px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 500px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default {
    height: 280px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default img {
  height: 187px;
  width: 100%;
  position: absolute;
  zoom: 140%;
  left: 0;
  top: -26px;
}
@media screen and (min-width: 500px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default img {
    height: 280px;
    top: -40px;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .image_default img {
    height: 280px;
    top: -40px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide__title {
  background: #006EBB;
  color: white;
  text-align: center;
  align-content: center;
  height: 44px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide__title {
    font-size: 20px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__tag {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__tag {
    margin-bottom: 20px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__tag h4 {
  border: 1.5px solid #666666;
  border-radius: 3px;
  background: #E5E5E5;
  color: #19615F;
  padding: 0 15px;
  flex: 1 0 -1%;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  font-size: 12px;
  line-height: unset;
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__tag h4 {
    padding: 0 20px;
    font-size: 15px;
  }
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__tag .search_type_li {
  border: 1.5px solid #2BA4A0;
  background-color: #D9FFFE;
}
.table__wrap .area-single__partner-company__card .s-company__list .s-company__slide .info__comment {
  position: unset;
}
.table__wrap .area-single__partner-company__card .s-company__list img {
  height: auto;
}
.table__wrap .area-single__partner-company__card .s-company__list {
  /* 件数によって表示変更 --------*/
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list.one-col li.s-company__slide {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list.one-col li.s-company__slide img {
    height: 300px;
    width: 56%;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company__list.one-col li.s-company__slide .info {
    width: 44%;
  }
}
@media screen and (min-width: 1000px) {
  .table__wrap .area-single__partner-company__card .s-company__list.two-col li.s-company__slide img {
    height: 300px;
  }
}
.table__wrap .area-single__partner-company__card .s-company {
  /* arrow ------------------------------*/
}
.table__wrap .area-single__partner-company__card .s-company .s-company__arrow {
  top: 150px;
  z-index: 1;
  background-color: #333333;
}
.table__wrap .area-single__partner-company__card .s-company .s-company__arrow svg {
  fill: #ffffff;
  font-size: 10px;
}
.table__wrap .area-single__partner-company__card .s-company .s-company__arrow--prev {
  left: -10px;
}
.table__wrap .area-single__partner-company__card .s-company .s-company__arrow--next {
  right: -10px;
}
.table__wrap .area-single__partner-company__card .s-company {
  /* dots -----------------------------*/
}
.table__wrap .area-single__partner-company__card .s-company .s-company__pagination {
  bottom: 68% !important;
  transform: translateY(-50%);
}
@media screen and (min-width: 500px) {
  .table__wrap .area-single__partner-company__card .s-company .s-company__pagination {
    bottom: 59% !important;
  }
}
@media screen and (min-width: 768px) {
  .table__wrap .area-single__partner-company__card .s-company .s-company__pagination {
    display: none;
  }
}
.table__wrap .area-single__partner-company__card .s-company .s-company__pagination__page {
  margin: 15px 10px 20px;
  height: 10px;
  width: 10px;
}
.table__pagination .active {
  background-color: #006EBB;
  color: #FFFFFF;
}

.total_result__value {
  color: #FF4D4D;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .total_result__value {
    font-size: 28px;
  }
}
.total_result__value .ken {
  font-size: 12px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .total_result__value .ken {
    font-size: 18px;
  }
}

.review-scrapped-car {
  padding: 0;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car {
    margin: 60px 0;
  }
}
.review-scrapped-car .l-container {
  padding: 40px 20px;
  background-color: #E6F2FD;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car .l-container {
    padding: 64px 30px;
  }
}
.review-scrapped-car__title img {
  width: 100%;
}
.review-scrapped-car__title p {
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: start;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title p {
    font-size: 14px;
    text-align: end;
  }
}
.review-scrapped-car__title__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group {
    flex-direction: row;
    height: 230px;
  }
}
.review-scrapped-car__title__group__overall {
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall {
    width: 50%;
  }
}
.review-scrapped-car__title__group__overall__stars {
  color: #FFD85A;
  letter-spacing: 0;
  font-size: 40px;
  line-height: 37px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall__stars {
    font-size: 45px;
    line-height: 40px;
    letter-spacing: 5px;
  }
}
.review-scrapped-car__title__group__overall__stars .star-half {
  display: inline-block;
  color: #D9D9D9;
}
.review-scrapped-car__title__group__overall__stars .star-half::before {
  content: "★";
}
.review-scrapped-car__title__group__overall__stars .star-half::after {
  content: "★";
  color: #FFD85A;
  position: absolute;
  overflow: hidden;
  margin-left: -40px;
  width: 20px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall__stars .star-half::after {
    margin-left: -50px;
    width: 22px;
  }
}
.review-scrapped-car__title__group__overall .overall-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall .overall-title {
    font-size: 20px;
  }
}
.review-scrapped-car__title__group__overall__number {
  font-size: 40px;
  line-height: 28px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall__number {
    font-size: 50px;
    line-height: 35px;
  }
}
.review-scrapped-car__title__group__overall__number span {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__overall__number span {
    font-size: 20px;
  }
}
.review-scrapped-car__title__group__satisfaction {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction {
    flex-direction: column;
    width: 50%;
  }
}
.review-scrapped-car__title__group__satisfaction__content {
  width: 100%;
  height: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title {
    font-size: 20px;
    line-height: 35px;
  }
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block {
  display: flex;
  gap: 0;
  line-height: 35px;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block {
    gap: 50px;
    flex-direction: row;
  }
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__number {
  font-weight: 600;
  font-size: 32px;
  line-height: 28px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__number {
    font-size: 40px;
    line-height: 30px;
  }
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__number span {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__number span {
    font-size: 20px;
  }
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars {
  color: #FFD85A;
  letter-spacing: 0;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars {
    letter-spacing: 5px;
    font-size: 25px;
  }
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars .star-half {
  display: inline-block;
  color: #D9D9D9;
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars .star-half::before {
  content: "★";
}
.review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars .star-half::after {
  content: "★";
  color: #FFD85A;
  position: absolute;
  margin-left: -20px;
  width: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__title__group__satisfaction__content .satisfaction-title-block__stars .star-half::after {
    margin-left: -30px;
    width: 12.5px;
  }
}
.review-scrapped-car__title__note {
  text-align: right;
  padding-top: 10px;
}
@media screen and (max-width: 420px) {
  .review-scrapped-car .overall-title {
    font-size: 14px;
  }
  .review-scrapped-car .satisfaction-title {
    font-size: 14px;
  }
}
.review-scrapped-car__group {
  display: grid;
  grid-template-columns: auto;
  gap: 15px 20px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__group {
    gap: 16px;
    grid-template-columns: auto auto;
  }
}
.review-scrapped-car__group__box {
  background-color: #ffffff;
  padding: 40px 30px;
}
.review-scrapped-car__group__box__content__info__car {
  padding: 15px 0;
  border-bottom: 1px solid #CCCCCC;
}
.review-scrapped-car__group__box__content__info__car p {
  margin-bottom: 0;
  font-size: 18px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__group__box__content__info__car p {
    font-size: 20px;
  }
}
.review-scrapped-car__group__box__content__info__car p:last-child span {
  color: #FF4D4D;
  font-weight: 600;
}
.review-scrapped-car__group__box__content__info__car p:not(:last-child) {
  font-size: 16px;
  color: #808080;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__group__box__content__info__car p:not(:last-child) {
    font-size: 17.5px;
  }
}
.review-scrapped-car__group__box__content__info-icon {
  padding: 15px 0;
  border-bottom: 1px solid #CCCCCC;
}
.review-scrapped-car__group__box__content__info-icon__evaluate {
  display: flex;
  gap: 20px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__group__box__content__info-icon__evaluate {
    font-size: 20px;
  }
}
.review-scrapped-car__group__box__content__info-icon__evaluate p {
  margin-bottom: 0;
}
.review-scrapped-car__group__box__content__info-icon__icon-stars {
  color: #F2BE41;
  letter-spacing: 5px;
}
.review-scrapped-car__group__box__content__info-icon__icon-stars .star-half {
  display: inline-block;
  color: #D9D9D9;
}
.review-scrapped-car__group__box__content__info-icon__icon-stars .star-half::before {
  content: "★";
}
.review-scrapped-car__group__box__content__info-icon__icon-stars .star-half::after {
  content: "★";
  color: #F2BE41;
  position: absolute;
  margin-left: -25px;
  width: 10px;
  overflow: hidden;
}
.review-scrapped-car__group__box__description p {
  margin: 15px auto 0;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car__group__box__description p {
    font-size: 17.5px;
  }
}
.review-scrapped-car__group__box__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.review-scrapped-car .item_title {
  color: #267dcb;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  font-size: 18px;
}
.review-scrapped-car .item_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 130px;
  height: 3px;
  background: #267dcb;
  bottom: -18px;
}
.review-scrapped-car .hr3 {
  height: 3px;
  background-color: #CCCCCC;
  border: unset;
  margin-top: 0;
  margin-bottom: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.review-scrapped-car-renewal {
  padding: 0;
  margin: 40px 0;
  background: #e6f2fd;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car-renewal {
    margin: 60px 0;
  }
}
.review-scrapped-car-renewal .l-container {
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car-renewal .l-container {
    padding: 56px 40px;
  }
}
.review-scrapped-car-renewal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .review-scrapped-car-renewal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.review-scrapped-car-renewal__card {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  padding: 28px;
}
.review-scrapped-car-renewal__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-scrapped-car-renewal__thumb {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 68px;
  background: #d0d0d0;
}
.review-scrapped-car-renewal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-scrapped-car-renewal__meta {
  min-width: 0;
}
.review-scrapped-car-renewal__pref {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #267dcb;
  text-decoration: underline;
}
.review-scrapped-car-renewal__customer {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.2;
  color: #333;
}
.review-scrapped-car-renewal__description {
  margin-top: 16px;
}
.review-scrapped-car-renewal__description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .review-scrapped-car-renewal__card {
    padding: 16px;
  }
  .review-scrapped-car-renewal__head {
    gap: 12px;
  }
  .review-scrapped-car-renewal__thumb {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .review-scrapped-car-renewal__pref {
    font-size: 18px;
  }
  .review-scrapped-car-renewal__customer {
    margin-top: 4px;
    font-size: 16px;
  }
  .review-scrapped-car-renewal__description {
    margin-top: 12px;
  }
  .review-scrapped-car-renewal__description p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .strength__second-group__content__text {
    padding: 0 50px 40px !important;
  }
}
.strength__more-title {
  text-align: center;
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .strength .h-190 {
    height: 190px !important;
  }
}
@media screen and (min-width: 768px) {
  .strength .h-190 .strength__second-group-container__box {
    height: 100%;
  }
}

.area-supports {
  padding: 0px 0 10px;
}
@media screen and (min-width: 768px) {
  .area-supports {
    padding: 0;
  }
}
.area-supports {
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .area-supports__neighborhood-area h2 {
    margin-top: 30px;
  }
}
.area-supports {
  background-color: #ffffff;
}
.area-supports__neighborhood-area {
  margin: 10px auto 0;
}
@media screen and (min-width: 768px) {
  .area-supports__neighborhood-area {
    margin: 60px auto 30px;
  }
}
@media screen and (min-width: 1000px) {
  .area-supports__neighborhood-area {
    width: 100%;
  }
  .area-supports__neighborhood-area .wrap {
    border: 1px solid #e4e4e4;
    padding: 20px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .area-supports__neighborhood-area .wrap::-webkit-scrollbar {
    display: none;
  }
  .area-supports__neighborhood-area .wrap p {
    text-align: center;
  }
}
.area-supports {
  /* 周辺エリア*/
}
.area-supports__neighborhood-area {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .area-supports__neighborhood-area {
    margin-top: 30px;
  }
}
.area-supports__neighborhood-area .wrap p {
  flex: 0 0 100%;
  position: relative;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .area-supports__neighborhood-area .wrap p {
    font-size: 16px;
    letter-spacing: -0.08em;
  }
}
.area-supports__neighborhood-area .wrap .city {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #919191;
  border-left: 1px solid #919191;
}
.area-supports__neighborhood-area .wrap .city a {
  width: 50%;
  display: inline-block;
  border-right: 1px solid #919191;
  border-bottom: 1px solid #919191;
  line-height: 50px;
  padding-left: 15px;
  position: relative;
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .area-supports__neighborhood-area .wrap .city a {
    width: 25%;
  }
}
.area-supports__neighborhood-area .wrap .city a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  right: 17px;
  top: 40%;
  transform: rotate(45deg);
}
.area-supports__neighborhood-area .wrap .city a:hover {
  background-color: #267dcb;
}
.area-supports__neighborhood-area .wrap .city a:hover::after {
  border-top: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
}
.area-supports__neighborhood-area .wrap .city a:hover span {
  color: #fff !important;
}
.area-supports__neighborhood-area .wrap .city .active {
  display: none !important;
}

.column-menu {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}
.column-menu__inner {
  display: flex !important;
  justify-content: center;
  font-size: 10px;
  max-width: 950px;
  margin: auto;
}
.column-menu__item {
  padding: 0.3rem 0 0.1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid #e4e4e4;
  flex: auto;
}
.column-menu__item:first-child {
  border-left: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .column-menu__item {
    font-size: 14px;
    padding: 0.6rem;
    flex-direction: row;
  }
}
.column-menu__item a {
  display: contents;
  color: initial;
  text-decoration: none;
}
.column-menu__item a:hover {
  color: #267dcb;
}
.column-menu__item a:hover .column-icon.haisha {
  background-image: url("../images/icon/car_icon.svg");
}
.column-menu__item a:hover .column-icon.sell {
  background-image: url("../images/icon/yen_icon.svg");
}
.column-menu__item a:hover .column-icon.transfer {
  background-image: url("../images/icon/transfer_icon.svg");
}
.column-menu__item a:hover .column-icon.other {
  background-image: url("../images/icon/star_icon.svg");
}
.column-menu__item a .column-icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 26px;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .column-menu__item a .column-icon.haisha {
    margin-right: 10px;
  }
}
.column-menu__item a .column-icon.haisha {
  background-image: url("../images/icon/car_black_icon.svg");
}
@media screen and (min-width: 768px) {
  .column-menu__item a .column-icon.sell {
    margin-right: 7px;
  }
}
.column-menu__item a .column-icon.sell {
  background-image: url("../images/icon/yen_black_icon.svg");
}
@media screen and (min-width: 768px) {
  .column-menu__item a .column-icon.transfer {
    margin-right: 10px;
  }
}
.column-menu__item a .column-icon.transfer {
  background-image: url("../images/icon/transfer_black_icon.svg");
}
@media screen and (min-width: 768px) {
  .column-menu__item a .column-icon.other {
    margin-right: 5px;
  }
}
.column-menu__item a .column-icon.other {
  background-image: url("../images/icon/star_black_icon.svg");
}
.column-menu__item.knowledge a img {
  max-width: 1.6rem;
}

.haikeibox1 {
  padding: 0.5em 1em;
  margin: 1em 0;
  color: #2c2c2f;
  background-color: #e6f2ff !important;
}

.blue-frame {
  border: 3px solid #3d8cdc;
  padding: 10px;
  margin-bottom: 20px;
}

.single-column blockquote {
  position: relative;
  padding: 1rem;
  padding-top: 50px;
  box-sizing: border-box;
  background: #e4e4e4;
  border-left: 2px solid #333333;
}
.single-column blockquote:before {
  content: "“";
  color: #3d8cdc;
  display: inline-block;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-size: 4rem;
  line-height: 1;
}
.single-column blockquote a {
  color: initial;
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: 70%;
  font-size: 10px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .single-column blockquote a {
    font-size: 14px;
  }
}
.single-column blockquote a::before {
  content: "引用元：";
}

.entry-content {
  position: relative;
  padding: 1rem;
  padding-top: 2rem;
  background: #fdefca;
}
.entry-content:before {
  content: "CHECK";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.6em;
  color: #ffffff;
  background: orange;
  border-radius: 1rem;
  line-height: 1.2;
}

.baloon-r,
.baloon-l,
.baloon-sv {
  flex-direction: row !important;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .baloon-r,
  .baloon-l,
  .baloon-sv {
    width: 80%;
    margin: auto;
  }
}
.baloon-r p,
.baloon-l p,
.baloon-sv p {
  flex: 0 0 75%;
  display: inline-block;
  position: relative;
  padding: 7px 10px;
  max-width: 100%;
}
.baloon-r p::before,
.baloon-l p::before,
.baloon-sv p::before {
  content: "";
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .baloon-r p,
  .baloon-l p,
  .baloon-sv p {
    flex: 0 0 82%;
    padding: 20px;
  }
}
.baloon-r .baloon-img::after,
.baloon-l .baloon-img::after,
.baloon-sv .baloon-img::after {
  content: "お客様";
  font-size: 10px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .baloon-r .baloon-img::after,
  .baloon-l .baloon-img::after,
  .baloon-sv .baloon-img::after {
    font-size: 14px;
  }
}
.baloon-r .baloon-img > img,
.baloon-l .baloon-img > img,
.baloon-sv .baloon-img > img {
  width: 18vw !important;
  height: 18vw !important;
  border-radius: 50%;
  max-width: initial;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .baloon-r .baloon-img > img,
  .baloon-l .baloon-img > img,
  .baloon-sv .baloon-img > img {
    width: 125px !important;
    height: 125px !important;
  }
}

.baloon-r p {
  margin: 0 15px 0 0;
  color: #555;
  font-size: 16px;
  background: #e5e5e5;
}
.baloon-r p::before {
  left: 100%;
  margin-top: -8px;
  border: 8px solid transparent;
  border-left: 10px solid #e5e5e5;
}

.baloon-l p {
  margin: 0 0 0 15px;
  color: #555;
  font-size: 16px;
  background: #fae5e6;
}
.baloon-l p::before {
  left: -18px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-right: 10px solid #fae5e6;
}
.baloon-l .baloon-img::after {
  content: "ハイシャル";
}

.baloon-sv p {
  margin: 0 0 0 15px;
  color: #555;
  font-size: 16px;
  background: #e2f0d9;
}
.baloon-sv p::before {
  left: -18px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-right: 10px solid #e2f0d9;
}
.baloon-sv .baloon-img::after {
  content: "";
}
.baloon-sv .baloon-img > span {
  font-size: 10px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .baloon-sv .baloon-img > span {
    font-size: 14px;
  }
  .baloon-sv .baloon-img > span > br {
    display: none;
  }
}

.columnbox2 {
  margin: 2em 0;
  background: #f1f1f1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.columnbox2 .box-title {
  font-size: 1.2em;
  background: #5fc2f5;
  padding: 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.columnbox2 p {
  padding: 15px 20px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .column_scroll_table {
    overflow-x: auto;
  }
  .column_scroll_table table {
    table-layout: fixed;
    font-size: 12px;
    width: 100%;
  }
  .column_scroll_table table tr:nth-child(1) {
    background-color: gray;
  }
  .column_scroll_table table th, .column_scroll_table table td {
    border: solid 1px;
    padding: 5px;
    width: 82px;
  }
}
.column_swipe {
  background-image: url("../images/column/swipe_white.svg”");
  background-repeat: no-repeat;
  background-size: contain;
  height: 30px;
  width: 100%;
  max-width: 200px;
  margin: auto;
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .column_swipe {
    display: none;
  }
}
.column_swipe img {
  width: 100%;
  height: 100%;
}

/*---------------------------------
- コラムarchive
- コラムsingle
---------------------------------*/
/*==================================================
  コラムarchive
===================================================*/
@media screen and (min-width: 768px) {
  .column_list {
    padding: 0 4%;
  }
}
@media screen and (min-width: 1000px) {
  .column_list {
    padding: 0;
  }
}
.column_list ul {
  list-style: none;
  padding-left: 0;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .column_list ul {
    margin-top: 30px;
  }
}
.column_list ul li {
  flex: 0 0 50%;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 20px;
  position: relative;
  height: 230px;
}
.column_list ul li:not(:nth-of-type(odd)) {
  padding-left: 2%;
}
.column_list ul li:not(:nth-of-type(even)) {
  padding-right: 2%;
}
@media screen and (min-width: 768px) {
  .column_list ul li {
    height: 260px;
    flex: 0 0 25%;
  }
  .column_list ul li:not(:nth-of-type(odd)) {
    padding-left: 0;
  }
  .column_list ul li:not(:nth-of-type(even)) {
    padding-right: 0;
  }
  .column_list ul li:not(:nth-of-type(4n)) {
    padding-right: 2%;
  }
}
.column_list ul li:hover {
  opacity: 0.5;
}
.column_list ul li a {
  text-decoration: none;
}
.column_list ul li a .thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .column_list ul li a .thumbnail {
    height: 150px;
  }
}
.column_list ul li a .attachment-thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .column_list ul li a .attachment-thumbnail {
    height: 130px;
  }
}
.column_list ul li a .column_list_item_info {
  padding-bottom: 8px;
}
.column_list ul li a .column_list_item_info p.title {
  color: initial;
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  max-height: 100px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media screen and (min-width: 768px) {
  .column_list ul li a .column_list_item_info p.title {
    -webkit-line-clamp: 3;
    max-height: 70px;
  }
}
.column_list ul li a .column_list_item_info .time {
  position: absolute;
  bottom: 7px;
  font-size: 10px;
  color: #696969;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .column_list ul li a .column_list_item_info .time {
    font-size: 12px;
  }
}
.column_list ul li a .column_list_item_info .time img {
  right: 5%;
  bottom: 10%;
  position: absolute;
  width: 18px;
}
@media screen and (min-width: 768px) {
  .column_list ul li a .column_list_item_info .time img {
    right: 8%;
  }
}
.column_list ul li a .column_list_item_info .time img.knowledge {
  width: 22px;
}

@media screen and (min-width: 768px) {
  .main_title_wrap .main_title_bg {
    height: 10rem;
  }
}
.main_title_wrap p {
  top: 50%;
  transform: translateY(-50%);
}
.main_title_wrap p img {
  width: 250px;
}
@media screen and (min-width: 768px) {
  .main_title_wrap p img {
    width: 300px;
  }
}

/*=================================================
  コラムsingle
==================================================*/
.single-column iframe {
  max-width: 100%;
}
.single-column hr {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .single-column hr {
    margin: 1px 0 7px;
  }
}
.single-column .column_detail {
  margin-top: 4%;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail {
    padding: 0 4%;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .column_detail {
    padding: 0;
  }
}
.single-column .column_detail ul:not(.jp-syllabary-list) {
  list-style: inherit;
  padding-left: 1.2rem;
}
.single-column .column_detail .title-wrap h2 img {
  height: 24px;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail .title-wrap h2 img {
    height: 36px;
  }
}
.single-column .column_detail img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .single-column .column_detail img {
    width: 100%;
  }
}
.single-column .column_detail img.attachment-post-thumbnail {
  margin-top: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail p {
    font-size: 16px;
  }
}
.single-column .column_detail h1 {
  border: none;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail h1 {
    font-size: 28px;
  }
}
.single-column .column_detail h2 {
  font-size: 20px;
  color: #ffffff;
  background: #267dcb;
  padding: 10px 5%;
  margin-left: -5%;
  margin-right: -5%;
  background-image: url("../images/tt/form_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
}
.single-column .column_detail h2::before {
  content: "";
}
@media screen and (min-width: 768px) {
  .single-column .column_detail h2 {
    padding: 20px 30px;
    font-size: 28px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}
.single-column .column_detail {
  /* 打ち消し
  ---------------------------------*/
}
.single-column .column_detail .bnr-refund h2 {
  margin: 0;
  padding: 0;
  background: none;
}
.single-column .column_detail {
  /*-------------------------------*/
}
.single-column .column_detail h3 {
  font-size: 18px;
  line-height: 1.4;
  padding: 0.2em;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1rem;
  background: #e6f2ff;
  border-left: 4px solid #267dcb;
  margin-bottom: 1rem;
}
.single-column .column_detail h3:before {
  height: 0;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail h3 {
    font-size: 26px;
  }
}
.single-column .column_detail {
  /* 目次
  ---------------------------------*/
}
.single-column .column_detail #toc_container {
  background-color: #ffffff;
  padding: 20px 30px;
  width: 100% !important;
}
.single-column .column_detail #toc_container .toc_title {
  font-size: 16px;
  text-align: initial;
  color: #267dcb;
}
.single-column .column_detail #toc_container .toc_list {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail #toc_container .toc_list li {
    font-size: 16px;
  }
}
.single-column .column_detail #toc_container .toc_list li a {
  color: initial;
}
.single-column .column_detail__header a {
  text-decoration: none;
}
.single-column .column_detail__header a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail__header a {
    font-size: 18px;
  }
}
.single-column .column_detail__header a img {
  width: 16px;
  vertical-align: text-bottom;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail__header a img {
    width: 26px;
  }
}
.single-column .column_detail__content {
  width: 100%;
  margin-top: 15px;
}
.single-column .column_detail .bnr-contact {
  background-color: #e6f2ff;
}
.single-column .column_detail .bnr-contact.bnr-column {
  padding: 0px 15px;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail .bnr-contact.bnr-column {
    padding-top: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.single-column .column_detail .bnr-contact .l-container {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail .bnr-contact .l-container {
    padding: 0 5%;
  }
}
.single-column .column_detail .bnr-contact__pc {
  padding-top: 0;
  padding-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail .bnr-contact__pc {
    padding-bottom: 30px !important;
  }
}
.single-column .column_detail .bnr-contact__pc img {
  max-width: 800px !important;
}
@media screen and (min-width: 768px) {
  .single-column .column_detail .bnr-contact__pc p {
    top: 30%;
    left: 28%;
    font-size: 4vw;
  }
}
@media screen and (min-width: 1000px) {
  .single-column .column_detail .bnr-contact__pc p {
    top: 35%;
    left: 28%;
    font-size: 52px;
  }
}
.single-column .column_detail .column {
  background-color: #fff;
}
.single-column .column_detail .form-col2 {
  background-color: #e6f2ff;
}
.single-column .column_detail .form-col2__title {
  padding: 0 15px;
}
.single-column #footer .form-col2__title {
  padding: 0 15px;
}
.single-column #footer .form-col2__title img {
  height: auto;
  width: 100%;
}

/* border line base */
/* table border line base */
/* 下取り・買取比較（共通） */
.trade-compare {
  width: 100%;
  border-collapse: collapse;
  border: 3px double #000;
}
.trade-compare tr, .trade-compare td {
  border: 3px double #000;
}
.trade-compare tr:first-child {
  background-color: #e6e6e6;
}
.trade-compare td {
  width: 33%;
}
.trade-compare td:first-child {
  text-align: center;
  background-color: #e6e6e6;
}

/* 買取費用比較（共通） */
.haishall-free {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.haishall-free tr, .haishall-free td {
  border: 1px solid #e6e6e6;
}
.haishall-free tr:first-child {
  background-color: #e6e6e6;
}
.haishall-free td {
  width: 33%;
  text-align: center;
}
.haishall-free span {
  color: red;
}

/* 買取実績（共通） */
.achievements {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  border: 1px solid gray;
}
.achievements th, .achievements td {
  border: 1px solid gray;
}
.achievements th {
  width: 25%;
  text-align: left;
  background-color: #b0beff;
}
.achievements td {
  width: 75%;
}

/* slug: 10nen-lexus */
.lexus {
  /* 比較 */
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #003000;
}
.lexus tr, .lexus td {
  border: 1px solid #003000;
}
.lexus tr {
  height: 24px;
}
.lexus tr:first-child {
  background-color: #3880f5;
}
.lexus tr:first-child span {
  color: #fff;
}
.lexus tr:not(:first-child) td:first-child {
  background-color: #f2f2f2;
}
.lexus td {
  width: 33%;
  text-align: center;
}

/* slug: 10nen-satei */
.assessment {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}
.assessment tr, .assessment td {
  border: 1px solid #a6a6a6;
}
.assessment tr {
  height: 24px;
}
.assessment td {
  width: 25%;
}

/* slug: 10nen-serena */
.serena {
  /* 買取価格が付く理由 */
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.serena tr, .serena td {
  border: 1px solid #000;
}
.serena tr {
  height: 24px;
}
.serena tr:first-child {
  background-color: #3880f5;
}
.serena tr:first-child span {
  color: #fff;
}
.serena tr:not(:first-child) td:first-child {
  background-color: #f2f2f2;
}
.serena td {
  width: 50%;
  text-align: center;
}

/* slug: 13nen-sitadori */
.tax-13nen {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.tax-13nen tr, .tax-13nen td {
  border: 1px solid #e6e6e6;
}
.tax-13nen tr {
  height: 25px;
}
.tax-13nen td {
  width: 55%;
}
.tax-13nen td:first-child {
  width: 45%;
  background-color: #0083d3;
}
.tax-13nen td:first-child span {
  color: #fff;
}

/* slug: haisha-jibaiseki */
.liability {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cccccc;
}
.liability tr, .liability td {
  border: 1px solid #cccccc;
}
.liability tr:first-child {
  background-color: #cccccc;
}
.liability td {
  width: 33%;
  text-align: center;
}

/* slug: haisha-jidoshajuryo */
.weight-tax {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cccccc;
}
.weight-tax tr, .weight-tax td {
  border: 1px solid #cccccc;
}
.weight-tax tr:first-child {
  background-color: #cccccc;
}
.weight-tax tr:nth-child(odd):not(:first-child) {
  background-color: #e6e6e6;
}
.weight-tax td {
  width: 25%;
  text-align: center;
}

/* slug: haikiryou */
.taxes__cc {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.taxes__cc th, .taxes__cc td {
  border: 1px solid #000;
}
.taxes__cc thead th {
  width: 40%;
  text-align: left;
}
.taxes__cc thead th:first-child {
  width: 20%;
}
.taxes__cc tbody th {
  text-align: left;
}
.taxes__cc tbody td {
  text-align: center;
}
.taxes__buy {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #080000;
}
.taxes__buy tr, .taxes__buy td {
  border: 1px solid #080000;
}
.taxes__buy tr {
  height: 24px;
  text-align: center;
}
.taxes__buy tr:nth-child(-n+2) {
  background-color: #3880f5;
}
.taxes__buy tr:nth-child(-n+2) span {
  color: #fff;
}
.taxes__buy td {
  width: 20%;
}
.taxes__inspect {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #030000;
}
.taxes__inspect tr, .taxes__inspect td {
  border: 1px solid #030000;
}
.taxes__inspect tr {
  height: 24px;
}
.taxes__inspect tr:nth-child(-n+3) {
  background-color: #3880f5;
}
.taxes__inspect tr:nth-child(-n+3) span {
  color: #fff;
}
.taxes__inspect td {
  width: 16%;
  text-align: center;
}
.taxes__eco {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}
.taxes__eco tr, .taxes__eco td {
  border: 1px solid #000;
}
.taxes__eco tr {
  height: 24px;
}
.taxes__eco tr:nth-child(-n+3) span {
  color: #000;
}
.taxes__eco td {
  width: 25%;
  text-align: center;
}

/* slug: haisha-kuruma */
.erase {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.erase tr, .erase td {
  border: 1px solid #000;
}
.erase td {
  width: 50%;
}
.erase td:first-child {
  background-color: #e6e6e6;
  text-align: center;
}

/* slug: haisha-ninni */
.refund-term {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cccccc;
}
.refund-term tr, .refund-term td {
  border: 1px solid #cccccc;
}
.refund-term tr:first-child {
  background-color: #cccccc;
}
.refund-term tr:nth-child(odd):not(:first-child) {
  background-color: #e6e6e6;
}
.refund-term td {
  width: 50%;
  text-align: center;
}

/* slug: kizudarake-kaitori */
.scratch {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.scratch tr, .scratch td {
  border: 1px solid #000;
}
.scratch tr:first-child {
  text-align: center;
  background-color: #e6e6e6;
}
.scratch td {
  width: 50%;
}

/* slug: kuruma-kaikae */
.replacement {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.replacement tr, .replacement td {
  border: 1px solid #e6e6e6;
}
.replacement tr {
  height: 25px;
}
.replacement tr:nth-child(-n+2) {
  text-align: center;
}
.replacement td {
  width: 40%;
}
.replacement td:first-child {
  width: 20%;
}

/* slug: kuruma-shobun */
.disposal__document {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eeeeee;
}
.disposal__document tr, .disposal__document td {
  border: 1px solid #eeeeee;
}
.disposal__document tr {
  height: 25px;
}
.disposal__document td {
  width: 50%;
}
.disposal__document td span {
  color: red;
}
.disposal__document td:first-child {
  background-color: #0083d3;
}
.disposal__document td:first-child span {
  color: #fff;
}
.disposal__cost {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.disposal__cost tr, .disposal__cost td {
  border: 1px solid #000;
}
.disposal__cost tr {
  height: 27px;
}
.disposal__cost tr:first-child td {
  width: 70%;
  background-color: #dbedf7;
}
.disposal__cost tr:first-child td:first-child {
  width: 30%;
}
.disposal__cost td {
  text-align: center;
}

/* slug: lightcar-haisha-kaitori */
.lightcar {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
}
.lightcar tr, .lightcar td {
  border: 1px solid #e6e6e6;
}
.lightcar td {
  width: 50%;
}
.lightcar td:first-child {
  background-color: #0083d3;
}
.lightcar td:first-child span {
  color: #fff;
}

/* slug: overheat-haisha */
.overheat {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}
.overheat tr, .overheat td {
  border: 1px solid #000;
}
.overheat tr {
  height: 24px;
}
.overheat tr:first-child {
  background-color: #3880f5;
}
.overheat tr:first-child span {
  color: #fff;
}
.overheat td {
  width: 50%;
  text-align: center;
}

/* slug: suibotsu-kaitori */
.iron-scrap {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.iron-scrap tr, .iron-scrap td {
  border: 1px solid #000;
}
.iron-scrap td {
  width: 25%;
  text-align: center;
}

/* slug: ugokanai-shobun-haisha */
.immovable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #030000;
}
.immovable tr, .immovable td {
  border: 1px solid #030000;
}
.immovable tr {
  height: 24px;
}
.immovable tr:first-child {
  height: 24px;
  background-color: #3880f5;
}
.immovable tr:first-child span {
  color: #fff;
}
.immovable tr:not(:first-child) td:first-child {
  background-color: #f2f2f2;
}
.immovable td {
  width: 50%;
  text-align: center;
}
.immovable td:not(:first-child) span {
  color: red;
}

/* slug: haisha-refund */
.refunds__weight-tax {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__weight-tax tr, .refunds__weight-tax td {
  border: 1px solid #000;
}
.refunds__weight-tax tr:first-child {
  background-color: #e6f2ff;
}
.refunds__weight-tax td {
  width: 16%;
}
.refunds__description {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__description tr, .refunds__description td {
  border: 1px solid #000;
}
.refunds__description tr:first-child {
  text-align: center;
  background-color: #e6f2ff;
}
.refunds__description td {
  width: 65%;
}
.refunds__description td:first-child {
  width: 35%;
  text-align: center;
}
.refunds__insurance {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__insurance tr, .refunds__insurance td {
  border: 1px solid #000;
}
.refunds__insurance tr:first-child {
  background-color: #e6f2ff;
}
.refunds__insurance td {
  width: 33%;
  text-align: center;
}
.refunds__insurance td:first-child {
  background-color: #e6f2ff;
}
.refunds__tax {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__tax tr, .refunds__tax td {
  border: 1px solid #000;
}
.refunds__tax tr:first-child {
  text-align: center;
  background-color: #e6f2ff;
}
.refunds__tax td {
  width: 16%;
  text-align: center;
}
.refunds__tax td:first-child {
  background-color: #e6f2ff;
}
.refunds__inspect {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__inspect tr, .refunds__inspect td {
  border: 1px solid #000;
}
.refunds__inspect tr {
  height: 27px;
}
.refunds__inspect tr:first-child {
  background-color: #dbedf7;
}
.refunds__inspect td {
  width: 40%;
  text-align: center;
}
.refunds__inspect td:first-child {
  width: 20%;
}
.refunds__compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__compare tr, .refunds__compare td {
  border: 1px solid #000;
}
.refunds__compare tr {
  height: 60px;
}
.refunds__compare tr:first-child {
  height: 30px;
  background-color: #e6f2ff;
}
.refunds__compare td {
  width: 25%;
  text-align: center;
}
.refunds__compare td:first-child {
  background-color: #e6f2ff;
}
.refunds__acting {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__acting tr, .refunds__acting td {
  border: 1px solid #000;
}
.refunds__acting tr {
  height: 60px;
}
.refunds__acting tr:first-child {
  background-color: #e6f2ff;
}
.refunds__acting td {
  width: 60%;
  text-align: center;
}
.refunds__acting td:first-child {
  width: 40%;
}
.refunds__cost {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__cost tr, .refunds__cost td {
  border: 1px solid #000;
}
.refunds__cost tr {
  height: 60px;
}
.refunds__cost tr:first-child {
  background-color: #e6f2ff;
}
.refunds__cost tr:nth-child(3) td span {
  color: red;
}
.refunds__cost td {
  width: 33%;
  text-align: center;
}
.refunds__cost td:first-child {
  background-color: #e6f2ff;
}
.refunds__bureau {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__bureau tr, .refunds__bureau td {
  border: 1px solid #000;
}
.refunds__bureau tr:first-child, .refunds__bureau td:first-child {
  text-align: center;
  background-color: #e6f2ff;
}
.refunds__document {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__document tr, .refunds__document td {
  border: 1px solid #000;
}
.refunds__document tr {
  height: 60px;
}
.refunds__document tr:first-child {
  background-color: #e6f2ff;
}
.refunds__document td {
  width: 33%;
  text-align: center;
}
.refunds__labor {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.refunds__labor tr, .refunds__labor td {
  border: 1px solid #000;
}
.refunds__labor tr:first-child {
  text-align: center;
  background-color: #e6f2ff;
}
.refunds__labor td {
  width: 70%;
}
.refunds__labor td:first-child {
  width: 30%;
  text-align: center;
}

/* slug: shakengire-kaitori */
.expired__compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}
.expired__compare tr, .expired__compare td {
  border: 1px solid #000;
}
.expired__compare tr {
  height: 26px;
}
.expired__compare tr:first-child {
  background-color: #db9c9c;
}
.expired__compare tr:not(:first-child) td:nth-child(2) {
  background-color: #eedddd;
}
.expired__compare td {
  width: 20%;
  text-align: center;
}
.expired__compare td span {
  font-family: inherit;
  font-size: inherit;
}
.expired__jaf {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
}
.expired__jaf tr, .expired__jaf td {
  border: 1px solid #000;
}
.expired__jaf tr {
  height: 26px;
}
.expired__jaf td {
  width: 33%;
  text-align: center;
}
.expired__survey {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #1c1919;
}
.expired__survey tr, .expired__survey td {
  border: 1px solid #1c1919;
}
.expired__survey tr {
  height: 26px;
}
.expired__survey tr:first-child {
  background-color: #db9c9c;
}
.expired__survey td {
  width: 25%;
}
.expired__demerit {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #211d1d;
}
.expired__demerit tr, .expired__demerit td {
  border: 1px solid #211d1d;
}
.expired__demerit tr {
  height: 26px;
}
.expired__demerit tr:first-child {
  background-color: #db9c9c;
}
.expired__demerit td {
  width: 50%;
  text-align: center;
}
.expired__window {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #302b2b;
}
.expired__window tr, .expired__window td {
  border: 1px solid #302b2b;
}
.expired__window td {
  width: 50%;
  text-align: center;
}
.expired__document {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #221c1c;
}
.expired__document tr, .expired__document td {
  border: 1px solid #221c1c;
}
.expired__document tr {
  height: 26px;
}
.expired__document tr:first-child {
  text-align: center;
  background-color: #db9c9c;
}
.expired__document tr:not(:first-child) td span {
  color: red;
}
.expired__document td {
  width: 50%;
}

/*table-car_price*/
.used_car_dealer {
  width: 100% !important;
}
.used_car_dealer tr td {
  width: 25% !important;
  height: 27px !important;
  text-align: center !important;
  border: 1px solid #000 !important;
  border-color: #000000 !important;
  background-color: #e6f2ff !important;
}

.error_example {
  width: 100 !important;
  border-collapse: collapse !important;
  border: 1px solid #000 !important;
}
.error_example tr td {
  width: 100% !important;
  height: 27px !important;
}
.error_example:nth-child(1) td {
  background-color: #dbedf7 !important;
  text-align: center !important;
}

.agent_advantage {
  width: 100% !important;
}
.agent_advantage tr td {
  width: 33.3333% !important;
  border: 1px solid #000 !important;
  text-align: center !important;
  height: 27px !important;
}
.agent_advantage tr:nth-child(1) td {
  background-color: #dbedf7 !important;
}
.agent_advantage tr:nth-child(2) td {
  height: 24px !important;
}

.cancel_fee {
  width: 100% !important;
}
.cancel_fee tr:nth-child(1) td {
  background-color: #dbedf7 !important;
  height: 25px !important;
}
.cancel_fee tr td {
  width: 50% !important;
  border: 1px solid #000 !important;
  height: 27px !important;
  text-align: center !important;
}

.car_detail {
  width: 100% !important;
  border-collapse: collapse;
  border: 1px solid gray;
}
.car_detail th, .car_detail td {
  border: 1px solid gray !important;
}
.car_detail th {
  width: 25% !important;
  text-align: left !important;
  background-color: #b0beff !important;
  height: 24px !important;
}
.car_detail td {
  width: 75% !important;
  height: 24px !important;
}

/*common table header blue col 3*/
.tb_col_3_blue {
  width: 100% !important;
}
.tb_col_3_blue tr:nth-child(1) td {
  background-color: #dbedf7 !important;
  height: 27px !important;
}
.tb_col_3_blue tr td {
  width: 33.3333% !important;
  border: 1px solid #000 !important;
  height: 24px !important;
  text-align: center !important;
}

/*common table header blue col 4*/
.tb_col_4_blue {
  width: 100% !important;
}
.tb_col_4_blue tr:nth-child(1) td {
  background-color: #dbedf7 !important;
  height: 27px !important;
}
.tb_col_4_blue tr td {
  width: 25% !important;
  border: 1px solid #000 !important;
  height: 24px !important;
  text-align: center !important;
}

/*hudousya-kaitori*/
.buy_car__scrapped tr th {
  width: 10% !important;
  text-align: center !important;
  background-color: #2f55b0 !important;
}
.buy_car__scrapped tr span {
  color: #ffffff !important;
}
.buy_car__scrapped tr:nth-child(even) td {
  text-align: center !important;
}
.buy_car__scrapped tr:nth-child(odd) td {
  text-align: center !important;
  background-color: #e6e6e6 !important;
}
.buy_car__scrapped_review tr span {
  color: #ffffff !important;
}
.buy_car__scrapped_review tr td {
  background-color: #ebebeb !important;
}
.buy_car__scrapped_review tr:nth-child(even) th {
  width: 10% !important;
  background-color: #ebebeb !important;
  text-align: center !important;
}
.buy_car__scrapped_review tr:nth-child(odd) th {
  background-color: #3d6cbe !important;
  text-align: center !important;
}
.buy_car__scrapped_review tr:last-child td {
  background-color: #aac5e5 !important;
}
.buy_car__damaged tr {
  width: 100% !important;
}
.buy_car__damaged tr:nth-child(1) td {
  width: 50% !important;
  height: 18px !important;
  background-color: #dbedf7 !important;
  border-color: #332a2a !important;
  border: 1px solid #000 !important;
  text-align: center !important;
}
.buy_car__damaged tr:nth-child(2) td {
  width: 50% !important;
  height: 27px !important;
  border-color: #332a2a !important;
  border: 1px solid #000 !important;
}
.buy_car__cost {
  width: 100% !important;
}
.buy_car__cost tr td {
  width: 50% !important;
  height: 26px !important;
  border: 1px solid #302b2b !important;
}
.buy_car__cost tr:nth-child(1) td {
  background-color: #dbedf7 !important;
}
.buy_car__cost tr:nth-child(1) td span {
  font-size: 14pt !important;
}
.buy_car__cost tr:nth-child(2) td:nth-child(2) span {
  color: #ff0000 !important;
}
.buy_car__process {
  width: 100% !important;
}
.buy_car__process tr:nth-child(1) td {
  text-align: center !important;
  background-color: #dbedf7 !important;
}
.buy_car__process tr:nth-child(1) td span {
  font-size: 14pt !important;
}
.buy_car__process tr td {
  text-align: left !important;
  width: 50% !important;
  border: 1px solid #383232 !important;
}

.assessor-intro {
  display: block;
  background-color: #ffffff;
}
.assessor-intro .title-wrap {
  margin: 0px;
}
.assessor-intro .title-wrap .sub-tt_1 {
  max-height: 25px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .assessor-intro .title-wrap .sub-tt_1 {
    max-height: 30px;
  }
}
.assessor-intro .title-wrap h2 img {
  margin-top: 20px;
  max-height: 70px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .assessor-intro .title-wrap h2 img {
    max-height: 100px;
  }
}
.assessor-intro .description-text {
  text-align: left;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .assessor-intro .description-text {
    padding-bottom: 30px;
    text-align: center;
  }
}
.assessor-intro .certificate {
  max-width: 700px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .assessor-intro .certificate {
    background: #e6f2ff;
    padding: 0px 30px;
    border-radius: 3px;
  }
}
.assessor-intro .certificate img {
  width: 100%;
  height: 100%;
}
.assessor-intro .certificate .pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .assessor-intro .certificate .pc {
    display: block;
  }
}
.assessor-intro .certificate .sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .assessor-intro .certificate .sp {
    display: none;
  }
}
.assessor-intro .certificate .sp img {
  max-width: 520px;
}

.bnr-refund-renew {
  padding: 0;
  background-color: #e6f2fd;
}
.bnr-refund-renew__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew__container {
    padding: 60px 0;
  }
}
.bnr-refund-renew__container__title {
  text-align: center;
  margin-bottom: 20px;
}
.bnr-refund-renew__container__title h2 {
  margin: 0;
}
.bnr-refund-renew__container__title h2 img {
  width: auto;
  height: auto;
}
.bnr-refund-renew .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .title-wrap .sub-tt {
    height: 30px;
  }
}
.bnr-refund-renew .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .title-wrap .main-tt {
    height: 35px;
  }
}
.bnr-refund-renew .img-wrap {
  position: relative;
}
.bnr-refund-renew .img-wrap p {
  position: absolute;
  font-size: 1rem;
}
.bnr-refund-renew .img-wrap p.should__annotation {
  text-align: left;
  top: 59%;
  padding: 0 6%;
  font-size: 3vw;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .img-wrap p.should__annotation {
    top: 54%;
    padding: 0 5%;
    font-size: clamp(8px, 1.2vw, 14px);
  }
}
.bnr-refund-renew .img-wrap .refund-month {
  word-break: keep-all;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  top: 3%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund-renew .img-wrap .refund-month {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .img-wrap .refund-month {
    font-size: 16px;
    top: 2vw;
    left: 28%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew .img-wrap .refund-month {
    top: 20px;
    left: 280px;
  }
}
.bnr-refund-renew .img-wrap .refund-month span {
  font-weight: bold;
  font-size: 6vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund-renew .img-wrap .refund-month span {
    font-size: 24px;
  }
}
.bnr-refund-renew .img-wrap .p-return__priceLPrice {
  top: 10.5%;
  left: 12%;
  font-size: 5vw;
}
@media screen and (min-width: 500px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 18.5vw;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 6vw;
    left: 4%;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice {
    top: 90px;
  }
}
.bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
  display: inline-block;
  text-align: center;
  font-size: 15vw;
  width: 47.5vw;
  letter-spacing: -0.06rem;
}
@media screen and (min-width: 500px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 80px;
    max-width: 278px;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 9vw;
    width: 29vw;
    max-width: inherit;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice .refund-amount {
    font-size: 92px;
    width: 320px;
  }
}
.bnr-refund-renew .img-wrap .p-return__priceLPrice span {
  font-weight: bold;
  font-size: 16px;
  line-height: 0;
}
.bnr-refund-renew .img-wrap .p-return__priceLPrice span:first-child {
  position: relative;
  bottom: -8px;
  left: -24vw;
}
@media screen and (min-width: 585px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice span:first-child {
    left: -8.8em;
  }
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice span {
    font-size: 26px;
  }
  .bnr-refund-renew .img-wrap .p-return__priceLPrice span:first-child {
    left: -14.7vw;
  }
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew .img-wrap .p-return__priceLPrice span {
    font-size: 28px;
  }
  .bnr-refund-renew .img-wrap .p-return__priceLPrice span:first-child {
    left: -45.6%;
  }
}
.bnr-refund-renew .img-wrap .refund-txt {
  font-size: 1.2vw;
  letter-spacing: -0.08em;
  position: absolute;
  top: 70%;
  left: 4%;
}
@media screen and (min-width: 1000px) {
  .bnr-refund-renew .img-wrap .refund-txt {
    font-size: 12px;
    letter-spacing: -0.04em;
    top: 320px;
  }
}
.bnr-refund-renew__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) {
  .bnr-refund-renew__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.bnr-refund-renew__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.bnr-refund-renew__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.bnr-refund-renew__btn p img {
  float: right;
  margin-right: 20px;
}
.bnr-refund-renew .should #countdown, .bnr-refund-renew .should #textContent1, .bnr-refund-renew .should #textContent2 {
  display: none;
}
.bnr-refund-renew .should .the_end_March {
  display: none;
}
.bnr-refund-renew .should__title, .bnr-refund-renew .should__first-content, .bnr-refund-renew .should__second-content {
  text-align: center;
}
.bnr-refund-renew .should__title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__title {
    display: flex;
    justify-content: center;
  }
}
.bnr-refund-renew .should__title__avatar {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__title__avatar {
    margin-top: 80px;
  }
}
.bnr-refund-renew .should__first-content {
  position: relative;
  margin: 13px auto 10px;
  top: -19px;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__first-content {
    top: -42px;
    margin: 30px auto 15px auto;
  }
}
.bnr-refund-renew .should__first-note {
  margin: 0;
  color: #ffffff;
  font-family: Noto Sans;
  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) {
  .bnr-refund-renew .should__first-note {
    margin-top: -45px;
    font-size: 18px;
  }
}
.bnr-refund-renew .should__break-line {
  display: block;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__break-line {
    display: none;
  }
}
.bnr-refund-renew .should__second-content {
  padding: 0;
  font-size: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__second-content {
    font-size: 24px;
    padding: 40px 0 15px;
  }
}
.bnr-refund-renew .should__second-content__limitText {
  position: absolute;
  justify-content: center;
  display: flex;
  color: #ffffff;
  font-family: Noto Sans;
  font-size: clamp(8px, 3vw, 12px);
  width: 100%;
}
.bnr-refund-renew .should__second-content__limitText p {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__second-content__limitText {
    width: 100%;
    font-size: clamp(12px, 2.5vw, 24px);
  }
}
.bnr-refund-renew .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) {
  .bnr-refund-renew .should__second-content__countdown {
    width: 390px;
    top: 57.5%;
  }
}
.bnr-refund-renew .should__second-content__countdown div {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.bnr-refund-renew .should__second-content__countdown div p span {
  font-family: Helvetica;
  font-size: 29px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.04em;
  text-align: center;
  color: #FF4D4D;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__second-content__countdown div p span {
    font-family: Helvetica;
    font-size: 45px;
    line-height: 52px;
    letter-spacing: -0.02em;
  }
}
.bnr-refund-renew .should__second-content__countdown .should__second-content__countdown h3,
.bnr-refund-renew .should__second-content__countdown .should__second-content__countdown p {
  margin: 0;
}
.bnr-refund-renew .should__second-content__annotation {
  position: absolute;
  justify-content: center;
  display: flex;
  font-family: Noto Sans;
  font-size: clamp(8px, 1.5vw, 9px);
  bottom: 0%;
  width: 100%;
}
.bnr-refund-renew .should__second-content__annotation p {
  width: 95%;
  margin-bottom: 2%;
}
.bnr-refund-renew .should__second-content__annotation .red-text {
  color: #FF4D4D;
}
@media screen and (min-width: 768px) {
  .bnr-refund-renew .should__second-content__annotation {
    width: 100%;
    font-size: clamp(10px, 2.5vw, 14px);
    bottom: 4%;
  }
}

.cancel-policy__title {
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 5px;
}
.cancel-policy p {
  margin: 0px;
}
.cancel-policy h2 {
  margin: 0;
}

.customer-voice {
  background-color: #ffffff;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .customer-voice {
    padding-bottom: 30px;
  }
}
.customer-voice__title {
  padding: 20px 0px;
}
@media screen and (min-width: 768px) {
  .customer-voice__title {
    padding: 30px 0px;
  }
}
.customer-voice__title h2 {
  font-size: 18px;
  text-align: center;
  line-height: 22px;
  margin: 0px;
}
@media screen and (min-width: 768px) {
  .customer-voice__title h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.customer-voice__title .line {
  width: 40px;
  height: 3px;
  background-color: #267dcb;
  margin: 10px auto 0px auto;
}
@media screen and (min-width: 768px) {
  .customer-voice__title .line {
    width: 50px;
  }
}
.customer-voice__content {
  display: flex;
  flex-direction: column;
}
.customer-voice__content .item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 0px;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item {
    padding: 15px 0px;
    display: block;
  }
}
.customer-voice__content .item:not(:last-child()) {
  border-bottom: 1px solid #e4e4e4;
}
.customer-voice__content .item:last-child() {
  padding-bottom: 0px;
}
.customer-voice__content .item .image {
  width: 150px;
  float: none;
  display: inline-block;
}
.customer-voice__content .item .image img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item .image {
    float: left;
    width: 230px;
  }
}
.customer-voice__content .item .title {
  width: calc(100% - 155px);
  display: inline-block;
  padding-left: 10px;
  margin: auto 0px auto 0px;
}
.customer-voice__content .item .title h3 {
  font-size: 16px;
  margin: 0px;
}
.customer-voice__content .item .title h3 span {
  display: block;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item .title h3 span {
    display: inline-block;
  }
}
.customer-voice__content .item .title .satisfaction {
  padding: 5px 0px;
  letter-spacing: 0.1px;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item .title {
    width: calc(100% - 230px);
    padding-left: 20px;
    padding-top: 0px;
  }
  .customer-voice__content .item .title h2 {
    font-size: 18px;
  }
}
.customer-voice__content .item .txt {
  display: block;
  width: 100%;
  padding-left: 0px;
  padding-top: 15px;
  margin: 0px;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item .txt {
    display: inline-block;
    width: calc(100% - 230px);
    padding-left: 20px;
    padding-top: 0px;
  }
}
.customer-voice__content .item .star-on, .customer-voice__content .item .star-off, .customer-voice__content .item .star-haft {
  background-image: url("../images/jisseki/start1_0.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .customer-voice__content .item .star-on, .customer-voice__content .item .star-off, .customer-voice__content .item .star-haft {
    width: 15px;
    height: 15px;
  }
}
.customer-voice__content .item .star-off {
  background-image: url("../images/jisseki/start0.webp");
}
.customer-voice__content .item .star-haft {
  background-image: url("../images/jisseki/start1_5.webp");
}

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

.home-faq {
  padding: 0;
}
.home-faq .faq {
  font-family: "Noto Sans";
  padding: 0;
}
.home-faq .faq__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home-faq .faq__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .home-faq .faq__container {
    padding: 60px 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;
}

.jisseki-purchase_new {
  background-color: #ffffff;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new {
    padding: 30px 0 60px;
  }
}
.jisseki-purchase_new .title-wrap h2 {
  color: #006ebb;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new .title-wrap h2 {
    font-size: 55px;
  }
}
.jisseki-purchase_new .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new .title-wrap .sub-tt {
    height: 30px;
  }
}
.jisseki-purchase_new .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new .title-wrap .main-tt {
    height: 35px;
  }
}
.jisseki-purchase_new__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  align-items: stretch;
}
.jisseki-purchase_new__list__item {
  border: 1px solid #e4e4e4;
  flex-basis: 48%;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item {
    flex-basis: 32%;
  }
}
.jisseki-purchase_new__list__item a {
  text-decoration: none;
  color: #333333;
}
.jisseki-purchase_new__list__item .img {
  width: 100%;
  position: relative;
  padding-top: 65.33%;
}
.jisseki-purchase_new__list__item .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.jisseki-purchase_new__list__item__detail dl {
  display: flex;
  width: calc(100% - 10px);
  margin: auto auto 0px auto;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item__detail dl {
    width: calc(100% - 20px);
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase_new__list__item__detail dl {
    font-size: 10px;
  }
}
.jisseki-purchase_new__list__item__detail dl.price-box {
  line-height: 3em;
  border-bottom: none;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: center;
}
.jisseki-purchase_new__list__item__detail dl.price-box .price {
  color: #fe0000;
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.jisseki-purchase_new__list__item__detail dl.price-box .price::after {
  content: "円";
  color: #fe0000;
  margin-bottom: 0px;
  font-size: 16px;
  height: 20px;
  margin-top: 2px;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item__detail dl.price-box .price {
    font-size: 34px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase_new__list__item__detail dl.price-box .price {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
  .jisseki-purchase_new__list__item__detail dl.price-box .price::after {
    font-size: 10px;
    margin-left: -5px;
  }
}
.jisseki-purchase_new__list__item__detail dl.price-box .price_text {
  color: #ff1a1a;
  font-size: 10px;
  min-width: 40px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item__detail dl.price-box .price_text {
    font-size: 16px;
    min-width: 80px;
  }
}
.jisseki-purchase_new__list__item__detail dl .maker_name {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  width: 150px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item__detail dl .maker_name {
    font-size: 24px;
    line-height: 36px;
    width: 265px;
  }
}
.jisseki-purchase_new__list__item__detail dl .year {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase_new__list__item__detail dl .mileage {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase_new__list__item__detail dl dt {
  min-width: 60px;
  max-height: 60px;
  margin-right: 5px;
  position: relative;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__list__item__detail dl dt {
    min-width: 90px;
    max-height: 90px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase_new__list__item__detail dl dt {
    min-width: 50px;
    max-height: 50px;
  }
}
.jisseki-purchase_new__list__item__detail dl dd {
  margin-bottom: 0;
}
.jisseki-purchase_new__card {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card {
    margin-bottom: 30px;
  }
}
.jisseki-purchase_new__card ul li {
  border: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li {
    display: flex !important;
    padding: 20px;
    height: 315px;
  }
}
.jisseki-purchase_new__card ul li img {
  height: 61vw !important;
  object-fit: cover;
  width: 11px;
  max-height: 320px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li img {
    height: auto !important;
    width: 45.3% !important;
    object-position: 50% 0;
  }
}
.jisseki-purchase_new__card ul li .info {
  font-size: 13px;
  padding: 12px;
  padding-top: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li .info {
    padding-left: 4%;
    max-width: 60% !important;
  }
}
.jisseki-purchase_new__card ul li .info dl {
  display: flex;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li .info dl {
    font-size: 18px;
  }
}
.jisseki-purchase_new__card ul li .info dl:first-child {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.jisseki-purchase_new__card ul li .info dl:first-child dt {
  top: 8px;
}
.jisseki-purchase_new__card ul li .info dl:first-child dd {
  font-size: 22px;
  font-weight: 300;
  color: #fe0000;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li .info dl:first-child dd {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
  }
}
.jisseki-purchase_new__card ul li .info dl dt {
  font-weight: normal;
  position: relative;
  width: 36%;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li .info dl dt {
    font-size: 18px;
    width: 120px;
  }
}
.jisseki-purchase_new__card ul li .info dl dt::after {
  position: absolute;
  right: 5px;
  content: ":";
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new__card ul li .info dl dt::after {
    margin-right: 10px;
  }
}
.jisseki-purchase_new__card ul li .info dl dd {
  font-weight: 400;
  margin-bottom: 0;
}
.jisseki-purchase_new .c-button__blue2 {
  box-shadow: 2px 3px 4px 0px grey;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase_new .c-button__blue2 {
    margin-top: 10px;
    padding: 12px 0;
    border-radius: 5px;
  }
}

.market-price-graph .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .market-price-graph .title-wrap .sub-tt {
    height: 30px;
  }
}
.market-price-graph .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .market-price-graph .title-wrap .main-tt {
    height: 35px;
  }
}
.market-price-graph__container {
  width: 100%;
  background-color: #ffffff;
  border-top: 5px solid #267dcb;
  border-radius: 2px;
}
.market-price-graph__container:not(:first-child()) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container:not(:first-child()) {
    margin-top: 30px;
  }
}
.market-price-graph__container__title {
  padding: 20px 0px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__title {
    padding: 30px 0px;
  }
}
.market-price-graph__container__title h3 {
  font-size: 18px;
  text-align: center;
  line-height: 22px;
  margin: 0px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__title h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
.market-price-graph__container__title h3 .blue_txt {
  color: #267dcb;
}
.market-price-graph__container__title .line {
  width: 40px;
  height: 3px;
  background-color: #267dcb;
  margin: 10px auto 0px auto;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__title .line {
    width: 50px;
  }
}
.market-price-graph__container__content {
  padding: 0px 15px 15px 15px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content {
    padding: 0px 50px 50px 50px;
  }
}
.market-price-graph__container__content__graph-box__remark {
  padding: 30px 0px 0px 0px;
  display: block;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content__graph-box__remark {
    padding: 20px 0px;
  }
}
.market-price-graph__container__content__graph-box__remark .ordinary-car, .market-price-graph__container__content__graph-box__remark .light-car {
  display: inline-block;
  color: #f06d72;
  position: relative;
  padding-left: 40px;
}
.market-price-graph__container__content__graph-box__remark .ordinary-car::before, .market-price-graph__container__content__graph-box__remark .light-car::before {
  content: "";
  position: absolute;
  margin-left: -40px;
  width: 30px;
  height: 15px;
  background-color: #f06d72;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content__graph-box__remark .ordinary-car, .market-price-graph__container__content__graph-box__remark .light-car {
    padding-left: 50px;
  }
  .market-price-graph__container__content__graph-box__remark .ordinary-car::before, .market-price-graph__container__content__graph-box__remark .light-car::before {
    width: 40px;
    margin-left: -50px;
  }
}
.market-price-graph__container__content__graph-box__remark .light-car {
  color: #f5a731;
  margin-left: 0px;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content__graph-box__remark .light-car {
    margin-left: 20px;
    padding-bottom: 0px;
  }
}
.market-price-graph__container__content__graph-box__remark .light-car::before {
  background-color: #f5a731;
}
.market-price-graph__container__content__graph-box__graph {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content__graph-box__graph {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.market-price-graph__container__content__graph-box__graph .graph {
  flex-basis: 60%;
}
.market-price-graph__container__content__graph-box__graph .graph img {
  width: 100%;
  height: 100%;
}
.market-price-graph__container__content__graph-box__graph .text {
  flex-basis: 40%;
  padding-left: 0px;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .market-price-graph__container__content__graph-box__graph .text {
    padding-top: 0px;
    padding-left: 10px;
  }
}
.market-price-graph__container__content__graph-box__graph .text .point {
  background-color: #e4e4e4;
  padding: 20px;
  position: relative;
}
.market-price-graph__container__content__graph-box__graph .text .point::after {
  content: "";
  background-image: url("../images/top/market_price/point.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 60px;
  height: 40px;
  top: -20px;
  right: -10px;
}
.market-price-graph__container__content__graph-box__graph .text .caution {
  padding: 10px 0px 0px 10px;
  font-size: 12px;
}
.market-price-graph__container__content__favorite-car {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
.market-price-graph__container__content__favorite-car img {
  width: 100%;
  height: 100%;
}

.media-renew {
  background: #ffffff;
  padding: 0;
}
.media-renew__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .media-renew__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .media-renew__container {
    padding: 60px 0;
  }
}
.media-renew__title {
  width: 232px;
  height: 45px;
  margin: 0 auto 16px;
}
@media screen and (min-width: 768px) {
  .media-renew__title {
    width: 449px;
    margin-bottom: 40px;
  }
}
.media-renew__title h2 {
  margin: 0;
}
.media-renew__title h2 img {
  width: auto;
  height: auto;
}
.media-renew__wrap {
  display: flex;
  justify-content: center;
  padding: 0rem;
  flex-direction: column;
  gap: 1;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap {
    gap: 57px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1000px) {
  .media-renew__wrap {
    margin: 0;
  }
}
.media-renew__wrap__img {
  flex-basis: auto;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap__img {
    flex-basis: 400px;
  }
}
.media-renew__wrap img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap img {
    width: 400px;
    height: 257px;
  }
}
.media-renew__wrap__item {
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap__item {
    margin: -15px 0 0 0;
  }
}
.media-renew__wrap__item ul {
  list-style-type: none;
  padding-left: 0;
}
.media-renew__wrap__item ul li {
  margin-bottom: 8px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap__item ul li {
    margin: 12px auto 20px;
    font-size: 16px;
  }
}
.media-renew__wrap__item ul li .sub, .media-renew__wrap__item ul li .sub__blue, .media-renew__wrap__item ul li .sub__black {
  background-color: #006EBB;
  padding: 2px 8px;
  color: #ffffff;
  border-radius: 3px;
  margin-left: 10px;
  font-family: Noto Sans;
  font-size: 13px;
  font-weight: 400;
  line-height: 17.71px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap__item ul li .sub, .media-renew__wrap__item ul li .sub__blue, .media-renew__wrap__item ul li .sub__black {
    margin-left: 15px;
    font-size: 16px;
    font-size: 14px;
    line-height: 19.07px;
  }
}
.media-renew__wrap__item ul li p {
  margin: 0;
}
.media-renew__wrap__item ul li hr {
  border: 1px solid #CCCCCC;
}
.media-renew__wrap__item-first {
  color: #808080;
  font-family: Noto Sans;
  font-size: 13px;
  font-weight: 500;
  line-height: 17.71px;
  text-align: left;
  margin-bottom: 10px !important;
}
@media screen and (min-width: 768px) {
  .media-renew__wrap__item-first {
    color: #006EBB;
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
  }
}
.media-renew__wrap__item-second {
  color: #808080;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
.media-renew__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) {
  .media-renew__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.media-renew__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.media-renew__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.media-renew__btn p img {
  float: right;
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  .media {
    background-color: #e4e4e4;
  }
  .media__wrap {
    background-color: #e4e4e4;
    flex-direction: row;
  }
  .media__wrap__item {
    padding-top: 0;
    font-size: 16px;
    width: 50%;
  }
  .media__wrap__item ul li {
    font-size: 16px;
  }
  .media__wrap__item ul li .sub, .media__wrap__item ul li .sub__blue, .media__wrap__item ul li .sub__black {
    font-size: 16px;
  }
}
.prefectures-wrap-renew {
  background-color: #ffffff;
  padding: 0;
}
.prefectures-wrap-renew__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap-renew__container {
    padding: 60px 5% 10px;
  }
}
@media screen and (min-width: 1000px) {
  .prefectures-wrap-renew__container {
    padding: 60px 0 10px;
  }
}
.prefectures-wrap-renew #prefectures h3 img {
  height: 30px;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap-renew #prefectures h3 img {
    height: 45px;
  }
}
.prefectures-wrap-renew #prefectures dl {
  font-size: 13px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap-renew #prefectures dl {
    font-size: 15px;
    letter-spacing: initial;
    margin-bottom: 30px;
  }
}
.prefectures-wrap-renew #prefectures dl dt {
  line-height: 1.5;
  font-weight: normal;
  color: #267dcb;
}
.prefectures-wrap-renew #prefectures dl dd {
  display: inline;
  margin: 0;
}
.prefectures-wrap-renew #prefectures dl dd:nth-of-type(1) {
  padding-left: 10px;
}
.prefectures-wrap-renew #prefectures dl dd a {
  color: #333333;
}
.prefectures-wrap-renew__title {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .prefectures-wrap-renew__title {
    margin-bottom: 30px;
  }
}
.prefectures-wrap-renew__title h2 {
  margin: 0;
}
.prefectures-wrap-renew__title h2 img {
  width: auto;
  height: auto;
}

.home_promise {
  background-image: url(../images/home/promise/pc/bg.png);
  padding: 0;
}
.home_promise h3 {
  margin: 0;
}
.home_promise__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home_promise__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .home_promise__container {
    padding: 60px 0;
  }
}
.home_promise__title {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home_promise__title {
    text-align: center;
  }
}
.home_promise__title h2 {
  margin: 0;
}
.home_promise__title h2 img {
  width: auto;
  height: auto;
}
.home_promise__title-sp div:last-child {
  margin-top: 8px;
}
.home_promise__group {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .home_promise__group {
    gap: 50px;
  }
}
.home_promise__group div {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  max-width: 415px;
}
.home_promise__group-content {
  position: relative;
  margin: 10px auto;
  border: 4px solid #D9D9D9;
  box-shadow: 6px 6px 0px 0px #009F9A;
  background: #FFFFFF;
  padding: 15px 0 0 15px;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content {
    margin: 30px auto 0;
    padding: 0;
  }
}
.home_promise__group-content h3 {
  margin-bottom: 6px;
  text-align: left;
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 21.79px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content h3 {
    text-align: center;
    margin: 30px 0 0;
    font-size: 30px;
    line-height: 40.86px;
  }
}
.home_promise__group-content ul {
  padding-left: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content ul {
    margin: 15px 0 30px;
  }
}
.home_promise__group-content ul li img {
  width: 6px;
  margin: 0 5px 0 0;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content ul li img {
    width: auto;
    margin: -5px 10px 0 0;
  }
}
.home_promise__group-content ul li a {
  color: #333333;
  font-family: Noto Sans;
  font-size: 12px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 400px) {
  .home_promise__group-content ul li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .home_promise__group-content ul li a {
    font-size: 22px;
    line-height: 29.96px;
  }
}
.home_promise__group-content__img-woman {
  position: absolute;
  top: -80px;
  right: -4px;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content__img-woman {
    top: -119px;
    right: -16px;
  }
}
@media screen and (min-width: 1000px) {
  .home_promise__group-content__img-woman {
    right: -4px;
    top: -132px;
  }
}
.home_promise__group-content__img-woman img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content__img-woman img {
    width: 90%;
  }
}
@media screen and (min-width: 1000px) {
  .home_promise__group-content__img-woman img {
    width: 100%;
  }
}
.home_promise__group-content__img-paper {
  position: absolute;
  top: 75%;
  left: -15%;
  display: none !important;
}
@media screen and (min-width: 768px) {
  .home_promise__group-content__img-paper {
    display: block;
  }
}
.home_promise__note {
  color: #FFFFFF;
  margin: 15px auto 10px;
}
@media screen and (min-width: 768px) {
  .home_promise__note {
    margin: 30px auto;
  }
}
.home_promise__note p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 12px;
  line-height: 16.34px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home_promise__note p {
    font-size: 13px;
    line-height: 17.71px;
  }
}
.home_promise__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_promise__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.home_promise__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.home_promise__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.home_promise__btn p img {
  float: right;
  margin-right: 20px;
}
.home_promise .icon-book {
  position: absolute;
  left: -40px;
  bottom: -50px;
  display: none;
}
@media screen and (min-width: 768px) {
  .home_promise .icon-book {
    display: block;
  }
}

.home-proof_security {
  padding: 0;
}
.home-proof_security__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home-proof_security__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .home-proof_security__container {
    padding: 60px 0;
  }
}
.home-proof_security__title {
  text-align: center;
}
.home-proof_security__title h2 {
  margin: 0;
}
.home-proof_security__title h2 img {
  width: auto;
  height: auto;
}
.home-proof_security__content {
  text-align: center;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .home-proof_security__content {
    padding-top: 30px;
  }
}
.home-proof_security__content img {
  max-width: 500px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-proof_security__content img {
    max-width: 100%;
  }
}

.purchase-guarantee {
  background-color: #ffffff;
  padding-top: 50px;
}
.purchase-guarantee .title-wrap {
  position: relative;
}
.purchase-guarantee .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .purchase-guarantee .title-wrap .sub-tt {
    height: 33px;
  }
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .sp-sub-tt {
    float: right;
    height: 23px;
  }
}
.purchase-guarantee .title-wrap .main-tt {
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .purchase-guarantee .title-wrap .main-tt {
    height: 80px;
  }
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .sp-main-tt {
    height: 50px;
    padding-left: 140px;
  }
}
@media screen and (max-width: 375px) {
  .purchase-guarantee .title-wrap .sp-main-tt {
    padding-left: 110px;
  }
}
.purchase-guarantee .title-wrap .main-tt_abtest {
  height: 140px;
  padding-right: 30px;
}
@media screen and (max-width: 930px) {
  .purchase-guarantee .title-wrap .main-tt_abtest {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .purchase-guarantee .title-wrap .main-tt_abtest {
    padding-left: 200px;
  }
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .main-tt_abtest {
    height: 100px;
    padding-left: 140px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 375px) {
  .purchase-guarantee .title-wrap .main-tt_abtest {
    padding-left: 110px;
  }
}
.purchase-guarantee .title-wrap .sp_su_tt_abtest {
  display: none;
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .sp_su_tt_abtest {
    display: block;
    position: absolute;
    bottom: 50px;
  }
}
.purchase-guarantee .title-wrap .main-tt-norikasan {
  position: absolute;
  width: 230px;
  left: 5%;
  bottom: -25px;
}
@media screen and (max-width: 835px) {
  .purchase-guarantee .title-wrap .main-tt-norikasan {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .purchase-guarantee .title-wrap .main-tt-norikasan {
    left: -40px;
    bottom: -15px;
  }
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .main-tt-norikasan {
    bottom: -45px;
    width: 190px;
  }
}
@media screen and (max-width: 400px) {
  .purchase-guarantee .title-wrap .main-tt-norikasan {
    left: -50px;
    width: 185px;
  }
}
@media screen and (max-width: 375px) {
  .purchase-guarantee .title-wrap .main-tt-norikasan {
    width: 170px;
  }
}
.purchase-guarantee .title-wrap .reset-css-padding {
  padding: 0;
}
@media screen and (max-width: 450px) {
  .purchase-guarantee .title-wrap .sp-h2-title {
    position: relative;
    margin-bottom: 50px;
  }
}
.purchase-guarantee__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
}
.purchase-guarantee__list .item {
  flex-basis: 48%;
}
.purchase-guarantee__list .item:not(:nth-last-child(-n+2)) {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .purchase-guarantee__list .item {
    flex-basis: 32%;
  }
  .purchase-guarantee__list .item:not(:nth-last-child(-n+3)) {
    padding-bottom: 30px;
  }
}
.purchase-guarantee__list .item .img img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 3px;
}
.purchase-guarantee__list .item .title {
  padding-top: 5px;
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .purchase-guarantee__list .item .title {
    font-size: 16px;
  }
}
.purchase-guarantee__list .item .text {
  line-height: 20px;
}
@media screen and (min-width: 768px) {
  .purchase-guarantee__list .item .text {
    padding-right: 30%;
  }
}

.purchase-car {
  padding: 0;
}
.purchase-car__container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5% 0;
}
@media screen and (min-width: 768px) {
  .purchase-car__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .purchase-car__container {
    padding: 60px 0;
  }
}
.purchase-car {
  background-image: url("../images/home/purchase-car/bg.svg");
  height: auto;
}
.purchase-car__title-pc {
  padding-bottom: 70px;
}
.purchase-car__title-pc h2 {
  margin: 0;
}
.purchase-car__title-pc h2 img {
  width: 100%;
  height: auto;
}
.purchase-car__group {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .purchase-car__group {
    gap: 45px;
  }
  .purchase-car__group:first-child {
    margin-bottom: 30px;
  }
}
.purchase-car__group div {
  flex: 1;
}
.purchase-car__group img {
  width: 100%;
}
.purchase-car__group-child {
  text-align: center;
}
.purchase-car__group-child p {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 600;
  line-height: 19.07px;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 6px 0 0;
}
@media screen and (min-width: 768px) {
  .purchase-car__group-child p {
    font-size: 30px;
    line-height: 40.86px;
    margin-top: 10px 0 0;
  }
}
.purchase-car__title-sp h2 {
  margin: 0;
}
.purchase-car__title-sp h2 img {
  width: 100%;
  height: auto;
}
.purchase-car .purchase-car__content img {
  width: 100%;
}

.home-reason {
  padding: 0;
  background-color: #ffffff;
}
.home-reason h3 {
  margin: 0;
}
.home-reason__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home-reason__container {
    padding: 10px 5% 10px;
  }
}
@media screen and (min-width: 1200px) {
  .home-reason__container {
    padding: 10px 0 10px;
  }
}
.home-reason__title {
  text-align: center;
}
.home-reason__title h2 img {
  width: auto;
  height: auto;
}
.home-reason__content-first-sp {
  text-align: center;
  margin: 15px auto 38px;
}
.home-reason__content-first {
  display: none;
}
@media screen and (min-width: 768px) {
  .home-reason__content-first {
    display: block;
    margin: 35px 0 48px;
  }
}
.home-reason__content-first {
  position: relative;
  background-color: #fff0f0;
}
.home-reason__content-first__img {
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  text-align: center;
}
.home-reason__content-first__text {
  text-align: center;
  border: 2px solid #ff4d4d;
  color: #ff4d4d;
  padding: 39px 0 25px;
}
.home-reason__content-first__text p {
  font-family: Noto Sans;
  font-size: 26.75px;
  font-weight: 700;
  line-height: 36.43px;
  text-align: center;
}
.home-reason__content-first__text p span {
  letter-spacing: -0.07em;
}
.home-reason__content-group {
  display: block;
  text-align: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .home-reason__content-group {
    display: flex;
  }
}
.home-reason__content-group div {
  flex: 1;
}
.home-reason__content-group__box {
  position: relative;
  border: 2px solid #d9d9d9;
}
.home-reason__content-group__box:not(:first-child) {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .home-reason__content-group__box:not(:first-child) {
    margin-top: 0;
  }
}
.home-reason__content-group__img-title {
  position: absolute;
  top: -20px;
  text-align: center;
  left: 0;
  right: 0;
}
.home-reason__content-group__content {
  margin: 33px 20px 30px;
}
.home-reason__content-group__content img {
  margin: 20px 0;
}
.home-reason__content-group__content p {
  margin: 0;
}
.home-reason__content-group__content p:first-child {
  color: #006ebb;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 700;
  line-height: 27.24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-reason__content-group__content p:first-child {
    font-size: 18px;
    line-height: 24.52px;
  }
}
.home-reason__content-group__content p:not(:first-child) {
  text-align: left;
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home-reason__content-group__content p:not(:first-child) {
    font-size: 16px;
    line-height: 23px;
  }
}
.home-reason__content-more {
  display: block;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-reason__content-more {
    display: flex;
    gap: 53px;
    align-items: center;
  }
}
.home-reason__content-more div {
  flex: 2 1 auto;
}
.home-reason__content-more__text1 {
  color: #333333;
  font-family: Noto Sans;
  font-size: 13px;
  font-weight: 400;
  line-height: 17.71px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home-reason__content-more__text1 {
    font-family: Noto Sans;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.52px;
    text-align: left;
  }
}
.home-reason__content-more__text1 img {
  margin: 10px auto;
  display: flex;
}
@media screen and (min-width: 768px) {
  .home-reason__content-more__text1 img {
    margin: 0;
  }
}
.home-reason__content-more__text2 img {
  width: 100%;
}

.home-customer_voice {
  padding: 0;
}
.home-customer_voice .review-slide {
  background: #ffffff;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide {
    padding: 0 5% 60px;
  }
}
.home-customer_voice .review-slide__container {
  position: relative;
  background-color: #c2def2;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .home-customer_voice .review-slide__container {
    padding: 60px 0;
  }
}
.home-customer_voice .review-slide__title {
  text-align: center;
  padding: 0 0 12px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__title {
    padding: 0 0 30px;
  }
}
.home-customer_voice .review-slide__title h2 {
  margin: 0;
}
.home-customer_voice .review-slide__title h2 img {
  width: auto;
  height: auto;
}
.home-customer_voice .review-slide .splide {
  visibility: visible;
}
.home-customer_voice .review-slide__group {
  display: flex;
  justify-content: center;
  height: auto;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group {
    height: 355px;
    margin: 0 auto;
  }
}
.home-customer_voice .review-slide__group__track {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__list {
    padding: 15px 0;
  }
}
.home-customer_voice .review-slide__group__box {
  height: fit-content;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  padding: 15px 15px 0 15px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box {
    gap: 0 30px;
    flex-wrap: nowrap;
    padding: 50px 0 39px 50px;
  }
}
.home-customer_voice .review-slide__group__box__image {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__image {
    width: 200px;
  }
}
.home-customer_voice .review-slide__group__box__image img {
  height: auto;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__image img {
    width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .home-customer_voice .review-slide__group__box__image img {
    width: 297px;
  }
}
.home-customer_voice .review-slide__group__box__content {
  padding-top: 0;
}
.home-customer_voice .review-slide__group__box__content__first {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.home-customer_voice .review-slide__group__box__content__first p {
  margin: 0;
}
.home-customer_voice .review-slide__group__box__content__first p:first-child {
  margin-top: -1px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__first p:first-child {
    font-size: 18px;
  }
}
.home-customer_voice .review-slide__group__box__content__first h3 {
  margin: 0;
  text-align: unset;
}
.home-customer_voice .review-slide__group__box__content__first .voice_prefecture {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__first .voice_prefecture {
    width: auto;
  }
}
.home-customer_voice .review-slide__group__box__content__second {
  display: flex;
  gap: 5px;
  margin: 5px 0 11px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second {
    margin: 10px 0 30px;
  }
}
.home-customer_voice .review-slide__group__box__content__second__icon-stars {
  color: #f2be41;
}
.home-customer_voice .review-slide__group__box__content__second p {
  margin: 0;
  padding: 0px;
}
.home-customer_voice .review-slide__group__box__content__second p:nth-child(odd) {
  margin-top: -1px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second p:nth-child(odd) {
    font-size: 18px;
  }
}
.home-customer_voice .review-slide__group__box__content__second p:nth-child(even) {
  margin-top: -1px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second p:nth-child(even) {
    font-size: 18px;
  }
}
.home-customer_voice .review-slide__group__box__content__second-stars {
  display: flex;
  gap: 5px;
  margin-left: 5px;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second-stars {
    margin-left: 50px;
    margin-bottom: 20px;
    align-items: unset;
  }
}
.home-customer_voice .review-slide__group__box__content__second-stars__icon {
  color: #f2be41;
}
.home-customer_voice .review-slide__group__box__content__second-stars p {
  margin: 0;
  padding: 0px;
}
.home-customer_voice .review-slide__group__box__content__second-stars p:nth-child(odd) {
  margin-top: -1px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second-stars p:nth-child(odd) {
    font-size: 18px;
  }
}
.home-customer_voice .review-slide__group__box__content__second-stars p:nth-child(even) {
  margin-top: -1px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__content__second-stars p:nth-child(even) {
    font-size: 18px;
  }
}
.home-customer_voice .review-slide__group__box__content__second-stars p:nth-child(even) {
  display: flex;
  align-items: center;
}
.home-customer_voice .review-slide__group__box__description-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__description-pc {
    display: block;
  }
}
.home-customer_voice .review-slide__group__box__description-pc p {
  font-family: Noto Sans;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  font-size: 14px;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__description-pc p {
    font-size: 1.7vw !important;
    margin: 0;
  }
}
@media screen and (min-width: 1000px) {
  .home-customer_voice .review-slide__group__box__description-pc p {
    font-size: 18px !important;
  }
}
.home-customer_voice .review-slide__group__box__description-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__description-sp {
    display: none;
  }
}
.home-customer_voice .review-slide__group__box__description-sp p {
  font-family: Noto Sans;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  font-size: 14px;
  margin: 0;
  padding-right: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__box__description-sp p {
    padding: 0;
    font-size: 18px !important;
    margin: 0;
  }
}
.home-customer_voice .review-slide__group .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
  background: #006ebb;
}
.home-customer_voice .review-slide__group__pagination {
  text-align: center;
  display: none;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group__pagination {
    position: absolute;
    top: 78.5% !important;
    display: block !important;
  }
}
.home-customer_voice .review-slide__group .splide__arrow--prev {
  background-color: #858585;
  left: -0.3em;
  top: 125px;
}
.home-customer_voice .review-slide__group .splide__arrow--next {
  background-color: #858585;
  right: -0.3em;
  top: 125px;
}
.home-customer_voice .review-slide__group .splide__arrow {
  height: 27px;
  width: 27px;
  top: 40.5%;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group .splide__arrow {
    top: 41%;
    height: 60px;
    width: 60px;
  }
}
.home-customer_voice .review-slide__group .splide__arrow svg {
  fill: #ffffff !important;
  height: 8px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__group .splide__arrow svg {
    height: 18.96px;
    width: 18.96px;
  }
}

.solution {
  padding: 0;
  background-color: #ffffff;
}
.solution__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5% 0;
}
@media screen and (min-width: 768px) {
  .solution__container {
    padding: 150px 5% 0;
  }
}
@media screen and (min-width: 1000px) {
  .solution__container {
    padding: 150px 0 0;
  }
}
.solution__title {
  text-align: center;
  margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
  .solution__title {
    margin-bottom: 30px;
  }
}
.solution__title img {
  width: auto;
  height: auto;
}
.solution__group {
  display: block;
}
@media screen and (min-width: 768px) {
  .solution__group {
    display: flex;
    gap: 30px;
    align-items: baseline;
  }
}
.solution__group div {
  flex: 1;
}
.solution__content {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .solution__content {
    display: block;
  }
}
.solution__content p {
  color: #333333;
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: left;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .solution__content p {
    font-size: 24px;
    line-height: 32.69px;
    margin-top: 20px;
  }
}
.solution__content p span {
  color: #FF4D4D;
  font-weight: 700;
  line-height: 21.79px;
}
@media screen and (min-width: 768px) {
  .solution__content p span {
    line-height: 32.69px;
    text-align: left;
  }
}
.solution__content div:first-child() {
  flex: 1;
}
.solution__content div:not(:first-child) {
  flex: 2;
}
.solution__content:nth-child(2) {
  margin: 15px auto;
}

.p-staff-renew__card__slider-wrap {
  height: 230px;
  padding: 15px 15px 0px;
  margin-bottom: 30px;
}
.p-staff-renew__card__slider-wrap .staff-slider {
  height: 220px;
}

.renew_staff_splide {
  font-family: Noto Sans;
  background-color: #fff;
  padding: 30px 0 0;
}
.renew_staff_splide .renew-container {
  max-width: 100%;
  margin: 0 15px;
}
.renew_staff_splide .p-staff-renew {
  padding-bottom: 30px;
}
.renew_staff_splide .p-staff-renew * {
  min-height: 0;
}
.renew_staff_splide .p-staff-renew__head-txt {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
  padding: 10px 0 12px;
  margin: 0;
}
.renew_staff_splide .p-staff-renew__card {
  height: 415px;
  background-color: #dae8f2;
  border: 1px solid #dae8f2;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide {
  height: 220px;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide img {
  width: 80px;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__name {
  text-align: center;
  display: block;
  width: 80px;
  padding-top: 8px;
  font-size: 12px;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 95px);
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__title {
  color: #006EBB;
  font-size: 13px;
  line-height: 1.2;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__msg {
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  height: 90px;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__open.c-button__blue2 {
  max-width: 208px;
  min-width: 208px;
  height: 40px;
  display: block;
  padding: 8px 0;
  margin: 24px auto;
  text-align: center;
  background-color: #00366E;
  color: #ffffff;
  text-decoration: none;
  border-radius: 80px;
  font-size: 14px;
}
.renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .c-button__blue2::after {
  margin-right: 15px !important;
}
.renew_staff_splide .wrap-staff-thumb .splide__slide.top {
  border: 3px solid rgba(0, 0, 0, 0) !important;
  height: 140px !important;
}
.renew_staff_splide .wrap-staff-thumb .splide__list__name {
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
  text-align: center;
  font-size: 12px;
  background: #dae8f2;
  z-index: 2;
  margin-top: 5px;
}
.renew_staff_splide .splide__arrow {
  top: 61px;
  background-color: #333333;
}
.renew_staff_splide .splide__arrow svg {
  fill: #fff;
  font-size: 10px;
}
.renew_staff_splide .splide__arrow--prev {
  left: -10px;
}
.renew_staff_splide .splide__arrow--next {
  right: -10px;
}
.renew_staff_splide .splide__pagination {
  bottom: -12px !important;
}
.renew_staff_splide .splide__pagination__page {
  margin: 10px;
  height: 6px;
  width: 6px;
}

.renew_staff_splide__title {
  text-align: center;
  margin: 0;
}

.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}

.c-modal_content._sm {
  width: 30%;
}

.c-modal_content._md {
  width: 50%;
}

.c-modal_content._lg {
  width: 80%;
  max-width: 797px;
}

.c-modal_content_inner {
  position: relative;
  padding: 24px;
  display: flex;
  max-height: calc(100vh - 275px);
  overflow-y: scroll;
  justify-content: space-between;
  flex-direction: column;
  max-width: 800px;
}
.c-modal_content_inner .p-staff-renew__card__imgwrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.c-modal_content_inner .p-staff-renew__card__img {
  width: 130px;
  display: block;
  margin: 0 auto;
}
.c-modal_content_inner .p-staff-renew__card__name {
  text-align: center;
}
.c-modal_content_inner .p-staff-renew__card__slider-wrap__comment {
  top: 0;
  right: 0;
  width: 100%;
}
.c-modal_content_inner .p-staff-renew__card__slider-wrap__comment .comment__title {
  color: #006EBB;
  font-size: 13px;
  line-height: 1.2;
}
.c-modal_content_inner .p-staff-renew__card__slider-wrap__comment .comment__msg {
  font-size: 13px;
  line-height: 1.4;
}
.c-modal_content_inner .p-staff-renew__card__slider-wrap__comment .comment__open.c-button__blue2 {
  max-width: 90%;
  min-width: 90%;
}

.c-modal_close {
  position: absolute;
  top: 13px;
  right: 10px;
}

@media screen and (min-width: 768px) {
  .p-staff-renew__card__slider-wrap .staff-slider {
    padding: 0.8rem;
    height: 100%;
    padding: 20px;
  }
  .p-staff-renew__card__slider-wrap {
    width: 50%;
    height: 100%;
  }
  .renew_staff_splide {
    padding: 60px 0 0;
  }
  .renew_staff_splide .p-staff-renew__head-txt {
    font-size: 18px;
    line-height: 28px;
    padding: 15px 0 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide {
    padding: 0.8rem;
    height: 100%;
    padding: 20px;
    height: 285px !important;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide img {
    width: 98px;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__name {
    font-size: 14px;
    width: 98px;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment {
    padding: 15px 15px 0;
    width: calc(100% - 115px);
    padding: 20px;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__title {
    font-size: 18px;
    line-height: 1.4;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__msg {
    font-size: 13px;
    height: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
  .renew_staff_splide .p-staff-renew__card__slider-wrap .splide__slide__text__comment .comment__open.c-button__blue2 {
    max-width: 238px;
    min-width: 238px;
    height: 44px;
    display: block;
    padding: 10px 0;
    margin: 24px auto;
    text-align: center;
    background-color: #00366E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 80px;
    font-size: 16px;
  }
  .renew_staff_splide .wrap-staff-thumb .splide__slide.top {
    height: 150px !important;
  }
  .renew_staff_splide .wrap-staff-thumb .splide__list__name {
    font-size: 19px;
    margin-top: 8px;
    top: 106px;
    bottom: -3px;
    height: auto;
  }
  .renew_staff_splide .wrap-staff-thumb {
    width: 48%;
    position: absolute;
    display: flex;
    align-items: center;
    top: 30%;
    width: 48%;
    right: 20PX;
  }
  .renew_staff_splide .p-staff-renew__card {
    height: 320px;
    position: relative;
  }
  .renew_staff_splide .splide__arrow {
    width: 35px;
    height: 35px;
  }
  .renew_staff_splide__title {
    line-height: 82px;
    font-size: 55px;
    letter-spacing: 0em;
  }
  .renew_staff_splide__title h2 {
    margin: 0;
  }
  .renew_staff_splide__title h2 img {
    width: auto;
    height: auto;
  }
  .c-modal_content_inner {
    flex-direction: row;
  }
  .c-modal_content_inner .p-staff-renew__card__slider-wrap__comment {
    margin-left: 10px;
    width: calc(100% - 115px);
  }
  .c-modal_content_inner .p-staff-renew__card__slider-wrap__comment .comment__title {
    font-size: 18px;
    line-height: 1.4;
  }
  .c-modal_content_inner .p-staff-renew__card__slider-wrap__comment .comment__msg {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .renew_staff_splide .renew-container {
    margin: 0 auto;
    max-width: 1040px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .renew_staff_splide .p-staff-renew__head-txt {
    font-size: 18px;
    line-height: 28px;
  }
}
.renew_staff_splide--tokyo-area {
  margin-top: 20px;
}

.renew_staff_splide__title__inner {
  position: relative;
  min-height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renew_staff_splide__title__deco {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: 0;
  transform: translateY(-50%);
}

.renew_staff_splide__title__deco__icon {
  display: block;
  flex-shrink: 0;
  height: auto;
}

.renew_staff_splide__title__deco__icon--left {
  margin: 0 8px 0 0;
}

.renew_staff_splide__title__deco__icon--right {
  margin: 0 0 0 8px;
}

.renew_staff_splide__title__text {
  z-index: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #006EBB;
}

@media screen and (min-width: 768px) {
  .renew_staff_splide--tokyo-area {
    margin-top: 32px;
  }
  .renew_staff_splide__title__inner {
    min-height: 82px;
  }
  .renew_staff_splide__title__text {
    font-size: 24px;
    line-height: 1.6;
  }
}
.home_step {
  padding: 0;
  background-color: #ffffff;
}
.home_step h3 {
  margin: 0;
}
.home_step__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home_step__container {
    padding: 60px 5% 0;
  }
}
@media screen and (min-width: 1200px) {
  .home_step__container {
    padding: 60px 0 0;
  }
}
.home_step__title {
  text-align: center;
}
.home_step__title h2 img {
  width: auto;
  height: auto;
}
.home_step__group__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .home_step__group__box {
    margin: 30px auto;
  }
}
.home_step__group__box__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home_step__group__box__icon img {
  position: relative;
  z-index: 1;
}
.home_step__group__box__icon hr {
  position: absolute;
  transform: rotate(0deg);
  border: 5px solid #E6F2FF;
  z-index: 0;
  height: 110%;
  top: 10px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .home_step__group__box__icon hr {
    height: 100%;
    top: 39px;
    left: 3%;
  }
}
@media screen and (min-width: 1000px) {
  .home_step__group__box__icon hr {
    height: 145px;
    top: 45px;
    left: 23px;
  }
}
.home_step__group__box__text {
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 65%;
}
@media screen and (min-width: 768px) {
  .home_step__group__box__text {
    margin-left: 30px;
    padding-right: 105px;
  }
}
@media screen and (min-width: 1000px) {
  .home_step__group__box__text {
    flex-grow: 1;
  }
}
.home_step__group__box__text p:first-child {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .home_step__group__box__text p:first-child {
    margin-bottom: 10px;
  }
}
.home_step__group__box__text p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .home_step__group__box__text p:not(:first-child) {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.home_step__group__box__img {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_step__group__box__img img {
  max-width: 100%;
  height: auto;
}
.home_step__content img {
  width: 100%;
}
.home_step__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_step__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.home_step__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.home_step__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.home_step__btn p img {
  float: right;
  margin-right: 20px;
}

.strength {
  background: white;
  padding: 0;
}
.strength h3 {
  margin: 0;
}
.strength__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .strength__container {
    padding: 10px 5% 60px;
  }
}
@media screen and (min-width: 1000px) {
  .strength__container {
    padding: 10px 0 60px;
  }
}
.strength__title {
  text-align: center;
  margin-bottom: 41px;
}
@media screen and (min-width: 768px) {
  .strength__title {
    margin-bottom: 59px;
  }
}
.strength__title img {
  height: auto;
  width: auto;
}
.strength__first-group {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(140.3deg, #b4843d 0.79%, #ebdb6a 50.39%, #b4843d 100%); /* Gradient background */
  width: 100%;
}
.strength__first-group__title {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
}
.strength__first-group__content {
  background-color: #fffcf2;
  padding: 60px 30px 20px;
}
.strength__first-group__content p:first-child {
  color: #006ebb;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strength__first-group__content p:first-child {
    font-size: 30px;
  }
}
.strength__first-group__content p:not(:first-child) {
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .strength__first-group__content p:not(:first-child) {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.86px;
    text-align: center;
  }
}
.strength__first-group__icon-box {
  background-color: #fffcf2;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px 10px;
}
.strength__first-group__icon-box div {
  box-sizing: border-box;
  text-align: center;
  flex: 1 1 50%;
  position: relative;
}
.strength__first-group__icon-box div:not(:nth-child(2n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #cccccc;
}
.strength__first-group__icon-box div:not(:nth-last-child(-n+2)):before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.strength__first-group__icon-box div:first-child, .strength__first-group__icon-box div:nth-child(2) {
  padding-bottom: 10px;
}
.strength__first-group__icon-box div:nth-child(3), .strength__first-group__icon-box div:last-child {
  padding-top: 20px;
}
.strength__first-group__icon-box div:nth-child(2) img {
  height: 44px;
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box div:nth-child(2) img {
    height: 70px;
  }
}
.strength__first-group__icon-box div:nth-child(2) p {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box div:nth-child(2) p {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box div {
    flex: 1 1 calc(25% - 16px);
  }
  .strength__first-group__icon-box div:nth-child(2) {
    border-left: 2px solid #cccccc;
    border-right: 2px solid #cccccc;
  }
  .strength__first-group__icon-box div:nth-child(3) {
    border-right: 2px solid #cccccc;
  }
  .strength__first-group__icon-box div:not(:nth-child(2n)):after, .strength__first-group__icon-box div:not(:nth-last-child(-n+2)):before {
    display: none;
  }
  .strength__first-group__icon-box div:first-child, .strength__first-group__icon-box div:nth-child(2) {
    padding-bottom: 0;
  }
  .strength__first-group__icon-box div:nth-child(3), .strength__first-group__icon-box div:last-child {
    padding-top: 0;
  }
}
.strength__first-group__icon-box div P {
  color: #006ebb;
  font-family: Noto Sans;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box div P {
    font-size: 20px;
    line-height: 23px;
  }
}
.strength__first-group__icon-box div P span {
  font-family: Noto Sans;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box div P span {
    font-size: 14px;
    line-height: 18px;
  }
}
.strength__first-group__icon-box__text-first {
  margin-top: 10px;
}
.strength__first-group__icon-box__text-second {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .strength__first-group__icon-box__text-second {
    font-size: 14px;
    line-height: 18px;
  }
}
.strength__first-group__icon-box__text-third {
  margin-top: 16px;
}
.strength__first-group__icon-box__text-fourth {
  margin-top: 13px;
}
.strength__first-group__note {
  background-color: #fffcf2;
  color: #333333;
  font-family: Inter;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .strength__first-group__note {
    font-size: 13px;
  }
}
.strength__first-group__note P {
  margin: 0;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .strength__first-group__note P {
    padding: 40px 74px 20px 0;
    text-align: right;
  }
}
.strength__second-group {
  display: block;
  gap: 30px;
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .strength__second-group {
    display: flex;
  }
}
.strength__second-group__title {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.strength__second-group__content p {
  margin: 0;
}
.strength__second-group__content p:first-child {
  color: #006ebb;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  padding: 31px 0 15px;
}
@media screen and (min-width: 768px) {
  .strength__second-group__content p:first-child {
    padding: 54px 0 20px;
    font-size: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .strength__second-group__content p:first-child {
    font-size: 30px;
  }
}
.strength__second-group__content p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 21px 23px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .strength__second-group__content p:not(:first-child) {
    padding: 0 30px 20px;
    font-size: 16px;
    line-height: 22.86px;
  }
}
@media screen and (min-width: 768px) {
  .strength__second-group__content p:not(:first-child) {
    padding: 0 30px 20px;
  }
}
@media screen and (min-width: 1000px) {
  .strength__second-group__content p:not(:first-child) {
    padding: 0 50px 20px;
  }
}
@media screen and (min-width: 768px) {
  .strength__second-group__content__text2 {
    letter-spacing: 1.24px !important;
  }
}
@media screen and (min-width: 1000px) {
  .strength__second-group__content__text2 {
    letter-spacing: normal;
  }
}
.strength__second-group-container {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(140.3deg, #b4843d 0.79%, #ebdb6a 50.39%, #b4843d 100%); /* Gradient background */
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .strength__second-group-container {
    height: 100%;
  }
}
.strength__second-group-container:first-child {
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .strength__second-group-container:first-child {
    margin-bottom: 0;
  }
}
.strength__second-group-container__box {
  background-color: #fffcf2;
}
.strength__third-group {
  display: block;
  gap: 30px;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .strength__third-group {
    display: flex;
  }
}
.strength__third-group__title {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.strength__third-group__content p span {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .strength__third-group__content p span {
    font-size: 18px;
  }
}
.strength__third-group__content p {
  margin: 0;
}
.strength__third-group__content p:first-child {
  color: #006ebb;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  padding: 31px 0 15px;
}
@media screen and (min-width: 768px) {
  .strength__third-group__content p:first-child {
    padding: 54px 0 20px;
    font-size: 3vw;
  }
}
@media screen and (min-width: 1200px) {
  .strength__third-group__content p:first-child {
    font-size: 30px;
  }
}
.strength__third-group__content p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 21px 23px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .strength__third-group__content p:not(:first-child) {
    padding: 0 30px 20px;
    font-size: 16px;
    line-height: 22.86px;
  }
}
@media screen and (min-width: 1000px) {
  .strength__third-group__content p:not(:first-child) {
    padding: 0 50px 20px;
  }
}
.strength__third-group__content__note {
  margin: 0;
  font-family: Inter;
  font-size: 11px !important;
  font-weight: 400;
  line-height: 16px !important;
  text-align: left;
  padding: 0 21px 23px !important;
}
@media screen and (min-width: 768px) {
  .strength__third-group__content__note {
    padding: 5px 30px 20px !important;
    font-size: 12px !important;
    line-height: 18px !important;
  }
}
@media screen and (min-width: 1200px) {
  .strength__third-group__content__note {
    padding: 5px 40px 20px 45px !important;
    font-size: 13px !important;
  }
}
@media screen and (min-width: 768px) {
  .strength__third-group__content-text {
    padding: 0 30px 103px !important;
    letter-spacing: 1.8px;
  }
}
@media screen and (min-width: 1000px) {
  .strength__third-group__content-text {
    padding: 0 50px 85px !important;
  }
}
@media screen and (min-width: 768px) {
  .strength__third-group .island-notification {
    margin-top: -80px;
  }
}
.strength__third-group-container {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(140.3deg, #b4843d 0.79%, #ebdb6a 50.39%, #b4843d 100%); /* Gradient background */
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .strength__third-group-container {
    height: 230px;
  }
}
.strength__third-group-container:first-child {
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .strength__third-group-container:first-child {
    margin-bottom: 0;
  }
}
.strength__third-group-container__box {
  background-color: #fffcf2;
  height: 100%;
}
.strength__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) {
  .strength__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.strength__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.strength__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.strength__btn p img {
  float: right;
  margin-right: 20px;
}

.trader-compare-table-renew {
  padding: 0;
}
.trader-compare-table-renew__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .trader-compare-table-renew__container {
    padding: 60px 0;
  }
}
.trader-compare-table-renew__container .title-wrap {
  text-align: center;
}
.trader-compare-table-renew__container .title-wrap h2 {
  margin: 0;
}
.trader-compare-table-renew__container .title-wrap h2 img {
  width: 100%;
  height: auto;
}
.trader-compare-table-renew__container .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container .title-wrap .sub-tt {
    height: 30px;
  }
}
.trader-compare-table-renew__container .title-wrap h2 img {
  width: auto;
  height: auto;
}
.trader-compare-table-renew__container__table {
  display: block;
  position: relative;
  padding: 20px 0 15px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container__table {
    padding: 30px 0 40px;
  }
}
.trader-compare-table-renew__container__table .table {
  text-align: center;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
.trader-compare-table-renew__container__table .table img {
  display: inline-block;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container__table .table img {
    max-width: 100%;
  }
}
.trader-compare-table-renew__container__table__hand-swipe {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 30%;
}
.trader-compare-table-renew__container__group {
  text-align: center;
}
.trader-compare-table-renew__container__group__content-second {
  margin: 6px auto 8px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container__group__content-second {
    margin: 30px auto 15px;
  }
}
.trader-compare-table-renew__container__group__content-third {
  color: #ff4d4d;
}
.trader-compare-table-renew__container__group__content-third p {
  margin: 0;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 600;
  line-height: 24.52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .trader-compare-table-renew__container__group__content-third p {
    font-size: 40px;
    font-weight: 700;
    line-height: 54.48px;
  }
}

.trader-compare-table .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .trader-compare-table .title-wrap .sub-tt {
    height: 30px;
  }
}
.trader-compare-table .title-wrap .main-tt {
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table .title-wrap .main-tt {
    height: 80px;
  }
}
.trader-compare-table__container__chk-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.trader-compare-table__container__chk-list .recommend, .trader-compare-table__container__chk-list .no-recommend {
  flex-basis: 49%;
  background-color: #ffffff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .recommend, .trader-compare-table__container__chk-list .no-recommend {
    padding: 20px;
  }
}
.trader-compare-table__container__chk-list .recommend .title, .trader-compare-table__container__chk-list .no-recommend .title {
  max-width: 270px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .recommend .title, .trader-compare-table__container__chk-list .no-recommend .title {
    max-width: 350px;
  }
}
.trader-compare-table__container__chk-list .recommend .title img, .trader-compare-table__container__chk-list .no-recommend .title img {
  width: 100%;
  height: 100%;
}
.trader-compare-table__container__chk-list .recommend ul, .trader-compare-table__container__chk-list .no-recommend ul {
  margin-top: 15px;
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .recommend ul, .trader-compare-table__container__chk-list .no-recommend ul {
    margin-top: 20px;
  }
}
.trader-compare-table__container__chk-list .recommend ul li, .trader-compare-table__container__chk-list .no-recommend ul li {
  padding: 10px 0px;
  position: relative;
  border-top: 2px dotted;
  margin: 0px;
  padding-left: 25px;
}
.trader-compare-table__container__chk-list .recommend ul li::before, .trader-compare-table__container__chk-list .no-recommend ul li::before {
  content: "";
  position: absolute;
  background-image: url("../images/top/trader_compare/recommend_chk.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .recommend ul li::before, .trader-compare-table__container__chk-list .no-recommend ul li::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .recommend ul li, .trader-compare-table__container__chk-list .no-recommend ul li {
    padding-left: 35px;
  }
}
.trader-compare-table__container__chk-list .no-recommend {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__chk-list .no-recommend {
    margin-top: 0px;
  }
}
.trader-compare-table__container__chk-list .no-recommend ul li::before {
  background-image: url("../images/top/trader_compare/no_recommend_chk.svg");
}
.trader-compare-table__container__chk-list .no-recommend ul li:last-child() {
  border-bottom: 2px dotted;
}
.trader-compare-table__container__chk-list .no-recommend .txt {
  padding-top: 10px;
}
.trader-compare-table__container__table {
  display: block;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__table {
    padding-top: 30px;
  }
}
.trader-compare-table__container__table .swipe {
  max-width: 200px;
  margin: auto;
  display: block;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__table .swipe {
    display: none;
  }
}
.trader-compare-table__container__table .swipe img {
  width: 100%;
  height: 100%;
}
.trader-compare-table__container__table .table {
  max-width: 100%;
  overflow-x: auto;
}
.trader-compare-table__container__table .table img {
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__table .table img {
    max-width: 100%;
  }
}
.trader-compare-table__container__caution {
  background-color: #ffffff;
  border: 2px solid #fb5154;
  margin-top: 20px;
  padding: 10px;
  color: #fe0000;
}
@media screen and (min-width: 768px) {
  .trader-compare-table__container__caution {
    margin-top: 30px;
    padding: 15px;
  }
}

.home-worry {
  padding: 0;
  background-color: #C2DEF2;
}
.home-worry__container {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .home-worry__container {
    padding: 60px 5%;
  }
}
@media screen and (min-width: 1000px) {
  .home-worry__container {
    padding: 60px 0;
  }
}
.home-worry__title-pc {
  text-align: center;
  margin-bottom: 30px;
}
.home-worry__title-pc img {
  width: auto;
  height: auto;
}
.home-worry__title-sp {
  text-align: center;
  margin-bottom: 20px;
}
.home-worry__title-sp img {
  width: auto;
  height: auto;
}
.home-worry__title-sp div:first-child {
  margin-bottom: 6px;
}
.home-worry__group {
  background-color: #ffffff;
}
.home-worry__content {
  margin: 0 auto;
  text-align: center;
  width: auto;
  padding: 20px 15px;
}
@media screen and (min-width: 400px) {
  .home-worry__content {
    width: 352px;
  }
}
@media screen and (min-width: 768px) {
  .home-worry__content {
    width: 630px;
    padding: 50px 0;
  }
}
.home-worry__content__dots {
  font-size: 16px;
  color: #FF4D4D;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .home-worry__content__dots {
    font-size: 28px;
  }
}
.home-worry__content-child {
  display: flex;
  align-items: center;
}
.home-worry__content-child img {
  margin-top: -6px;
}
.home-worry__content-child p {
  font-family: Noto Sans;
  font-size: 15px;
  font-weight: 500;
  line-height: 20.43px;
  text-align: left;
  margin-left: 6px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .home-worry__content-child p {
    margin-left: 15px;
    font-size: 30px;
    line-height: 40.86px;
  }
}
.home-worry__content-child p span {
  color: #FF4D4D;
  font-family: Noto Sans;
  font-size: 15px;
  font-weight: 700;
  line-height: 20.43px;
}
@media screen and (min-width: 768px) {
  .home-worry__content-child p span {
    font-size: 30px;
    line-height: 40.86px;
  }
}
.home-worry__content-child:nth-child(2) {
  margin: 17px 0;
}
.home-worry__arrow {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 93.6%;
}

.car-slide-first {
  padding: 0;
  background-image: url("../images/home/purchase-car/bg.svg");
  height: auto;
}
@media screen and (min-width: 768px) {
  .car-slide-first {
    padding: 60px 5%;
  }
}
.car-slide-first__container {
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .car-slide-first__container {
    border: 5px solid #D9D9D9;
    box-shadow: 6px 7px 1px 0px rgba(0, 0, 0, 0.2392156863);
  }
}
.car-slide-first__container img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .car-slide-first__container img {
    width: auto;
    background: #fff;
  }
}
.car-slide-first__title {
  background-color: #ffffff;
  text-align: center;
  padding: 5px 0;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__title {
    padding: 20px 0;
  }
}
.car-slide-first .splide {
  visibility: visible;
}
.car-slide-first__group {
  display: flex;
  background-color: #99C5E3;
  justify-content: center;
  height: 225px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group {
    height: 296px;
    margin: 0 auto;
  }
}
.car-slide-first__group__list {
  gap: 30px;
  padding: 15px 0;
}
.car-slide-first__group__box {
  width: 320px !important;
  height: 155px;
  background-color: #ffffff;
  display: flex;
  top: 15px;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box {
    top: 30px;
    width: 455px !important;
    height: 190px;
  }
}
.car-slide-first__group__box__img img {
  width: 112px;
  height: 155px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__img img {
    width: 144px;
    height: 190px;
  }
}
.car-slide-first__group__box__content {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content {
    padding-top: 21px;
  }
}
.car-slide-first__group__box__content__end img:first-child {
  padding-right: 0;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__end img:first-child {
    width: auto;
    padding-right: 10px;
  }
}
.car-slide-first__group__box__content__end img:not(:first-child) {
  height: 27px;
  width: 145px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__end img:not(:first-child) {
    height: 40px;
    width: 212px;
  }
}
.car-slide-first__group__box__content__first {
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__first {
    gap: 10px;
  }
}
.car-slide-first__group__box__content__first p {
  margin: 0;
}
.car-slide-first__group__box__content__first p:first-child {
  border-radius: 1.95px;
  text-align: center;
  background-color: #F4DC00;
  width: 32px;
  height: 18px;
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__first p:first-child {
    font-size: 16px;
    width: 48px;
    height: 27px;
  }
}
.car-slide-first__group__box__content__first p:not(:first-child) {
  margin-top: -1px;
  font-size: 11.5px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__first p:not(:first-child) {
    font-size: 18px;
  }
}
.car-slide-first__group__box__content__second {
  display: flex;
  padding: 8px 0 14px;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__second {
    gap: 10px;
    padding: 15px 0 15px;
  }
}
.car-slide-first__group__box__content__second p {
  margin: 0;
  padding: 0px;
}
.car-slide-first__group__box__content__second p:nth-child(odd) {
  border-radius: 1.95px;
  text-align: center;
  background-color: #F4DC00;
  width: 32px;
  height: 18px;
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__second p:nth-child(odd) {
    font-size: 16px;
    width: 48px;
    height: 27px;
  }
}
.car-slide-first__group__box__content__second p:nth-child(even) {
  margin-top: -1px;
  font-size: 11.5px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__box__content__second p:nth-child(even) {
    font-size: 18px;
  }
}
.car-slide-first__group__box__content__note {
  margin-top: 8px;
  font-size: 10px;
}
.car-slide-first__group .splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
  background: #006EBB;
}
.car-slide-first__group__pagination {
  text-align: center;
  padding-bottom: 19px !important;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group__pagination {
    position: absolute;
    top: 83.3% !important;
  }
}
.car-slide-first__group .splide__arrow--prev {
  background-color: #858585;
  top: 125px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group .splide__arrow--prev {
    left: -2.3em;
    top: 165px;
  }
}
.car-slide-first__group .splide__arrow--next {
  background-color: #858585;
  top: 125px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group .splide__arrow--next {
    right: -2.3em;
    top: 165px;
  }
}
.car-slide-first__group .splide__arrow {
  height: 27px;
  width: 27px;
  top: 41%;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group .splide__arrow {
    height: 60px;
    width: 60px;
  }
}
.car-slide-first__group .splide__arrow svg {
  fill: #ffffff !important;
  height: 8px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .car-slide-first__group .splide__arrow svg {
    height: 18.96px;
    width: 18.96px;
  }
}
.car-slide-first__group .splide__pagination__page {
  top: -1px;
}

#contact_bnr_type2 {
  background-color: #ffffff !important;
}

.trader-compare-table-renew {
  background-color: #E5E5E5;
}

@media screen and (min-width: 768px) {
  .home-reason__container {
    padding: 60px 5% !important;
  }
}
@media screen and (min-width: 1000px) {
  .home-reason__container {
    padding: 60px 0 !important;
  }
}

.achievement-home {
  background-color: #E5E5E5;
}
@media screen and (min-width: 768px) {
  .achievement-home {
    padding: 60px 0;
  }
}

.refund-renew-bg {
  padding: 30px 0;
  background-image: url("../images/home/promise/pc/bg.png");
}
@media screen and (min-width: 768px) {
  .refund-renew-bg {
    padding: 60px 0;
  }
}

.contact-new-bg {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-new-bg {
    background-color: #f2f2f2;
    padding: 30px 0 60px;
  }
}
.contact-new-bg img {
  width: 100%;
}

.p-staff-renew__card {
  background-color: #c2def2 !important;
}

.home-customer_voice {
  background-color: #ffffff;
  padding: 40px 0 0 !important;
}
@media screen and (min-width: 768px) {
  .home-customer_voice {
    padding: 60px 0 !important;
  }
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide {
    padding: 0 !important;
  }
}
.home-customer_voice .review-slide__container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .home-customer_voice .review-slide__container {
    padding-bottom: 60px;
    height: auto;
    max-width: 100% !important;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .home-customer_voice .review-slide__container {
    max-width: 1040px !important;
  }
}

.renew-cta img {
  width: 100%;
}

.cta-line-renew {
  display: block;
}
.cta-line-renew img {
  width: 100%;
  margin: 0 auto;
}

.u-footer_banner_top .u-footer-renewal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top .u-footer-renewal {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .home-step-renewal {
    padding-bottom: 60px !important;
  }
}

.title_cta_sp {
  width: 70% !important;
  margin-bottom: 10px !important;
}

.home-worry__arrow {
  top: 98.6% !important;
}
@media screen and (min-width: 768px) {
  .home-worry__arrow {
    top: 93.6% !important;
  }
}

@media screen and (min-width: 768px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

.form-lptop_new-sp__title img {
  width: 100% !important;
  max-width: 400px;
}

.home {
  background-color: #e4e4e4;
}
.home .l-container {
  position: relative;
}
.home .bnr-contact__sp {
  padding: 30px 0 10px;
}
.home .bnr-contact__pc {
  padding: 50px 0;
}
.home .bnr-contact__pc img {
  max-width: 800px;
}
.home .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
.home .bnr-contact__pc .phone-txt::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.home .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.home .bnr-contact__pc__btn-form {
  display: none;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc__btn-form {
    display: block;
    top: 61%;
    left: 63.5%;
  }
  .home .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc__btn-form {
    left: 63%;
  }
  .home .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.home .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}

.form_pattern_b {
  padding: 0 !important;
}
.form_pattern_b .form-lptop_new-pc__title {
  background: #f4dc00;
  display: flex;
  justify-content: center;
  height: 59px;
}
.form_pattern_b .form-lptop_new-pc__title img:nth-child(1) {
  width: 290px;
  position: relative;
  top: 0;
  object-fit: contain;
}
.form_pattern_b .form-lptop_new-pc__title img:nth-child(2) {
  width: 73px;
  height: 73px;
  top: -9px;
  right: -15px;
  position: relative;
}
.form_pattern_b form {
  padding: 20px 15px;
}

.promise_renew_home {
  padding: 0 !important;
  margin: 40px auto 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .promise_renew_home {
    margin: 150px auto 30px;
  }
}
.promise_renew_home .l-container {
  text-align: center;
}

.jisseki-purchase {
  background-color: #ffffff;
}
.jisseki-purchase .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase .title-wrap .sub-tt {
    height: 30px;
  }
}
.jisseki-purchase .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase .title-wrap .main-tt {
    height: 35px;
  }
}
.jisseki-purchase__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  align-items: stretch;
}
.jisseki-purchase__list__item {
  border: 1px solid #e4e4e4;
  flex-basis: 48%;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__list__item {
    flex-basis: 32%;
  }
}
.jisseki-purchase__list__item a {
  text-decoration: none;
  color: #333333;
}
.jisseki-purchase__list__item .img {
  width: 100%;
  position: relative;
  padding-top: 65.33%;
}
.jisseki-purchase__list__item .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.jisseki-purchase__list__item__detail dl {
  display: flex;
  width: calc(100% - 10px);
  margin: auto auto 0px auto;
  font-weight: 300;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__list__item__detail dl {
    width: calc(100% - 20px);
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__list__item__detail dl {
    font-size: 10px;
  }
}
.jisseki-purchase__list__item__detail dl.price-box {
  line-height: 3em;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 10px;
  position: relative;
}
.jisseki-purchase__list__item__detail dl.price-box .price {
  color: #fe0000;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.jisseki-purchase__list__item__detail dl.price-box .price::after {
  content: "円";
  color: #fe0000;
  margin-bottom: 0px;
  font-size: 12px;
  height: 20px;
  margin-top: 2px;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__list__item__detail dl.price-box .price {
    font-size: 24px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__list__item__detail dl.price-box .price {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
  .jisseki-purchase__list__item__detail dl.price-box .price::after {
    font-size: 10px;
    margin-left: -5px;
  }
}
.jisseki-purchase__list__item__detail dl .star {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.jisseki-purchase__list__item__detail dl .star img {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__list__item__detail dl .star img {
    width: 15px;
    height: 15px;
  }
}
.jisseki-purchase__list__item__detail dl .tag a {
  display: inline-block;
  color: #267dcb;
  text-decoration: underline;
}
.jisseki-purchase__list__item__detail dl dt {
  min-width: 60px;
  max-height: 60px;
  margin-right: 5px;
  position: relative;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__list__item__detail dl dt {
    min-width: 90px;
    max-height: 90px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__list__item__detail dl dt {
    min-width: 50px;
    max-height: 50px;
  }
}
.jisseki-purchase__list__item__detail dl dd {
  margin-bottom: 0;
}
.jisseki-purchase__card {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card {
    margin-bottom: 30px;
  }
}
.jisseki-purchase__card ul li {
  border: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li {
    display: flex !important;
    padding: 20px;
    height: 315px;
  }
}
.jisseki-purchase__card ul li img {
  height: 61vw !important;
  object-fit: cover;
  width: 11px;
  max-height: 320px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li img {
    height: auto !important;
    width: 45.3% !important;
    object-position: 50% 0;
  }
}
.jisseki-purchase__card ul li .info {
  font-size: 13px;
  padding: 12px;
  padding-top: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li .info {
    padding-left: 4%;
    max-width: 60% !important;
  }
}
.jisseki-purchase__card ul li .info dl {
  display: flex;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li .info dl {
    font-size: 18px;
  }
}
.jisseki-purchase__card ul li .info dl:first-child {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.jisseki-purchase__card ul li .info dl:first-child dt {
  top: 8px;
}
.jisseki-purchase__card ul li .info dl:first-child dd {
  font-size: 22px;
  font-weight: 300;
  color: #fe0000;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li .info dl:first-child dd {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
  }
}
.jisseki-purchase__card ul li .info dl dt {
  font-weight: normal;
  position: relative;
  width: 36%;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li .info dl dt {
    font-size: 18px;
    width: 120px;
  }
}
.jisseki-purchase__card ul li .info dl dt::after {
  position: absolute;
  right: 5px;
  content: ":";
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__card ul li .info dl dt::after {
    margin-right: 10px;
  }
}
.jisseki-purchase__card ul li .info dl dd {
  font-weight: 400;
  margin-bottom: 0;
}
.jisseki-purchase__area {
  background-color: #ffffff;
  padding: 14px 0;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area {
    padding: 60px 0 44px;
  }
}
.jisseki-purchase__area .title-wrap h2 {
  color: #006ebb;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area .title-wrap h2 {
    font-size: 55px;
  }
}
.jisseki-purchase__area .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area .title-wrap .sub-tt {
    height: 30px;
  }
}
.jisseki-purchase__area .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area .title-wrap .main-tt {
    height: 35px;
  }
}
.jisseki-purchase__area__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
  align-items: stretch;
}
.jisseki-purchase__area__list__item {
  border: 1px solid #e4e4e4;
  flex-basis: 48%;
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item {
    flex-basis: 32%;
  }
}
.jisseki-purchase__area__list__item a {
  text-decoration: none;
  color: #333333;
}
.jisseki-purchase__area__list__item .img {
  width: 100%;
  position: relative;
  padding-top: 65.33%;
}
.jisseki-purchase__area__list__item .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
}
.jisseki-purchase__area__list__item__detail dl {
  display: flex;
  width: calc(100% - 10px);
  margin: auto auto 0px auto;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item__detail dl {
    width: calc(100% - 20px);
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__area__list__item__detail dl {
    font-size: 10px;
  }
}
.jisseki-purchase__area__list__item__detail dl.price-box {
  line-height: 3em;
  border-bottom: none;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: center;
}
.jisseki-purchase__area__list__item__detail dl.price-box .price {
  color: #fe0000;
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.jisseki-purchase__area__list__item__detail dl.price-box .price::after {
  content: "円";
  color: #fe0000;
  margin-bottom: 0px;
  font-size: 16px;
  height: 20px;
  margin-top: 2px;
  margin-left: -7px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item__detail dl.price-box .price {
    font-size: 34px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__area__list__item__detail dl.price-box .price {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
  .jisseki-purchase__area__list__item__detail dl.price-box .price::after {
    font-size: 10px;
    margin-left: -5px;
  }
}
.jisseki-purchase__area__list__item__detail dl.price-box .price_text {
  color: #ff1a1a;
  font-size: 10px;
  min-width: 40px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item__detail dl.price-box .price_text {
    font-size: 16px;
    min-width: 80px;
  }
}
.jisseki-purchase__area__list__item__detail dl .maker_name {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  width: 150px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item__detail dl .maker_name {
    font-size: 24px;
    line-height: 36px;
    width: 265px;
  }
}
.jisseki-purchase__area__list__item__detail dl .maker {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase__area__list__item__detail dl .car-type {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase__area__list__item__detail dl .purchase-area {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase__area__list__item__detail dl .year {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase__area__list__item__detail dl .mileage {
  background-color: #f4dc00;
  text-align: center;
  min-width: 56px;
  max-height: 56px;
}
.jisseki-purchase__area__list__item__detail dl dt {
  min-width: 60px;
  max-height: 60px;
  margin-right: 5px;
  position: relative;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__list__item__detail dl dt {
    min-width: 90px;
    max-height: 90px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 360px) {
  .jisseki-purchase__area__list__item__detail dl dt {
    min-width: 50px;
    max-height: 50px;
  }
}
.jisseki-purchase__area__list__item__detail dl dd {
  margin-bottom: 0;
}
.jisseki-purchase__area__card {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card {
    margin-bottom: 30px;
  }
}
.jisseki-purchase__area__card ul li {
  border: 1px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li {
    display: flex !important;
    padding: 20px;
    height: 315px;
  }
}
.jisseki-purchase__area__card ul li img {
  height: 61vw !important;
  object-fit: cover;
  width: 11px;
  max-height: 320px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li img {
    height: auto !important;
    width: 45.3% !important;
    object-position: 50% 0;
  }
}
.jisseki-purchase__area__card ul li .info {
  font-size: 13px;
  padding: 12px;
  padding-top: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li .info {
    padding-left: 4%;
    max-width: 60% !important;
  }
}
.jisseki-purchase__area__card ul li .info dl {
  display: flex;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li .info dl {
    font-size: 18px;
  }
}
.jisseki-purchase__area__card ul li .info dl:first-child {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.jisseki-purchase__area__card ul li .info dl:first-child dt {
  top: 8px;
}
.jisseki-purchase__area__card ul li .info dl:first-child dd {
  font-size: 22px;
  font-weight: 300;
  color: #fe0000;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li .info dl:first-child dd {
    font-size: 32px;
    line-height: 37px;
    font-weight: 400;
  }
}
.jisseki-purchase__area__card ul li .info dl dt {
  font-weight: normal;
  position: relative;
  width: 36%;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li .info dl dt {
    font-size: 18px;
    width: 120px;
  }
}
.jisseki-purchase__area__card ul li .info dl dt::after {
  position: absolute;
  right: 5px;
  content: ":";
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area__card ul li .info dl dt::after {
    margin-right: 10px;
  }
}
.jisseki-purchase__area__card ul li .info dl dd {
  font-weight: 400;
  margin-bottom: 0;
}
.jisseki-purchase__area .c-button__blue2 {
  box-shadow: 2px 3px 4px 0px grey;
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .jisseki-purchase__area .c-button__blue2 {
    max-width: 400px;
    margin-top: 10px;
    padding: 12px 0;
    border-radius: 5px;
  }
}

@media screen and (min-width: 768px) {
  .jisseki_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.jisseki_list .jisseki_list_item {
  flex: 0 0 49%;
  border: 1px solid #e4e4e4;
}
.jisseki_list .jisseki_list_item .thumbnail img {
  height: 50vw;
  max-height: 285px;
  width: 100%;
  object-fit: cover;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta {
  padding: 0.5em 1rem 1rem;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta .jisseki_warning {
  background-color: rgba(255, 208, 208, 0.4);
  text-align: center;
  margin: 10px auto;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta .jisseki_warning a {
  color: #333333;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta .jisseki_warning a:hover {
  opacity: 0.5;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta dl {
  display: flex;
  margin-bottom: 0;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta dl.price {
  line-height: 3em;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 10px;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta dl dt {
  min-width: 90px;
  margin-right: 10px;
  position: relative;
  padding-right: 6px;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta dl dt::after {
  position: absolute;
  right: 0;
  content: ":";
}
.jisseki_list .jisseki_list_item .jisseki_list_meta dl dd {
  margin-bottom: 0;
}
.jisseki_list .jisseki_list_item .jisseki_list_meta .jisseki-details {
  border-top: 1px solid #e4e4e4;
  padding: 10px 0 0;
}

@media screen and (min-width: 768px) {
  .jisseki-archive .main_title_wrap {
    margin-bottom: 45px;
  }
}
.jisseki-archive .main_title_wrap .main_title_string {
  top: 40%;
  width: 80%;
  max-width: 400px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .jisseki-archive .main_title_wrap .main_title_string {
    top: 50%;
  }
}
.jisseki-archive .main_title_wrap .main_title_string img:first-child {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .jisseki-archive .main_title_wrap .main_title_string img:first-child {
    margin-bottom: 10px;
  }
}
.jisseki-archive .main_title_wrap .main_title_icon {
  bottom: -30px;
  height: 57px;
}
@media screen and (min-width: 768px) {
  .jisseki-archive .main_title_wrap .main_title_icon {
    bottom: -45px;
  }
}
@media screen and (min-width: 768px) {
  .jisseki-archive .head-txt {
    font-size: 18px;
  }
}

.jisseki-index .jisseki_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .jisseki-index .jisseki_list_item {
    flex: 0 0 33%;
  }
}
@media screen and (min-width: 1000px) {
  .jisseki-index .jisseki_list_item {
    flex: 0 0 24%;
  }
}
.jisseki-index .jisseki_list_item .thumbnail img {
  height: 26vw;
  max-height: 150px;
}
.jisseki-index .jisseki_list_item .jisseki_list_meta {
  padding: 0.6em;
}
.jisseki-index .jisseki_list_item .jisseki_list_meta dl {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .jisseki-index .jisseki_list_item .jisseki_list_meta dl {
    font-size: 14px;
  }
}
.jisseki-index .jisseki_list_item .jisseki_list_meta dl dt {
  min-width: 60px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .jisseki-index .jisseki_list_item .jisseki_list_meta dl dt {
    min-width: 85px;
  }
}

.single-jisseki .page-title {
  border-bottom: 2px solid #e4e4e4;
  border-top: 2px solid #e4e4e4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .single-jisseki .page-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info {
    padding-bottom: 1rem;
  }
}
.single-jisseki #jisseki_detail_info > * {
  flex: 0 0 50%;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_thumb {
  margin-right: -5%;
  margin-left: -5%;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_thumb {
    margin: 0;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_thumb img {
  width: 100%;
  object-fit: cover;
  height: 60vw;
  max-height: 300px;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_thumb img {
    height: 42vw;
    max-height: 330px;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_meta {
    padding-left: 1rem;
    margin: 0;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta h1 {
  text-align: left;
  border: none;
  font-size: 20px;
  padding: 0;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta hr {
  margin: 5px 0;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta dl {
  display: flex;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_meta dl {
    font-size: 16px;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta dl dt {
  position: relative;
  width: 105px;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta dl dt:not(.detail_kakaku)::after {
  position: absolute;
  right: 0;
  content: ":";
  margin-right: 1rem;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta dl dd {
  margin-bottom: 0;
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta .detail_kakaku {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_meta .detail_kakaku {
    margin-bottom: 15px;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta .detail_kakaku dt {
  background-color: #ffd0d0;
  text-align: center;
  width: fit-content;
  padding: 0.2em 0.6em;
  line-height: 1.6em;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_info #jisseki_detail_meta .detail_kakaku dt {
    font-size: 14px;
    display: inline;
    height: fit-content;
    top: 10px;
    font-weight: 500;
    padding: 5px;
  }
}
.single-jisseki #jisseki_detail_info #jisseki_detail_meta .detail_kakaku dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
  font-size: 37px;
  margin-left: 10px;
  margin-bottom: 0;
  line-height: 1.2em;
  height: 1em;
  color: red;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec1 {
  border: 1px solid #e4e4e4;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec1 .jisselo_detail_star {
  text-align: center;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec1 > * {
  padding: 1rem;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec1 div:first-child {
  flex: 0 0 30%;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2 {
  padding: 1rem;
  position: relative;
  display: inline-flex;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #e0edff;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2 #jisseki_detail_adviser_info {
  flex: 0 0 25%;
  flex-direction: column;
  align-items: center;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2 #jisseki_detail_adviser_info div {
  padding: 0.2rem;
  max-width: 150px;
}
.single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2 #jisseki_detail_adviser_info div > img {
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .single-jisseki #jisseki_detail_review #jisseki_detail_review_sec2 > div:last-child {
    padding-left: 1rem;
    margin: auto;
  }
}
.single-jisseki .jisseki_detail_buttons {
  display: flex;
  justify-content: center;
}
.single-jisseki .jisseki_detail_buttons a {
  color: #ffffff;
  background: #333333 url("../images/icon/arrow_r.svg") no-repeat 95% 50%;
  background-size: 16px;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 5px;
  width: 180px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .single-jisseki .jisseki_detail_buttons a {
    padding: 12px;
    width: 250px;
  }
}
.single-jisseki .jisseki_detail_buttons a.bg-blue {
  margin-left: 10px;
  background-color: #267dcb;
}
.single-jisseki .jisseki_deatail_tag_wrap {
  padding: 0 1rem;
  text-align: left;
}
.single-jisseki .jisseki_deatail_tag_wrap .jisseki_deatail_tag {
  display: inline-block;
  background: #e4e4e4;
  padding: 0.3rem;
  margin: 0.2rem;
  border-radius: 5px;
  width: fit-content;
}

.p-sdgs .breadcrumbs {
  border-bottom: 2px solid #e4e4e4;
}
.p-sdgs__visual {
  padding: 0;
  text-align: center;
  margin-top: 15px;
}
.p-sdgs__visual img {
  width: 95%;
  max-width: 1050px;
}
.p-sdgs h2 {
  font-size: 20px;
  color: #ffffff;
  background: #267dcb;
  padding: 10px 30px;
  background-image: url(../images/tt/form_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}
.p-sdgs .visual {
  display: flex;
  justify-content: space-around;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-sdgs .visual {
    margin-bottom: 30px;
  }
}
.p-sdgs .visual img {
  width: 40%;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .p-sdgs .txt {
    font-size: 16px;
  }
}

.choice-reason {
  margin-top: 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .choice-reason .l-container {
    margin-top: -35px;
  }
}
.choice-reason .l-container .p-reason__list {
  width: 100%;
}
.choice-reason .l-container .p-reason__list img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .choice-reason .visual {
    height: 280px;
    margin-bottom: 1.6rem;
  }
}
.choice-reason .title-wrap {
  position: relative;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap {
    width: 50%;
    height: 100%;
  }
}
.choice-reason .title-wrap img.map {
  position: absolute;
  width: 50%;
  max-width: 165px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap img.map {
    right: 50%;
    bottom: -20px;
    height: 215px;
    width: auto;
    max-width: inherit;
    transform: translateX(50%);
  }
}
.choice-reason .title-wrap .logo-wrap {
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .logo-wrap {
    position: absolute;
    left: 50%;
    top: 40px;
    width: max-content;
    transform: translateX(-50%);
  }
}
.choice-reason .title-wrap .logo-wrap.area {
  left: 88px;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .logo-wrap.area {
    left: 50%;
    transform: translateX(-50%);
  }
}
.choice-reason .title-wrap .logo-wrap .txt {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .logo-wrap .txt {
    font-size: 20px;
    display: inline-block;
  }
}
.choice-reason .title-wrap .logo-wrap .area-name {
  font-size: 24px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .logo-wrap .area-name {
    font-size: 34px;
  }
}
.choice-reason .title-wrap .logo-wrap img.haishall {
  width: 100px;
  z-index: 9;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .logo-wrap img.haishall {
    width: 182px;
  }
}
.choice-reason .title-wrap img.total {
  display: block;
  width: 230px;
  margin: auto;
  position: relative;
  margin-top: 8px;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap img.total {
    width: 260px;
    display: inline-block;
    top: -15px;
  }
}
@media screen and (min-width: 1000px) {
  .choice-reason .title-wrap img.total {
    width: 328px;
    left: auto !important;
  }
}
.choice-reason .title-wrap img.benefits {
  position: absolute;
  bottom: 35%;
  width: 88%;
  left: 5%;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap img.benefits {
    top: 53%;
    transform: translateY(-50%);
    height: 25px;
    left: 0;
    width: auto;
  }
}
@media screen and (min-width: 1000px) {
  .choice-reason .title-wrap img.benefits {
    top: 50%;
    height: 36px;
  }
}
.choice-reason .title-wrap span.sub, .choice-reason .title-wrap span.sub__blue, .choice-reason .title-wrap span.sub__black {
  font-size: 14px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 10px;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap span.sub, .choice-reason .title-wrap span.sub__blue, .choice-reason .title-wrap span.sub__black {
    letter-spacing: 0.2em;
    font-size: 16px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 43%;
    border-radius: 4px;
    padding: 2px 25px;
  }
}
.choice-reason .title-wrap h2 img {
  position: relative;
  height: 56px;
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap h2 img {
    height: 63px;
    left: 0;
    bottom: 20px;
    position: absolute;
  }
}
@media screen and (min-width: 1000px) {
  .choice-reason .title-wrap h2 img {
    height: 95px;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .choice-reason .title-wrap .reason_norika_photo {
    position: absolute;
    width: 240px;
    right: -250px;
    top: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .choice-reason .title-wrap .reason_norika_photo {
    right: -350px;
  }
}
@media screen and (min-width: 768px) {
  .choice-reason .norika_reason_abtest {
    position: relative;
    margin-left: 20px;
    width: 450px;
  }
}
@media screen and (min-width: 900px) {
  .choice-reason .norika_reason_abtest {
    margin-left: 80px;
  }
}
@media screen and (max-width: 750px) {
  .choice-reason .default_reason_abtest {
    display: block !important;
  }
}
.choice-reason__div3 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .choice-reason__div3 {
    margin-top: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.choice-reason__div3 .choice-reason-block {
  flex-basis: 47%;
  position: relative;
  margin-bottom: 30px;
  background: #fffcf2;
  border: 2px solid #aa982d;
  padding: 20px 10px 10px;
}
.choice-reason__div3 .choice-reason-block__title {
  position: absolute;
  width: 140px;
  left: calc(50% - 70px);
  top: -16px;
}
.choice-reason__div3 .choice-reason-block__subtitle-1 {
  height: 20%;
  width: 80%;
  display: block;
  margin: 5px auto 12px;
}
.choice-reason__div3 .choice-reason-block__subtitle-2 {
  width: 80%;
  display: block;
  margin: 5px auto 12px;
}
@media screen and (min-width: 768px) {
  .choice-reason__div3 .choice-reason-block {
    width: 46%;
    padding: 28px 10px 10px;
  }
  .choice-reason__div3 .choice-reason-block:nth-child(7), .choice-reason__div3 .choice-reason-block:nth-child(8) {
    margin-bottom: 0;
  }
}
.choice-reason__div3 .choice-reason-block__text {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .choice-reason__div3 .choice-reason-block__text {
    font-size: 16px;
  }
}
.choice-reason__div3 h3 {
  margin-bottom: 15px;
}
.choice-reason__div3 h3::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .choice-reason__div3 h3 {
    width: 50%;
    padding: 0 10px;
  }
  .choice-reason__div3 h3 img {
    margin: auto;
  }
}
.choice-reason .txt {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .choice-reason .txt {
    margin-top: 30px;
    font-size: 16px;
  }
}

.purchase-flow img {
  height: auto;
}
.purchase-flow .title-wrap .sub-tt {
  height: 25px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .purchase-flow .title-wrap .sub-tt {
    height: 30px;
  }
}
.purchase-flow .title-wrap .main-tt {
  width: 100%;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .purchase-flow .title-wrap .main-tt {
    height: 35px;
  }
}
.purchase-flow h3 {
  margin-bottom: 0;
  line-height: 1;
}
.purchase-flow h3::before {
  content: none;
}
@media screen and (min-width: 768px) {
  .purchase-flow h3 {
    font-size: 18px;
  }
}
.purchase-flow_div1 .contents-tel {
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .purchase-flow_div1 .contents-tel {
    padding-top: 10px;
  }
}
.purchase-flow_div1_box {
  flex: 0 0 49%;
  background: #ffffff;
  padding: 0.5rem;
  margin-bottom: 14px;
}
@media screen and (min-width: 1000px) {
  .purchase-flow_div1_box {
    flex: inherit;
    width: calc(50% - 7px);
    position: relative;
    height: 150px;
    padding: 15px 0 0 20px;
  }
}
.purchase-flow_div1_box:last-child() {
  margin-bottom: 0px;
}
.purchase-flow_div1_box__title {
  margin-bottom: 5px;
}
.purchase-flow_div1_box__title .sub, .purchase-flow_div1_box__title .sub__blue, .purchase-flow_div1_box__title .sub__black {
  background-color: #267dcb;
}
.purchase-flow_div1_box__title h3 {
  display: inline-block;
  color: #267dcb;
}
.purchase-flow_div1_box__title h3 span {
  font: bold;
}
.purchase-flow_div1_box__contents {
  display: flex;
}
.purchase-flow_div1_box__contents div:first-child {
  line-height: 1.5;
  font-size: 14px;
  flex: 0 0 65%;
  letter-spacing: -0.01em;
  padding-right: 15px;
}
@media screen and (min-width: 1000px) {
  .purchase-flow_div1_box__contents img {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
  }
}
.purchase-flow .c-button__link {
  padding: 0.5rem 2rem;
}
.purchase-flow .u-display-sp.tel-button {
  font-weight: normal;
  margin-top: 12px;
}
.purchase-flow .u-display-sp.tel-button p {
  font-size: 10px;
}
.purchase-flow .u-display-sp.tel-button a {
  position: relative;
  text-decoration: none;
  color: #333333;
  background-color: #fce44d;
  font-weight: normal;
  font-size: 12px;
  display: block;
  padding: 5px 40px;
  border-radius: 23px;
  border: 0.2em solid #edc348;
  width: 90%;
  margin: 0 auto;
  min-width: 260px;
  max-width: 400px;
}
.purchase-flow .u-display-sp.tel-button a::after {
  content: "";
  background-image: url("../images/icon/arrow_r.svg");
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}

.p-staff__card__slider-wrap {
  height: 250px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-staff__card__slider-wrap {
    width: 50%;
    height: 100%;
  }
}
.p-staff__card__slider-wrap .staff-slider {
  background-color: #ffffff;
  padding: 0.8rem;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .p-staff__card__slider-wrap .staff-slider {
    height: 100%;
    padding: 20px;
  }
}

.staff_splide {
  background-color: #ffffff;
}
.staff_splide .p-staff * {
  min-height: 0;
}
.staff_splide .p-staff {
  padding-bottom: 30px;
  background-color: #ffffff;
}
.staff_splide .p-staff__head-txt {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.08em;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__head-txt {
    font-size: 18px;
    letter-spacing: inherit;
  }
}
.staff_splide .p-staff__card {
  height: 372px;
  background-color: #fffcf4;
  border: 1px solid #cfc7ae;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card {
    height: 320px;
  }
}
@media screen and (min-width: 1000px) {
  .staff_splide .p-staff__card {
    height: 320px;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide {
  background-color: #ffffff;
  padding: 0.8rem;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide {
    height: 100%;
    padding: 20px;
    height: 285px !important;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide img {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide img {
    width: 98px;
  }
}
@media screen and (min-width: 1000px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide img {
    width: 140px;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide__text__name {
  text-align: center;
  display: block;
  width: 80px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__name {
    width: 98px;
  }
}
@media screen and (min-width: 1000px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__name {
    width: 140px;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 95px);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment {
    width: calc(100% - 115px);
  }
}
@media screen and (min-width: 1000px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment {
    width: calc(100% - 160px);
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__title {
  color: #826e47;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__msg {
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  height: 90px;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__msg {
    font-size: 14px;
    height: 94px;
    display: block;
  }
}
.staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__open.c-button__blue2 {
  max-width: 90%;
  min-width: 90%;
}
@media screen and (min-width: 768px) {
  .staff_splide .p-staff__card__slider-wrap .splide__slide__text__comment .comment__open.c-button__blue2 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .staff_splide .wrap-staff-thumb {
    width: 48%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2%;
  }
}
.staff_splide .wrap-staff-thumb .splide__slide {
  border: 3px solid transparent !important;
}
.staff_splide .wrap-staff-thumb .splide__list__name {
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
  text-align: center;
  font-size: 12px;
  background: #fffcf4;
  z-index: 2;
}
@media screen and (max-width: 399px) {
  .staff_splide .wrap-staff-thumb .splide__list__name {
    bottom: -3px;
    height: auto;
  }
}
@media screen and (min-width: 400px) {
  .staff_splide .wrap-staff-thumb .splide__list__name {
    bottom: 40px;
    height: 30px;
  }
}
@media screen and (min-width: 768px) {
  .staff_splide .wrap-staff-thumb .splide__list__name {
    top: 106px;
    bottom: -3px;
    height: auto;
  }
}
.staff_splide .splide__arrow {
  top: 61px;
  background-color: #333333;
}
@media screen and (min-width: 768px) {
  .staff_splide .splide__arrow {
    width: 35px;
    height: 35px;
  }
}
.staff_splide .splide__arrow svg {
  fill: #ffffff;
  font-size: 10px;
}
.staff_splide .splide__arrow--prev {
  left: -10px;
}
.staff_splide .splide__arrow--next {
  right: -10px;
}
.staff_splide {
  /* dots -----------------------------*/
}
.staff_splide .splide__pagination {
  bottom: -12px !important;
}
.staff_splide .splide__pagination__page {
  margin: 10px;
  height: 6px;
  width: 6px;
}

.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
}
.c-modal_content._sm {
  width: 30%;
}
.c-modal_content._md {
  width: 50%;
}
.c-modal_content._lg {
  width: 80%;
  max-width: 797px;
}

.c-modal_content_inner {
  position: relative;
  padding: 24px;
  display: flex;
  max-height: calc(100vh - 275px);
  overflow-y: scroll;
  justify-content: space-between;
  flex-direction: column;
  max-width: 800px;
}
@media screen and (min-width: 768px) {
  .c-modal_content_inner {
    flex-direction: row;
  }
}
.c-modal_content_inner .p-staff__card__imgwrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.c-modal_content_inner .p-staff__card__img {
  width: 120px;
  display: block;
  margin: 0 auto;
}
.c-modal_content_inner .p-staff__card__name {
  text-align: center;
}
.c-modal_content_inner .p-staff__card__slider-wrap__comment {
  top: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-modal_content_inner .p-staff__card__slider-wrap__comment {
    margin-left: 10px;
    width: calc(100% - 115px);
  }
}
@media screen and (min-width: 1000px) {
  .c-modal_content_inner .p-staff__card__slider-wrap__comment {
    width: calc(100% - 160px);
  }
}
.c-modal_content_inner .p-staff__card__slider-wrap__comment .comment__title {
  color: #826e47;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-modal_content_inner .p-staff__card__slider-wrap__comment .comment__title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.c-modal_content_inner .p-staff__card__slider-wrap__comment .comment__msg {
  font-size: 13px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-modal_content_inner .p-staff__card__slider-wrap__comment .comment__msg {
    font-size: 14px;
  }
}
.c-modal_content_inner .p-staff__card__slider-wrap__comment .comment__open.c-button__blue2 {
  max-width: 90%;
  min-width: 90%;
}

.c-modal_close {
  position: absolute;
  top: 13px;
  right: 10px;
}

/*=================================================
書類テンプレート
==================================================-*/
.p-template-shorui {
  overflow: hidden;
}
.p-template-shorui .breadcrumbs {
  background-color: #ffffff;
  border-top: 2px solid #e4e4e4;
}
.p-template-shorui #toc-range .l-container {
  padding: 20px 15px;
  margin-bottom: 0.3rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-template-shorui #toc-range .l-container {
    padding: 50px 6%;
    margin-bottom: 30px;
    width: 90%;
  }
  .p-template-shorui #toc-range .l-container:last-child {
    margin-bottom: 0;
  }
}
.p-template-shorui #toc-range .l-container:last-child {
  margin-bottom: 0;
}
.p-template-shorui section {
  background-color: #e4e4e4;
}
.p-template-shorui .bnr-contact .l-container {
  padding: 0 5%;
}
.p-template-shorui .bnr-contact__pc {
  padding-top: 0;
  padding-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .bnr-contact__pc {
    padding-bottom: 30px !important;
  }
}
.p-template-shorui .bnr-contact__pc img {
  max-width: 800px !important;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .bnr-contact__pc p {
    top: 30%;
    left: 28%;
    font-size: 5.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-shorui .bnr-contact__pc p {
    top: 35%;
    left: 28%;
    font-size: 52px;
  }
}
.p-template-shorui .line.head {
  height: 2rem;
}
.p-template-shorui {
  /* リード文
  ----------------------------------------*/
}
.p-template-shorui__read {
  background-image: url(../images/tt/bg.webp);
  background-size: 100% 100%;
  position: relative;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 24px;
}
.p-template-shorui__read h1 {
  margin: 0;
  padding: 0;
}
.p-template-shorui__read > div {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__read > div {
    width: 80%;
    max-width: 800px;
    margin: auto;
  }
}
.p-template-shorui__read__txt {
  height: auto;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__read__txt {
    width: 80%;
  }
}
.p-template-shorui__read__txt p {
  height: 100%;
  color: #ffffff;
  padding: 28px 0 38px;
  margin: 0;
  position: relative;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__read__txt p {
    font-size: 34px;
    padding: 22px 0 34px;
  }
}
.p-template-shorui__read img {
  position: absolute;
  top: 107px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__read img {
    max-width: 57px;
    top: 148px;
  }
}
.p-template-shorui .certificate-tetuduki {
  max-width: 800px;
  margin: auto;
}
.p-template-shorui .certificate-tetuduki__container {
  padding: 0 20px;
  margin: 54px auto 30px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .certificate-tetuduki__container {
    margin: 115px auto 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-shorui .certificate-tetuduki__container {
    padding: 0;
  }
}
.p-template-shorui .certificate-tetuduki__title h2 {
  font-family: NotoSansRegular;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #006ebb;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .certificate-tetuduki__title h2 {
    margin-bottom: 30px;
    font-size: 40px;
    line-height: 55px;
  }
}
.p-template-shorui .certificate-tetuduki__content {
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  margin: 20px auto;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .certificate-tetuduki__content {
    font-family: NotoSansMedium;
    font-size: 16px;
    line-height: 23.68px;
    margin: 30px auto 60px;
  }
}
.p-template-shorui .certificate-tetuduki__download {
  text-align: center;
}
.p-template-shorui .why-tetuduki__container {
  padding: 0 20px;
  margin: 30px auto;
  max-width: 1053px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .why-tetuduki__container {
    margin: 60px auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-shorui .why-tetuduki__container {
    padding: 0;
  }
}
.p-template-shorui .why-tetuduki__container h3 {
  width: fit-content;
  position: relative;
  text-align: left;
  color: #006ebb;
  margin: 20px auto;
  border-bottom: 3px solid #cccccc;
  padding-bottom: 5px;
  width: 100%;
  font-family: NotoSansBold;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .why-tetuduki__container h3 {
    margin: 30px auto;
    padding-bottom: 17px;
    font-size: 18px;
    line-height: 24.52px;
  }
}
.p-template-shorui .why-tetuduki__container h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-bottom: 3px solid #006ebb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .why-tetuduki__container h3::before {
    width: 160px;
  }
}
.p-template-shorui .why-tetuduki__title h2 {
  font-family: NotoSansRegular;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #006ebb;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .why-tetuduki__title h2 {
    margin: 30px 0;
    font-size: 40px;
    line-height: 55px;
  }
}
.p-template-shorui .why-tetuduki__content {
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .why-tetuduki__content {
    font-family: NotoSansMedium;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-shorui .why-tetuduki__content span {
  letter-spacing: -0.1px;
}
.p-template-shorui .why-tetuduki__content div {
  text-align: left;
}
.p-template-shorui {
  /* 目次
  ----------------------------------------*/
}
.p-template-shorui .mokuji {
  margin-top: 0;
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .mokuji {
    background-color: #ffffff;
    padding: 0;
  }
}
.p-template-shorui .mokuji .l-container {
  padding: 0 5%;
  background-color: #e4e4e4;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .mokuji .l-container {
    padding: 2% 5%;
    background-color: #ffffff;
  }
}
.p-template-shorui .mokuji__wrap {
  background-color: #ffffff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .mokuji__wrap {
    margin: auto;
    font-size: 20px;
    font-weight: bold;
  }
}
.p-template-shorui .mokuji__wrap ol.mokuji-list {
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 1rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .mokuji__wrap ol.mokuji-list {
    font-size: 16px;
    font-weight: normal;
  }
}
.p-template-shorui .mokuji__wrap ol.mokuji-list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
}
.p-template-shorui .mokuji__wrap ol.mokuji-list ol li {
  border-bottom: none;
}
.p-template-shorui {
  /* 本文
  -----------------------------------------*/
}
.p-template-shorui__contents {
  background-color: white !important;
  padding: 0 !important;
}
.p-template-shorui__contents .l-container {
  max-width: 1042px !important;
  padding: 0 20px !important;
  margin-bottom: 20px;
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents .l-container {
    margin-bottom: 30px;
    padding: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-shorui__contents .l-container {
    padding: 0 !important;
  }
}
.p-template-shorui__contents__container {
  margin-bottom: 20px;
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents__container {
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 30px;
    font-family: NotoSansMedium;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.p-template-shorui__contents__container h3 {
  width: fit-content;
  position: relative;
  text-align: left;
  color: #006ebb;
  margin: 20px auto;
  border-bottom: 3px solid #cccccc;
  padding-bottom: 5px;
  width: 100%;
  font-family: NotoSansBold;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents__container h3 {
    margin: 30px auto;
    padding-bottom: 17px;
    font-size: 18px;
    line-height: 24.52px;
  }
}
.p-template-shorui__contents__container h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-bottom: 3px solid #006ebb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents__container h3::before {
    width: 160px;
  }
}
.p-template-shorui__contents__container .blue-box {
  background-color: #e6f2ff;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents__container .blue-box {
    width: 49%;
  }
}
.p-template-shorui__contents__container .blue-box:first-child {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui__contents__container .blue-box:first-child {
    margin-bottom: 0;
  }
}
.p-template-shorui__contents__container .blue-box__title {
  text-align: center;
  color: #267dcb;
  padding-bottom: 0.5rem;
}
.p-template-shorui__contents__container hr.line {
  background-color: #ffffff;
}
.p-template-shorui {
  /* 書類ページ一覧
  -----------------------------------------------*/
}
@media screen and (min-width: 768px) {
  .p-template-shorui .other-shorui-container {
    background-color: #e6f2fd !important;
  }
}
.p-template-shorui .other-shorui-container .other-shorui {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .other-shorui-container .other-shorui {
    padding: 0;
  }
}
.p-template-shorui .other-shorui-container .other-shorui {
  /* PC -----------------*/
}
.p-template-shorui .other-shorui-container .other-shorui .recycl_link_wrap .recycl_link {
  flex-wrap: wrap;
  display: flex;
  margin: 0 auto;
}
.p-template-shorui .other-shorui-container .other-shorui .recycl_link_wrap .recycl_link li {
  background-color: #ffffff;
  margin: 0.2rem;
  flex-basis: 24%;
  padding: 0.5rem;
}
.p-template-shorui .other-shorui-container .other-shorui {
  /* SP ------------------*/
}
.p-template-shorui .other-shorui-container .other-shorui .recycl_container {
  padding-top: 15px;
}
.p-template-shorui .other-shorui-container .other-shorui .recycl_container ul {
  margin-bottom: 0;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 4px;
}
.p-template-shorui .other-shorui-container .other-shorui .recycl_container ul li {
  padding: 5px 0;
  border-bottom: 1px dotted #e4e4e4;
}
.p-template-shorui .processing-free-tetuduki {
  background: white;
  padding: 0;
}
.p-template-shorui .processing-free-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .processing-free-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-shorui .processing-free-tetuduki__container {
    max-width: 700px;
    margin: 60px auto;
  }
}
.p-template-shorui .processing-free-tetuduki__title {
  text-align: center;
  margin-bottom: 20px;
}
.p-template-shorui .processing-free-tetuduki__title h2 {
  margin: 0;
  padding: 0;
}
.p-template-shorui .processing-free-tetuduki__title h2 img {
  height: auto;
}
.p-template-shorui .processing-free-tetuduki__title2 {
  text-align: center;
  margin: 30px auto 10px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .processing-free-tetuduki__title2 {
    margin: 60px auto 20px;
  }
}
.p-template-shorui .processing-free-tetuduki__box {
  display: flex;
  align-items: flex-end;
  gap: 45px;
  position: relative;
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .processing-free-tetuduki__box {
    max-width: 728px;
    width: auto;
  }
}
.p-template-shorui .processing-free-tetuduki__box__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 32%;
  text-align: CENTER;
  margin-left: -35px;
}
.p-template-shorui .processing-free-tetuduki__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) {
  .p-template-shorui .processing-free-tetuduki__btn {
    height: 52px;
    margin: -30px auto 0;
    width: 400px;
  }
}
.p-template-shorui .processing-free-tetuduki__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.p-template-shorui .processing-free-tetuduki__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.p-template-shorui .processing-free-tetuduki__btn p img {
  float: right;
  margin-right: 20px;
}
.p-template-shorui .learn-more-tetuduki {
  padding: 20px;
  margin: 30px auto;
  background-color: #e4e4e4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .learn-more-tetuduki {
    margin: 60px auto;
    background-color: #ffffff;
    padding: 0;
  }
}
.p-template-shorui .learn-more-tetuduki .l-container {
  padding: 0;
  background-color: #ffffff;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .learn-more-tetuduki .l-container {
    padding: 0 20px;
    background-color: #ffffff;
  }
}
.p-template-shorui .learn-more-tetuduki__wrap {
  font-family: NotoSansRegular;
  padding: 10px 10px 20px 10px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .learn-more-tetuduki__wrap {
    padding: 0;
    max-width: 770px;
    width: 100%;
    margin: auto;
  }
}
.p-template-shorui .learn-more-tetuduki__wrap h2 {
  margin-left: 5px;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-template-shorui .learn-more-tetuduki__wrap h2 {
    margin-left: 0;
    font-size: 18px;
    line-height: 23px;
  }
}
.p-template-shorui .learn-more-tetuduki__wrap__list {
  font-family: NotoSansRegular;
  list-style-type: none;
  margin-bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 15px;
  font-size: 15px;
}
.p-template-shorui .learn-more-tetuduki__wrap__list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
  position: relative;
  padding-right: 20px;
}
.p-template-shorui .learn-more-tetuduki__wrap__list__first {
  color: #b3b3b3 !important;
}
.p-template-shorui .learn-more-tetuduki__wrap__list__first li::after {
  border-left: 8px solid #b3b3b3 !important;
}
.p-template-shorui .learn-more-tetuduki__wrap__list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 9px;
  border-left: 8px solid #006EBB;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 1px;
}
.p-template-shorui .learn-more-tetuduki__wrap__list ol li {
  border-bottom: none;
}
.p-template-shorui .learn-more-tetuduki .learn_more_active {
  color: #b3b3b3 !important;
}
.p-template-shorui .learn-more-tetuduki .learn_more_active li::after {
  border-left: 8px solid #b3b3b3 !important;
}

.tetuduki_refund {
  padding: 20px 0 9px;
}
.tetuduki_refund_bg {
  padding: 64px 0 52px;
  position: relative;
  background: url(../images/tetuduki/refund/bgr-sp.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1000px) {
  .tetuduki_refund_bg {
    padding: 64px 0 32px;
    background: url("../images/tetuduki/refund/bgr.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
}
.tetuduki_refund_bg .l-container {
  max-width: 100% !important;
  padding: 0 20px;
}
@media screen and (min-width: 1000px) {
  .tetuduki_refund_bg .l-container {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .tetuduki_refund {
    max-width: 100%;
    padding: 0;
    margin-top: 70px;
  }
}
.tetuduki_refund__form {
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form {
    max-width: 510px;
  }
}
.tetuduki_refund__form__title1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 340px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form__title1 {
    top: -29px;
    width: 510px;
    height: 90px;
  }
}
.tetuduki_refund__form__title2 {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form__title2 {
    margin-bottom: 27px;
  }
}
.tetuduki_refund__form__title2 div {
  text-align: center;
}
.tetuduki_refund__form__title2 div:first-child {
  color: #FF8B21;
  font-size: 24px;
  font-weight: 700;
  line-height: 32.69px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form__title2 div:first-child {
    font-size: 32px;
    line-height: 43.58px;
    margin-bottom: 12px;
  }
}
.tetuduki_refund__form__title2 div:last-child {
  margin-top: 12px;
  border-bottom: 2px solid #FF8B21;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: center;
  margin: 0 auto;
  width: 335px;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form__title2 div:last-child {
    width: 460px;
    font-size: 20px;
    line-height: 27.24px;
  }
}
.tetuduki_refund__form .refund-form__line {
  margin-bottom: 16px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__line {
    margin-bottom: 24px;
  }
}
.tetuduki_refund__form .refund-form__line:last-child {
  margin-bottom: 0;
}
.tetuduki_refund__form .refund-form__line {
  display: flex;
  gap: 11px;
}
.tetuduki_refund__form .refund-form__line__lable {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21vw;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__line__lable {
    width: 100px;
    font-size: 21px;
    font-weight: 400;
    margin-right: 21px;
    line-height: 28.6px;
  }
}
.tetuduki_refund__form .refund-form__line__select {
  width: 100%;
  height: unset;
  position: relative;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__line__select {
    width: 402px;
    height: 48px;
  }
}
.tetuduki_refund__form .refund-form__line__select select {
  color: #9E9898;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.34px;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__line__select select {
    color: #9E9898;
    font-size: 18px;
    font-weight: 400;
    line-height: 24.52px;
  }
}
.tetuduki_refund__form .refund-form__line__select::before {
  content: "";
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 11px;
  width: 10px;
  height: 10px;
  background-image: url("../images/tetuduki/refund/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__line__select::before {
    right: 20px;
    width: 15px;
    height: 15px;
  }
}
.tetuduki_refund__form .refund-form__button {
  position: relative;
  margin-top: 21px;
  background-color: #FF8B21;
  box-shadow: 0px 4px 0px 0px #BB712D;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 260px;
  height: 40px;
  opacity: 0.5;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__button {
    border-radius: 10px;
    margin-top: 32px;
    width: 390px;
    height: 60px;
  }
}
.tetuduki_refund__form .refund-form__button__text {
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.07px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__button__text {
    font-size: 21px;
    font-weight: 700;
    line-height: 28.6px;
  }
}
.tetuduki_refund__form .refund-form__button__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: white;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  right: 19px;
}
@media screen and (min-width: 768px) {
  .tetuduki_refund__form .refund-form__button__text::before {
    width: 15px;
    height: 15px;
    right: 29px;
  }
}
.tetuduki_refund__form .refund-form__button--disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
.tetuduki_refund__form .refund-form__button--enabled {
  pointer-events: auto;
  opacity: 1;
  cursor: pointer;
}

.shape_arrow_down {
  display: block;
  background-color: #ffecbc;
  height: 44px;
  width: 100%;
  position: absolute;
  bottom: -10px;
}
@media screen and (min-width: 768px) {
  .shape_arrow_down {
    height: 62px;
  }
}
.shape_arrow_down::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: solid 44px #e6f2ff;
  border-left: solid 50vw rgba(0, 0, 0, 0);
  z-index: 1;
}
.shape_arrow_down::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 44px #e6f2ff;
  border-right: solid 50vw rgba(0, 0, 0, 0);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .shape_arrow_down {
    display: none;
  }
}

.shape_arrow_down_bg {
  display: block;
  background-color: #ffecbc;
  height: 44px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .shape_arrow_down_bg {
    height: 62px;
  }
}
.shape_arrow_down_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: solid 43px #e6f2ff;
  z-index: 1;
}
.shape_arrow_down_bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 43px #e6f2ff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .shape_arrow_down_bg {
    display: none;
  }
}

.tetuduki-show-price {
  padding: 1px 0px !important;
  position: relative;
  top: 0px;
  background-color: #ffeab6;
  display: none;
}
@media screen and (min-width: 1000px) {
  .tetuduki-show-price {
    padding: 0;
  }
}
.tetuduki-show-price__group {
  background: white;
  padding: 20px 0 0;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__group {
    margin: 30px auto;
  }
}
.tetuduki-show-price__title {
  background-color: #f9efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  top: -21px;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__title {
    top: -20px;
  }
}
.tetuduki-show-price__box {
  border-bottom: 2px solid #b2b2b2;
  padding-bottom: 15px;
  margin: 0 20px 15px 20px;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__box {
    margin: 0 15% 15px;
  }
}
.tetuduki-show-price__flex {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tetuduki-show-price__flex__price {
  display: flex;
  align-items: baseline;
}
.tetuduki-show-price__flex div:first-child {
  font-weight: 600;
}
.tetuduki-show-price__flex div:last-child {
  font-size: 18px;
}
.tetuduki-show-price__flex #car_tax,
.tetuduki-show-price__flex #weight_tax,
.tetuduki-show-price__flex #vehicle_liability_insurances {
  font-size: 30px;
  font-weight: 700;
}
.tetuduki-show-price__total {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 2px solid #b2b2b2;
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__total {
    margin: 0 15%;
  }
}
.tetuduki-show-price__total__flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tetuduki-show-price__total__text {
  font-size: 16px;
  font-weight: 600;
}
.tetuduki-show-price__total__price {
  display: flex;
  align-items: baseline;
  font-size: 18px;
}
.tetuduki-show-price__total__price #total_price {
  color: #f78621;
  font-weight: 700;
  font-size: 34px;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__total__price #total_price {
    font-size: 50px;
  }
}
.tetuduki-show-price__text-first, .tetuduki-show-price__text-second {
  padding: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__text-first, .tetuduki-show-price__text-second {
    padding: 20px 15% 0;
  }
}
.tetuduki-show-price__text-first__title, .tetuduki-show-price__text-second__title {
  color: red;
  font-weight: 600;
  font-size: 16px;
}
.tetuduki-show-price__text-first__content, .tetuduki-show-price__text-second__content {
  padding: 15px 0px;
}
.tetuduki-show-price__text-second {
  border-top: 2px solid #f78621;
}
@media screen and (min-width: 768px) {
  .tetuduki-show-price__text-second {
    padding: 20px 15%;
  }
}

.page-tetuduki .breadcrumbs {
  border-top: 2px solid #e4e4e4;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .head.l-container {
    max-width: initial !important;
    margin: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .head.l-container {
    max-width: 980px !important;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap {
  width: 100%;
}
.page-tetuduki .tetuduki_shorui_card_wrap a {
  color: #267dcb;
  text-decoration: underline;
}
.page-tetuduki .tetuduki_shorui_card_wrap {
  padding: 15px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap {
    display: flex;
    margin: auto;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1:not(:last-child),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2:not(:last-child),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3:not(:last-child) {
    margin-right: 10px;
  }
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1,
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2,
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3 {
    width: 135px !important;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1:not(:last-child),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2:not(:last-child),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3:not(:last-child) {
    margin-right: 15px;
  }
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1,
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2,
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3 {
    width: 160px !important;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf),
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf),
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf) {
  height: 120px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf),
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card3 img:not(.tetuduki_img_add):not(.tetuduki_img_pdf) {
    height: 80px;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1 {
  position: relative;
  margin: 15px 0 0;
  background-color: #ffffff;
  display: inline-block;
  vertical-align: ｆtop;
  width: 100%;
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card1 {
    margin-top: 0;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2 {
  position: relative;
  margin: 15px 0 0;
  background-color: #ffffff;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_card2 {
    margin-top: 0;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_txt {
  text-align: left;
  padding: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_shorui_txt {
    min-height: 68px;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_img_add {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  margin: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_img_add {
    width: 15%;
  }
}
.page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_img_pdf {
  position: absolute;
  bottom: 1%;
  right: 0;
  width: 10%;
  margin: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_shorui_card_wrap .tetuduki_img_pdf {
    width: 12%;
    bottom: 8%;
  }
}
.page-tetuduki .tetuduki_shorui_txt {
  font-size: 15px;
}
.page-tetuduki .shorui-check {
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .shorui-check .l-container {
    max-width: 800px !important;
  }
}
.page-tetuduki .tetuduki_check_wrap {
  background-color: #3b84d1;
  display: flex;
}
.page-tetuduki .tetuduki_check_wrap .tetuduki_check_step {
  background-color: #002077;
  color: #ffffff;
  display: inline-flex;
  padding: 0 0.8em;
  align-items: center;
  min-width: 52px;
}
.page-tetuduki .tetuduki_check_wrap .tetuduki_check_step div {
  line-height: 15px;
}
.page-tetuduki .tetuduki_check_wrap .tetuduki_check_title {
  color: #ffffff;
  display: inline-flex;
  padding: 0.5rem;
  align-items: center;
}
.page-tetuduki .tetuduki_check_wrap .tetuduki_check_title h3::before {
  content: none;
}
.page-tetuduki .tetuduki_check_content {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content {
    text-align: left;
  }
}
.page-tetuduki .tetuduki_check_content > p {
  padding: 1rem;
}
.page-tetuduki .tetuduki_check_content .tetuduki_q_txt {
  color: #267dcb;
  font-size: 16px;
  text-indent: -1em;
  padding-left: 10px;
}
.page-tetuduki .tetuduki_check_content .tetuduki_q_txt::before {
  content: "Q";
  font-size: 18px;
  font-weight: bold;
}
.page-tetuduki .tetuduki_check_content .tetuduki_q_img_sp {
  display: block;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_q_img_sp {
    display: none;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_q_img_sp img {
  width: 100%;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 {
  padding: 1rem;
  margin: 1rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 {
    margin-top: 0;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap {
    justify-content: flex-start;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn {
  position: relative;
  width: 50%;
  margin: 0.2rem;
  background-color: #ffffff;
  border: 1px solid #267dcb;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn p {
    display: inline-block;
    padding: 0.5rem;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn p:first-child {
  font-size: 20px;
  line-height: 18px;
  margin-top: 0.5rem;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:first-child {
  margin-left: 0;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:nth-of-type(2) {
  margin-right: 0;
  position: relative;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:nth-of-type(2)::before, .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:nth-of-type(2)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:nth-of-type(2)::before {
  bottom: -10px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #267dcb;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn:nth-of-type(2)::after {
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #ffffff;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn .tetuduki_y,
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn .tetuduki_n {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn .tetuduki_y,
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_yn_wrap .tetuduki_yn .tetuduki_n {
    bottom: 1rem;
    font-size: 20px;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_q_img {
  width: 20%;
  margin: 1rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_q_warp .tetuduki_q_img {
    margin: 0 1rem;
    width: 30%;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .shorui-border {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 0.5rem;
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container {
    flex-direction: row;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container .tetuduki_hituyo_warp {
  position: relative;
  padding-left: 0px;
  padding-bottom: 5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container .tetuduki_hituyo_warp {
    background-color: #ffffff;
    width: 50%;
    padding: 0 15px 15px;
    margin: 0.5rem;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container .tetuduki_hituyo_warp .tetuduki_hituyo_title {
  margin: 10px 0 5px 0;
  font-weight: bold;
  text-indent: -1.6em;
  padding-left: 1.4em;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container .tetuduki_hituyo_warp .tetuduki_hituyo_title {
    text-indent: -1.8em;
  }
}
.page-tetuduki .tetuduki_check_content .tetuduki_check_content2 .tetuduki_hituyo_container .tetuduki_hituyo_warp .tetuduki_hituyo_title:before {
  content: "";
  height: 15px;
  width: 15px;
  display: inline-block;
  vertical-align: text-bottom;
  display: inline-block;
  background-color: black;
  margin-right: 6px;
}
.page-tetuduki .tetuduki_tuika_container h3::before {
  content: none;
}
.page-tetuduki .tetuduki_tuika_container {
  border: 2px solid #e4e4e4;
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_title {
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 2px solid #e4e4e4;
  padding: 10px 8px;
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap {
  display: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap {
    display: flex;
    margin: 5 15px 0;
  }
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap div {
  width: 90%;
  margin: 3px auto 0;
  padding: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap div {
    width: 33%;
  }
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap div:last-child {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap div:last-child {
    margin-bottom: 0;
  }
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap div span {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_wrap .tetuduki_tuika_card {
  width: 49%;
}
.page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_tyui div {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_tuika_container .tetuduki_tuika_tyui div {
    display: inline-block;
    padding: 1rem;
  }
}
.page-tetuduki .tetuduki_button {
  display: inline-block;
  border-radius: 5px;
  border: 1px solid red;
  padding: 0.5rem 5rem;
  margin: 1rem;
  background: url("../images/tetuduki/shorui/tel_icon.webp") no-repeat 22% 50%;
  background-size: 1rem;
  color: red !important;
  text-decoration: none !important;
}
.page-tetuduki .tuika-title {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tuika-red-txt {
    text-align: center;
  }
}
.page-tetuduki .tetuduki_tuika_tyui {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_tuika_tyui {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px) {
  .page-tetuduki {
    text-align: center;
  }
}
.page-tetuduki h2 {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki h2 {
    font-size: 30px;
  }
}
.page-tetuduki h3, .page-tetuduki h4.c-blue-border {
  text-align: left;
  margin-bottom: 0;
  font-size: 20px;
  padding-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .page-tetuduki h3, .page-tetuduki h4.c-blue-border {
    font-size: 30px;
  }
}
.page-tetuduki h4 {
  margin-bottom: 0;
  font-size: 16px;
  border-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki h4 {
    font-size: 20px;
  }
}
.page-tetuduki h4::after {
  border-bottom: 0px;
}
.page-tetuduki h4.c-blue-border {
  margin-bottom: 1em;
}
.page-tetuduki .breadcrumbs {
  border-top: 2px solid #e4e4e4;
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .breadcrumbs {
    text-align: left;
  }
}
.page-tetuduki .c-doc-check-tool {
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .c-doc-check-tool {
    padding-bottom: 30px;
  }
}
.page-tetuduki .faq_box_summary_txt,
.page-tetuduki .faq_box_detail_txt {
  font-size: 15px !important;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq_box_summary_txt,
  .page-tetuduki .faq_box_detail_txt {
    font-size: 16px !important;
  }
}
.page-tetuduki .main_title_wrap {
  position: relative;
}
.page-tetuduki .main_title_wrap .tetuduki-main {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .main_title_wrap .tetuduki-main {
    top: 50%;
  }
}
.page-tetuduki .main_title_wrap h1 {
  margin: 0;
  padding: 0;
}
.page-tetuduki__head {
  padding: 60px 0;
}
.page-tetuduki__head p {
  margin-bottom: 0;
  font-family: NotoSansRegular;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki__head p {
    font-family: NotoSansMedium;
    font-size: 16px;
    font-weight: 500;
    line-height: 23.68px;
    text-align: center;
  }
}
.page-tetuduki .pc-flex-only {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .pc-flex-only {
    display: flex !important;
  }
}
.page-tetuduki .show-regular-car {
  display: block;
}
.page-tetuduki .show-light-car {
  display: none;
}
.page-tetuduki .choice-tetuduki {
  padding: 0;
}
.page-tetuduki .choice-tetuduki__container {
  gap: 30px;
  margin: 0 auto;
  padding: 0 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .choice-tetuduki__container {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .choice-tetuduki__container {
    padding: 0;
  }
}
.page-tetuduki .choice-tetuduki a {
  font-family: NotoSansBold;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  display: inline-block;
  text-decoration: none;
}
.page-tetuduki .choice-tetuduki__regular-car {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .choice-tetuduki__regular-car {
    margin-bottom: 0;
  }
}
.page-tetuduki .choice-tetuduki__regular-car, .page-tetuduki .choice-tetuduki__procedure {
  color: #006EBB;
  background-color: #E6F2FF;
  padding: 13px 0 12px 15px;
  max-width: 100%;
  width: 100%;
  text-align: left;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .choice-tetuduki__regular-car, .page-tetuduki .choice-tetuduki__procedure {
    max-width: 505px;
    padding: 22px 0 23px 25px;
  }
}
.page-tetuduki .choice-tetuduki__regular-car:after, .page-tetuduki .choice-tetuduki__procedure:after {
  content: "";
  display: inline-block;
  border: 7px solid transparent;
  border-top: 10px solid #006EBB;
  border-bottom: 0 none;
  float: right;
  margin: 10px 15px 0 0;
  border-radius: 3px;
}
.page-tetuduki .tabs_tetuduki {
  padding: 0;
}
.page-tetuduki .tabs_tetuduki__container {
  border-top-left-radius: 12.42px;
  border-top-right-radius: 12.42px;
  display: flex;
  justify-content: center;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tabs_tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .tabs_tetuduki__container {
    max-width: 1040px;
    margin: 60px auto;
  }
}
.page-tetuduki .tabs_tetuduki__regular-car {
  cursor: pointer;
  border-top-left-radius: 12.42px;
}
.page-tetuduki .tabs_tetuduki__light-car {
  cursor: pointer;
  border-top-right-radius: 12.42px;
}
.page-tetuduki .tabs_tetuduki__regular-car, .page-tetuduki .tabs_tetuduki__light-car {
  background-color: #DBDBDB;
  color: #A6A6A6;
  padding: 8px 0 5px;
  max-width: 100%;
  width: 100%;
  text-align: center;
  border-bottom: 5px solid #267dcb;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tabs_tetuduki__regular-car, .page-tetuduki .tabs_tetuduki__light-car {
    max-width: 520px;
    padding: 16px 0 13px;
  }
}
.page-tetuduki .tabs_tetuduki__regular-car p, .page-tetuduki .tabs_tetuduki__light-car p {
  margin: 0;
  padding: 0;
  font-family: NotoSansSemiBold;
  font-size: 16px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tabs_tetuduki__regular-car p, .page-tetuduki .tabs_tetuduki__light-car p {
    font-size: 20px;
  }
}
.page-tetuduki .tabs_tetuduki .active-right {
  color: #ffffff;
  background-color: #267dcb;
  border-top-right-radius: 12.42px;
}
.page-tetuduki .tabs_tetuduki .active-left {
  color: #ffffff;
  background-color: #267dcb;
  border-top-left-radius: 12.42px;
}
.page-tetuduki .category-tetuduki {
  margin-top: 0;
  background-color: #e4e4e4;
  text-align: left;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .category-tetuduki {
    background-color: #ffffff;
    padding: 0;
  }
}
.page-tetuduki .category-tetuduki .l-container {
  padding: 0;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .category-tetuduki .l-container {
    padding: 0 20px;
    margin: 0 auto;
    background-color: #ffffff;
  }
}
.page-tetuduki .category-tetuduki__wrap {
  padding: 10px 10px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .category-tetuduki__wrap {
    font-family: NotoSansRegular;
    padding: 0;
    max-width: 770px;
    width: 100%;
    margin: auto;
    font-size: 18px;
  }
}
.page-tetuduki .category-tetuduki__wrap__list {
  margin-bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 1rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .category-tetuduki__wrap__list {
    font-size: 16px;
    font-weight: normal;
  }
}
.page-tetuduki .category-tetuduki__wrap__list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
}
.page-tetuduki .category-tetuduki__wrap__list li::marker {
  font-weight: 700;
  line-height: 23px;
}
.page-tetuduki .category-tetuduki__wrap__list ol li {
  border-bottom: none;
}
.page-tetuduki .documents-tetuduki {
  padding: 0;
}
.page-tetuduki .documents-tetuduki__container {
  margin: 30px auto 44px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__container {
    margin: 60px auto 74px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .documents-tetuduki__container {
    padding: 0;
  }
}
.page-tetuduki .documents-tetuduki__title {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__title {
    margin-bottom: 30px;
  }
}
.page-tetuduki .documents-tetuduki__title h2 {
  color: #006EBB;
  font-family: NotoSansBold;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__title h2 {
    line-height: 74.91px;
    font-size: 5.5vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .documents-tetuduki__title h2 {
    font-size: 55px;
  }
}
.page-tetuduki .documents-tetuduki__box {
  background-color: #E6F2FF;
  display: block;
  margin: 0 20px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__box {
    padding: 30px;
    text-align: center;
    display: flex;
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .documents-tetuduki__box {
    width: 1040px;
    margin: 0 auto;
  }
}
.page-tetuduki .documents-tetuduki__group {
  flex: 1 1 auto;
}
.page-tetuduki .documents-tetuduki__group__title {
  border-radius: 2px;
  font-family: NotoSansRegular;
  line-height: 21.79px;
  text-align: center;
  background: #267dcb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group__title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.page-tetuduki .documents-tetuduki__group .first-title {
  width: 146px;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group .first-title {
    width: 164px;
    height: 30px;
  }
}
.page-tetuduki .documents-tetuduki__group .second-title {
  width: 188px;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group .second-title {
    width: 212px;
    height: 30px;
  }
}
.page-tetuduki .documents-tetuduki__group .third-title {
  width: 132px;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group .third-title {
    width: 148px;
    height: 30px;
  }
}
.page-tetuduki .documents-tetuduki__group__content {
  display: flex;
  gap: 30px;
  align-items: center;
}
.page-tetuduki .documents-tetuduki__group__content__title {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 21.79px;
  text-align: left;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group__content__title {
    letter-spacing: normal;
    font-size: 16px;
    line-height: 19.07px;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group__content img {
    max-width: 126px;
    width: 100%;
  }
}
.page-tetuduki .documents-tetuduki__group__content:nth-child(2), .page-tetuduki .documents-tetuduki__group__content:nth-child(3), .page-tetuduki .documents-tetuduki__group__content:nth-child(4) {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .documents-tetuduki__group__content:nth-child(2), .page-tetuduki .documents-tetuduki__group__content:nth-child(3), .page-tetuduki .documents-tetuduki__group__content:nth-child(4) {
    margin: 30px 0;
  }
}
.page-tetuduki .use-haishal-tetuduki {
  padding: 0;
}
.page-tetuduki .use-haishal-tetuduki__container {
  background-color: #FFF0F0;
  position: relative;
  display: block;
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__container {
    display: flex;
    justify-content: center;
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .use-haishal-tetuduki__container {
    max-width: 1040px;
    margin: 0 auto;
  }
}
.page-tetuduki .use-haishal-tetuduki__title {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
}
.page-tetuduki .use-haishal-tetuduki__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 18px;
  padding: 15px 15px 28px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__box {
    padding: 30px 0 34px;
    flex-direction: row;
    gap: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__box__text {
    margin: 0 39px 0 15px;
  }
}
.page-tetuduki .use-haishal-tetuduki__box__text p {
  margin-bottom: 0;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__box__text p {
    font-family: NotoSansMedium;
    font-size: 16px;
    line-height: 21px;
    text-align: left;
  }
}
.page-tetuduki .use-haishal-tetuduki__box__text span {
  color: #FF4D4D;
}
.page-tetuduki .use-haishal-tetuduki__box__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__box__button {
    text-decoration: none;
    color: #666666;
    border: solid 1.5px #666666;
    background-color: #FFFFFF;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666666;
    position: relative;
    width: 100%;
    max-width: 255px;
    margin: 0;
    top: 0;
  }
}
.page-tetuduki .use-haishal-tetuduki__box__button::after {
  position: absolute;
  content: "";
  display: inline-block;
  border: 7px solid transparent;
  border-top: 10px solid #666666;
  border-bottom: 0 none;
  border-radius: 3px;
  top: 14px;
  right: 15px;
}
.page-tetuduki .use-haishal-tetuduki__box__button-sp {
  text-decoration: none;
  color: #666666;
  border: solid 1.5px #666666;
  background-color: #FFFFFF;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666666;
  position: relative;
  top: -16px;
  margin: 0 auto;
  max-width: 304px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .use-haishal-tetuduki__box__button-sp {
    display: none;
  }
}
.page-tetuduki .use-haishal-tetuduki__box__button-sp::after {
  position: absolute;
  content: "";
  display: inline-block;
  border: 7px solid transparent;
  border-top: 10px solid #666666;
  border-bottom: 0 none;
  border-radius: 3px;
  top: 14px;
  right: 15px;
}
.page-tetuduki .delete-registration-tetuduki {
  padding: 0;
}
.page-tetuduki .delete-registration-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .delete-registration-tetuduki__container {
    max-width: 1040px;
    margin: 60px auto;
  }
}
.page-tetuduki .delete-registration-tetuduki__title {
  color: #267DCB;
}
.page-tetuduki .delete-registration-tetuduki__title h3 {
  font-family: NotoSansBold;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
  letter-spacing: normal;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__title h3 {
    padding-bottom: 17px;
    line-height: 24.52px;
  }
}
.page-tetuduki .delete-registration-tetuduki hr {
  border-top: 3px solid #CCCCCC;
  position: relative;
  margin: 0;
}
.page-tetuduki .delete-registration-tetuduki hr::before {
  content: "";
  border-bottom: 3px solid #267DCB;
  position: absolute;
  z-index: 1;
  left: 0;
  top: -3px;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki hr::before {
    width: 160px;
  }
}
.page-tetuduki .delete-registration-tetuduki .last-hr::before {
  top: -2px;
}
.page-tetuduki .delete-registration-tetuduki__content {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin: 20px auto;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__content {
    font-family: NotoSansRegular;
    font-size: 16px;
    line-height: 21.79px;
    text-align: left;
    margin: 30px auto;
  }
}
.page-tetuduki .delete-registration-tetuduki__content span {
  font-family: NotoSansBold;
  padding-bottom: 0.8em;
  background-size: 200% 0.5em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 50%);
  background-position: left -100% center;
}
.page-tetuduki .delete-registration-tetuduki__content span:nth-child(4), .page-tetuduki .delete-registration-tetuduki__content span:nth-child(6), .page-tetuduki .delete-registration-tetuduki__content span:last-child {
  background-image: unset;
}
.page-tetuduki .delete-registration-tetuduki__box {
  background-color: #E6F2FF;
  padding: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__box {
    padding: 20px;
    margin-bottom: 60px;
  }
}
.page-tetuduki .delete-registration-tetuduki__box__title {
  border-radius: 2px;
  background-color: #006EBB;
  width: 132px;
  height: 23px;
  margin-bottom: 15px;
  background: #006EBB;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: NotoSansRegular;
  line-height: 21.79px;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__box__title {
    margin-bottom: 8px;
    font-size: 16px;
    width: 148px;
    height: 30px;
  }
}
.page-tetuduki .delete-registration-tetuduki__box__text-first {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__box__text-first {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .delete-registration-tetuduki__box__text-second {
  font-family: NotoSansMedium;
  font-size: 11px;
  line-height: 14.98px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .delete-registration-tetuduki__box__text-second {
    font-size: 13px;
    line-height: 17.71px;
    text-align: left;
  }
}
.page-tetuduki .add-dashed-border {
  border-bottom: #bfbfbf dashed 2px;
}
.page-tetuduki .faq-tetuduki {
  padding: 0;
}
.page-tetuduki .faq-tetuduki .faq {
  padding: 0;
}
.page-tetuduki .faq-tetuduki .faq__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__container {
    padding: 60px 20px 0;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .faq-tetuduki .faq__container {
    padding: 60px 0 0;
  }
}
.page-tetuduki .faq-tetuduki .faq__header {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__header {
    max-width: 800px;
    margin-bottom: 30px;
  }
}
.page-tetuduki .faq-tetuduki .faq__header h2 {
  margin: 0;
  color: #006EBB;
  font-family: NotoSansBold;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__header h2 {
    font-size: 5.4vw;
    line-height: 74.91px;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .faq-tetuduki .faq__header h2 {
    font-size: 55px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group {
  border: 1px solid black;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group:not(:first-child) {
    margin-top: 20px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-question {
    margin: auto 30px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content {
  display: flex;
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-question__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content__icon-add {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-question__content__icon-add {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content__icon-sub {
  width: 14px;
  height: 14px;
  margin: 3px 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-question__content__icon-sub {
    width: 21px;
    height: 21px;
    margin: 10px 0;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content h3 {
  margin: 0;
  font-size: unset;
  text-align: left;
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content p {
  font-family: NotoSansBold;
  color: #333333;
  line-height: normal;
  font-style: normal;
  font-size: 14px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-question__content p {
    font-size: 24px;
    padding-top: 5px;
    line-height: 32.69px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-question__content__icon-sub {
  display: none;
}
.page-tetuduki .faq-tetuduki .faq__group__box-answer {
  padding: 20px 0;
  margin: auto 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-answer {
    margin: auto 30px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-answer__content {
  text-align: left;
  display: flex;
}
.page-tetuduki .faq-tetuduki .faq__group__box-answer__content img {
  margin-right: 6px;
  width: 21px;
  height: 21px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-answer__content img {
    margin-right: 15px;
    width: 42px;
    height: 42px;
  }
}
.page-tetuduki .faq-tetuduki .faq__group__box-answer__content p {
  font-family: NotoSansRegular;
  color: #333333;
  line-height: normal;
  font-style: normal;
  font-size: 14px;
  margin: 0;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .faq-tetuduki .faq__group__box-answer__content p {
    font-size: 18px;
    margin: 0;
  }
}
.page-tetuduki .procedure-tetuduki {
  padding: 0;
}
.page-tetuduki .procedure-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__container {
    max-width: 1040px;
    margin: 60px auto;
  }
}
.page-tetuduki .procedure-tetuduki__title {
  text-align: center;
  margin-bottom: 20px;
}
.page-tetuduki .procedure-tetuduki__title h2 {
  color: #006EBB;
  font-family: NotoSansBold;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__title h2 {
    font-size: 5.5vw;
    line-height: 74.91px;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .procedure-tetuduki__title h2 {
    font-size: 55px;
  }
}
.page-tetuduki .procedure-tetuduki__box {
  position: relative;
  background-color: #E6F2FF;
  padding: 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box {
    padding: 30px;
    margin-bottom: 30px;
  }
}
.page-tetuduki .procedure-tetuduki__box__title {
  border-radius: 2px;
  background-color: #006EBB;
  color: white;
  width: 146px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: 20px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__title {
    margin: 0 auto 20px;
    width: 182px;
    height: 33px;
  }
}
.page-tetuduki .procedure-tetuduki__box__title h3 {
  padding: 0;
  font-family: NotoSansRegular;
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__title h3 {
    font-size: 18px;
    line-height: 24.52px;
  }
}
.page-tetuduki .procedure-tetuduki__box__title2 {
  background-color: #006EBB;
  color: white;
  width: 216px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  letter-spacing: normal;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__title2 {
    margin: 0 auto 20px;
    width: 272px;
    height: 33px;
  }
}
.page-tetuduki .procedure-tetuduki__box__title2 h3 {
  padding: 0;
  font-family: NotoSansRegular;
  font-size: 14px;
  font-weight: 400;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__title2 h3 {
    font-size: 18px;
    line-height: 24.52px;
  }
}
.page-tetuduki .procedure-tetuduki__box .light_car {
  background-color: #006EBB;
  color: white;
  width: 258px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box .light_car {
    margin: 0 auto 20px;
    width: 326px;
    height: 33px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex {
  position: relative;
  background-color: white;
  display: block;
  padding: 15px 26px 15px 11px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex {
    padding: 30px 15px;
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex {
    padding: 30px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex hr {
  background-color: #e6f2ff;
  height: 4px;
  position: absolute;
  border: none;
  z-index: 0;
  left: 39px;
  right: unset;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex hr {
    height: 4px;
    position: absolute;
    top: 95px;
    border: none;
    z-index: 0;
    left: 0;
    right: 0;
    transform: unset;
    transform-origin: unset;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex hr {
    width: 745px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex__hr-first {
  top: 180px;
  width: 304px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex__hr-first {
    width: 70vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex__hr-first {
    width: 745px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex__hr-second {
  top: 145px;
  width: 225px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex__hr-second {
    width: 62.083vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex__hr-second {
    width: 745px;
  }
}
.page-tetuduki .procedure-tetuduki__box .change-margin {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box .change-margin {
    margin-left: 10px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex2 {
  position: relative;
  background-color: white;
  display: block;
  padding: 15px 26px 15px 11px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex2 {
    padding: 82px 15px 30px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex2 {
    padding: 82px 0 30px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex2 hr {
  background-color: #e6f2ff;
  height: 4px;
  position: absolute;
  border: none;
  z-index: 0;
  left: 39px;
  right: unset;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex2 hr {
    height: 4px;
    position: absolute;
    top: 150px;
    border: none;
    z-index: 0;
    left: -20px;
    right: 0;
    transform: unset;
    transform-origin: unset;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex2__hr-first {
  top: 140px;
  width: 255px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex2__hr-first {
    width: 529px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex2__hr-second {
  top: 180px;
  width: 320px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex2__hr-second {
    top: 165px;
    width: 21vw;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex2__hr-second {
    width: 194px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex3 {
  position: relative;
  background-color: white;
  display: block;
  padding: 15px 26px 15px 11px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex3 {
    padding: 82px 128px 30px;
    display: flex;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex3__hr-first {
  background-color: #e6f2ff;
  height: 4px;
  position: absolute;
  top: 100px;
  width: 155px;
  border: none;
  z-index: 0;
  left: 39px;
  right: unset;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex3__hr-first {
    height: 4px;
    position: absolute;
    top: 150px;
    width: 40.083vw;
    border: none;
    z-index: 0;
    left: 0;
    right: 0;
    transform: unset;
    transform-origin: unset;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex3__hr-first {
    width: 529px;
  }
}
.page-tetuduki .procedure-tetuduki__box__flex3__hr-second {
  background-color: #e6f2ff;
  height: 4px;
  position: absolute;
  top: 100px;
  width: 155px;
  border: none;
  z-index: 0;
  left: 37px;
  right: unset;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__flex3__hr-second {
    height: 4px;
    position: absolute;
    top: 150px;
    width: 44.083vw;
    border: none;
    z-index: 0;
    left: 0;
    right: 0;
    transform: unset;
    transform-origin: unset;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .procedure-tetuduki__box__flex3__hr-second {
    width: 529px;
  }
}
.page-tetuduki .procedure-tetuduki__box__text-head-sp-first {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin: 13px auto 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__text-head-sp-first {
    display: none;
  }
}
.page-tetuduki .procedure-tetuduki__box__text-head-sp-second {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin: 21px auto 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__text-head-sp-second {
    display: none;
  }
}
.page-tetuduki .procedure-tetuduki__box__text-head {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  top: 30px;
  font-family: NotoSansMedium;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__text-head {
    display: block;
  }
}
.page-tetuduki .procedure-tetuduki__box__content {
  flex: 1;
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}
.page-tetuduki .procedure-tetuduki__box__content:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content {
    margin-bottom: 0;
    display: block;
  }
}
.page-tetuduki .procedure-tetuduki__box__content__number {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content__number {
    display: block;
    background-color: #006EBB;
    color: white;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.page-tetuduki .procedure-tetuduki__box__content__text1 {
  color: #808080;
  font-family: NotoSansBold;
  font-size: 10px;
  line-height: 13.62px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content__text1 {
    margin-bottom: 21px;
    font-size: 16.85px;
    line-height: 22.95px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content .w-168 {
  width: 168px;
}
.page-tetuduki .procedure-tetuduki__box__content__text2 {
  max-width: 170px;
  width: 100%;
  letter-spacing: normal;
  font-family: NotoSansMedium;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .procedure-tetuduki__box__content__text2 {
    font-size: 13px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content__text2 span {
  margin-left: -12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content__text2 span {
    display: none;
  }
}
.page-tetuduki .procedure-tetuduki__box__content__img {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content__img {
    margin: 20px auto 8px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content div:first-child {
  width: 55px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content div:first-child {
    margin-bottom: 7px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content:nth-child(2n+1) {
    margin: 0 15px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2 {
  flex: 1;
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}
.page-tetuduki .procedure-tetuduki__box__content2:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2 {
    margin-bottom: 0;
    display: block;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2__number {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2__number {
    display: block;
    background-color: #006EBB;
    color: white;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2:not(.page-tetuduki .procedure-tetuduki__box__content2:first-child) {
  flex: unset;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2:nth-child(4) {
    margin: 0 15px;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2:nth-child(5) {
    margin-right: 15px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2__text1 {
  color: #808080;
  font-family: NotoSansBold;
  font-size: 10px;
  line-height: 13.62px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2__text1 {
    margin-bottom: 21px;
    font-size: 16.85px;
    line-height: 22.95px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2__text2 {
  max-width: 174px;
  width: 100%;
  letter-spacing: normal;
  font-family: NotoSansMedium;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
  margin-bottom: 0;
}
.page-tetuduki .procedure-tetuduki__box__content2__text2 span {
  margin-left: -12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2__text2 span {
    display: none;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2__img {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2__img {
    margin: 20px auto 8px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content2 div:first-child {
  width: 55px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content2 div:first-child {
    margin-bottom: 7px;
    width: auto;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3 {
  flex: 1;
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}
.page-tetuduki .procedure-tetuduki__box__content3:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3 {
    margin-bottom: 0;
    display: block;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3__number {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3__number {
    display: block;
    background-color: #006EBB;
    color: white;
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3__text1 {
  color: #808080;
  font-family: NotoSansBold;
  font-size: 10px;
  line-height: 13.62px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3__text1 {
    margin-bottom: 21px;
    font-size: 16.85px;
    line-height: 22.95px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3__text2 {
  font-family: NotoSansMedium;
  font-size: 13px;
  line-height: 17.71px;
  text-align: left;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}
.page-tetuduki .procedure-tetuduki__box__content3__text2 span {
  margin-left: -12px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3__text2 span {
    display: none;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3__img {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3__img {
    margin: 20px auto 8px;
  }
}
.page-tetuduki .procedure-tetuduki__box__content3 div:first-child {
  width: 55px;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__content3 div:first-child {
    margin-bottom: 7px;
    width: auto;
  }
}
.page-tetuduki .procedure-tetuduki__box__icon-plus-first {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  text-align: center;
  top: 59%;
}
@media screen and (min-width: 400px) {
  .page-tetuduki .procedure-tetuduki__box__icon-plus-first {
    top: 58%;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__icon-plus-first {
    top: 403px;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .procedure-tetuduki__box__icon-plus-first {
    top: 405px;
  }
}
.page-tetuduki .procedure-tetuduki__box__icon-plus-second {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .procedure-tetuduki__box__icon-plus-second {
    top: 405px;
  }
}
.page-tetuduki .processing-free-tetuduki {
  padding: 0;
}
.page-tetuduki .processing-free-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .processing-free-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .processing-free-tetuduki__container {
    max-width: 700px;
    margin: 60px auto;
  }
}
.page-tetuduki .processing-free-tetuduki__title {
  text-align: center;
  margin-bottom: 20px;
}
.page-tetuduki .processing-free-tetuduki__title h2 {
  margin: 0;
  padding: 0;
}
.page-tetuduki .processing-free-tetuduki__title h2 img {
  height: auto;
}
.page-tetuduki .processing-free-tetuduki__title2 {
  text-align: center;
  margin: 30px auto 10px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .processing-free-tetuduki__title2 {
    margin: 60px auto 20px;
  }
}
.page-tetuduki .processing-free-tetuduki__box {
  display: flex;
  align-items: flex-end;
  gap: 45px;
  position: relative;
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .processing-free-tetuduki__box {
    max-width: 728px;
    width: auto;
  }
}
.page-tetuduki .processing-free-tetuduki__box__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 32%;
  text-align: CENTER;
  margin-left: -35px;
}
.page-tetuduki .step-tetuduki {
  padding: 0;
  background-color: #ffffff;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki {
    border-top: 4px solid #E0E0E0;
  }
}
.page-tetuduki .step-tetuduki h3 {
  margin: 0;
}
.page-tetuduki .step-tetuduki__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__container {
    padding: 60px 20px 0;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .step-tetuduki__container {
    padding: 60px 0 0;
  }
}
.page-tetuduki .step-tetuduki__title {
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 19.07px;
  text-align: center;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__title {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .step-tetuduki__title h2 img {
  width: auto;
  height: auto;
}
.page-tetuduki .step-tetuduki__group__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 20px auto;
}
.page-tetuduki .step-tetuduki__group__box:last-child {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box:last-child {
    margin: 30px auto;
  }
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box {
    margin: 30px auto;
  }
}
.page-tetuduki .step-tetuduki__group__box__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-tetuduki .step-tetuduki__group__box__icon img {
  position: relative;
  z-index: 1;
}
.page-tetuduki .step-tetuduki__group__box__icon hr {
  position: absolute;
  transform: rotate(0deg);
  border: 5px solid #E6F2FF;
  z-index: 0;
  height: 110%;
  top: 10px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box__icon hr {
    height: 100%;
    top: 39px;
    left: 3%;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .step-tetuduki__group__box__icon hr {
    height: 145px;
    top: 25px;
    left: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .step-tetuduki__group__box__icon hr {
    top: 45px;
    left: 23px;
  }
}
.page-tetuduki .step-tetuduki__group__box__text {
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 65%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box__text {
    margin-left: 30px;
    padding-right: 105px;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .step-tetuduki__group__box__text {
    flex-grow: 1;
  }
}
.page-tetuduki .step-tetuduki__group__box__text p:first-child {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box__text p:first-child {
    margin-bottom: 10px;
  }
}
.page-tetuduki .step-tetuduki__group__box__text p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__group__box__text p:not(:first-child) {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .step-tetuduki__group__box__img {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-tetuduki .step-tetuduki__group__box__img img {
  max-width: 100%;
  height: auto;
}
.page-tetuduki .step-tetuduki__content img {
  width: 100%;
}
.page-tetuduki .step-tetuduki__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) {
  .page-tetuduki .step-tetuduki__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.page-tetuduki .step-tetuduki__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.page-tetuduki .step-tetuduki__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.page-tetuduki .step-tetuduki__btn p img {
  float: right;
  margin-right: 20px;
}
.page-tetuduki .step-tetuduki__box-container {
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .step-tetuduki__box-container {
    padding: 0;
  }
}
.page-tetuduki .step-tetuduki__box {
  max-width: 1040px;
  margin: 0 auto;
  background-color: #E6F2FF;
  padding: 15px;
  margin: 20px auto 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__box {
    padding: 20px;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .step-tetuduki__box {
    margin: 0 auto 30px;
  }
}
.page-tetuduki .step-tetuduki__box__title {
  background-color: #006EBB;
  width: 132px;
  height: 23px;
  margin-bottom: 15px;
  background: #006EBB;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: NotoSansRegular;
  line-height: 21.79px;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__box__title {
    margin-bottom: 8px;
    font-size: 16px;
    width: 148px;
    height: 30px;
  }
}
.page-tetuduki .step-tetuduki__box__text-first {
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__box__text-first {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .step-tetuduki__box__text-first span {
  color: #FF4D4D;
  font-family: NotoSansBold;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__box__text-first span {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .step-tetuduki__box__text-second {
  font-family: NotoSansRegular;
  font-size: 11px;
  line-height: 14.98px;
  text-align: left;
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .step-tetuduki__box__text-second {
    margin-top: 0;
    font-size: 13px;
    line-height: 17.71px;
  }
}
.page-tetuduki .learn-more-tetuduki {
  padding: 20px;
  margin: 30px auto 20px;
  background-color: #e4e4e4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .learn-more-tetuduki {
    margin: 60px auto;
    background-color: #ffffff;
    padding: 0;
  }
}
.page-tetuduki .learn-more-tetuduki .l-container {
  padding: 0;
  background-color: #ffffff;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .learn-more-tetuduki .l-container {
    padding: 0 20px;
    background-color: #ffffff;
  }
}
.page-tetuduki .learn-more-tetuduki__wrap {
  font-family: NotoSansRegular;
  padding: 10px 10px 20px 10px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .learn-more-tetuduki__wrap {
    padding: 0;
    max-width: 770px;
    width: 100%;
    margin: auto;
  }
}
.page-tetuduki .learn-more-tetuduki__wrap h2 {
  margin-left: 5px;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .learn-more-tetuduki__wrap h2 {
    margin-left: 0;
    font-size: 18px;
    line-height: 23px;
  }
}
.page-tetuduki .learn-more-tetuduki__wrap__list {
  font-family: NotoSansRegular;
  list-style-type: none;
  margin-bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 15px;
  font-size: 15px;
}
.page-tetuduki .learn-more-tetuduki__wrap__list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
  position: relative;
  padding-right: 20px;
}
.page-tetuduki .learn-more-tetuduki__wrap__list__first {
  color: #B3B3B3 !important;
}
.page-tetuduki .learn-more-tetuduki__wrap__list__first li::after {
  border-left: 8px solid #B3B3B3 !important;
}
.page-tetuduki .learn-more-tetuduki__wrap__list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 9px;
  border-left: 8px solid #006EBB;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 1px;
}
.page-tetuduki .learn-more-tetuduki__wrap__list ol li {
  border-bottom: none;
}
.page-tetuduki .learn-more-tetuduki .learn_more_active {
  color: #B3B3B3 !important;
}
.page-tetuduki .learn-more-tetuduki .learn_more_active li::after {
  border-left: 8px solid #B3B3B3 !important;
}
.page-tetuduki .refund-tetuduki {
  padding: 0;
}
.page-tetuduki .refund-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .refund-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .page-tetuduki .refund-tetuduki__container {
    max-width: 1040px;
    margin: 60px auto 60px;
  }
}
.page-tetuduki .refund-tetuduki__title {
  text-align: center;
}
.page-tetuduki .refund-tetuduki__title h2 {
  color: #006EBB;
  margin-bottom: 20px !important;
  font-family: NotoSansBold;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .refund-tetuduki__title h2 {
    margin-bottom: 30px !important;
    font-size: 55px;
    line-height: 74.91px;
  }
}
.page-tetuduki .refund-tetuduki__first-text {
  font-family: NotoSansBold;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  color: #006EBB;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .refund-tetuduki__first-text {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 24.52px;
  }
}
.page-tetuduki .refund-tetuduki__first-text::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #006EBB;
  border-radius: 50%;
  margin-right: 6px;
}
.page-tetuduki .refund-tetuduki__second-text {
  font-family: NotoSansMedium;
  font-size: 14px;
  line-height: 19.07px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .refund-tetuduki__second-text {
    font-size: 16px;
    line-height: 21.79px;
  }
}
.page-tetuduki .refund-tetuduki__box {
  margin: 0 auto 30px;
  max-width: 542px;
  width: 100%;
  letter-spacing: 0px;
}
.page-tetuduki .refund-tetuduki__box:last-child {
  margin-bottom: 0;
}
.page-tetuduki section .title-wrap .sub, .page-tetuduki section .title-wrap .sub__blue, .page-tetuduki section .title-wrap .sub__black {
  font-size: 14px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .page-tetuduki section .title-wrap .sub, .page-tetuduki section .title-wrap .sub__blue, .page-tetuduki section .title-wrap .sub__black {
    letter-spacing: inherit;
    font-size: 16px;
  }
}
.page-tetuduki .tetuduki_border {
  border: 2px solid #e4e4e4;
}
.page-tetuduki .tetuduki_title {
  border-bottom: none !important;
}
.page-tetuduki .tetuduki_title_wrap img {
  height: 15rem !important;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_title_wrap img {
    height: 10rem !important;
  }
}
.page-tetuduki .tetuduki_nagare {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_nagare {
    width: 30%;
  }
}
.page-tetuduki .tetuduki_card_wrap {
  flex-wrap: wrap;
  display: none;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_card_wrap {
    display: flex;
    justify-content: start;
  }
  .page-tetuduki .tetuduki_card_wrap p {
    font-size: 16px;
  }
}
.page-tetuduki .tetuduki_card_wrap_sp {
  flex-wrap: wrap;
  display: flex;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_card_wrap_sp {
    display: none;
  }
}
.page-tetuduki .tetuduki_card {
  padding: 0.8rem;
  margin: 0.2rem;
  flex: 0 0 32%;
  height: 150px;
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .tetuduki_card {
    flex: 0 0 19%;
  }
}
.page-tetuduki .tetuduki_card_sp {
  background-color: #ffffff;
  padding: 0 1rem;
  margin: 0.8rem;
  flex: 90%;
  overflow: hidden;
}
.page-tetuduki .tetuduki_card_sp > div:last-child {
  border: none;
}
.page-tetuduki .tetuduki_card_number {
  color: #ffffff;
  background: #267dcb;
  margin-right: 0.5rem;
  width: fit-content;
  padding: 2px 10px;
  height: 28px;
  text-align: center;
}
.page-tetuduki .tetuduki_card_text {
  display: block;
  overflow: auto;
}
.page-tetuduki .tetuduki_card_content_sp {
  padding: 0.5rem 0;
  margin: 0.5rem 0;
  border-bottom: 2px solid #e4e4e4;
  border-bottom-style: dotted;
  display: flex;
  align-items: center;
}
.page-tetuduki .tetuduki_card_content {
  background: #ffffff;
  position: relative;
  padding: 6%;
  padding-top: 1.6rem;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.page-tetuduki .tetuduki_card_content > span {
  position: absolute;
  top: -0.5rem;
  color: #ffffff;
  background: #267dcb;
  padding: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_card_content > span {
    left: 50%;
  }
}
.page-tetuduki .tetuduki_btn_wrap {
  text-align: center;
}
.page-tetuduki .tetuduki_btn_wrap div {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-tetuduki .tetuduki_btn_wrap div:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_btn_wrap div {
    width: 49%;
    display: inline-block;
  }
}
.page-tetuduki .tetuduki_btn_wrap a {
  letter-spacing: -0.08em;
  text-align: left;
  padding-left: 6px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_btn_wrap a {
    min-width: 336px;
  }
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .tetuduki_btn_wrap a {
    text-align: center;
    letter-spacing: inherit;
  }
}
.page-tetuduki .tetuduki_touroku {
  position: relative;
  border: 2px solid #e4e4e4;
  border-radius: 5px;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 1000px) {
  .page-tetuduki .tetuduki_touroku {
    width: 46%;
  }
}
.page-tetuduki .tetuduki_touroku:first-child {
  margin-bottom: 1rem;
}
.page-tetuduki .tetuduki_touroku .tetuduki_touroku_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #267dcb;
  color: #ffffff;
  border-radius: 5px 5px 0 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_touroku .tetuduki_touroku_title {
    font-size: 20px;
  }
}
.page-tetuduki .tetuduki_touroku p {
  padding: 2.4rem 1rem 1rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_touroku p {
    padding: 1.5rem;
    height: 222px;
    text-align: left;
    padding-top: 3rem;
  }
}
.page-tetuduki .tetuduki_meritto,
.page-tetuduki .tetuduki_demeritto {
  padding-top: 20px;
}
.page-tetuduki .tetuduki_meritto {
  background: #fffcf5;
  position: relative;
  border: 1px solid #b19349;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_meritto {
    height: auto;
    margin-top: 60px;
  }
}
.page-tetuduki .tetuduki_demeritto {
  background: #e4e4e4;
  position: relative;
  border-radius: 5px;
  border: 1px solid;
}
.page-tetuduki .tetuduki_meritto_img {
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_meritto_img {
    top: -26px;
    max-width: 300px;
  }
}
.page-tetuduki .tetuduki_img_container {
  margin-top: 2rem;
  display: inline-block;
  padding: 0 1rem 1rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-tetuduki .tetuduki_img_container {
    margin-top: 0;
    font-size: 16px;
  }
}
.page-tetuduki .tetuduki_img_container img {
  width: 20px;
}

/*=================================================
書類テンプレート
==================================================-*/
.p-template-refund {
  overflow: hidden;
}
.p-template-refund .only_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-template-refund .only_pc {
    display: block;
  }
}
.p-template-refund .only_sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-template-refund .only_sp {
    display: none;
  }
}
.p-template-refund .breadcrumbs {
  background-color: #ffffff;
  border-top: 2px solid #e4e4e4;
}
.p-template-refund #toc-range .l-container {
  padding: 20px 15px;
  margin-bottom: 0.3rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-template-refund #toc-range .l-container {
    padding: 50px 6%;
    margin-bottom: 30px;
    width: 90%;
  }
  .p-template-refund #toc-range .l-container:last-child {
    margin-bottom: 0;
  }
}
.p-template-refund #toc-range .l-container:last-child {
  margin-bottom: 0;
}
.p-template-refund .bnr-contact .l-container {
  padding: 0 5%;
}
.p-template-refund .bnr-contact__pc {
  padding-top: 0;
  padding-bottom: 20px !important;
}
@media screen and (min-width: 768px) {
  .p-template-refund .bnr-contact__pc {
    padding-bottom: 30px !important;
  }
}
.p-template-refund .bnr-contact__pc img {
  max-width: 800px !important;
}
@media screen and (min-width: 768px) {
  .p-template-refund .bnr-contact__pc p {
    top: 30%;
    left: 28%;
    font-size: 5.5vw;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .bnr-contact__pc p {
    top: 35%;
    left: 28%;
    font-size: 52px;
  }
}
.p-template-refund .line.head {
  height: 2rem;
}
.p-template-refund {
  /* リード文
  ----------------------------------------*/
}
.p-template-refund__read {
  background-image: url(../images/tt/bg.webp);
  background-size: 100% 100%;
  position: relative;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 24px;
  font-family: NotoSans;
}
.p-template-refund__read h1 {
  margin: 0;
  padding: 0;
}
.p-template-refund__read > div {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-template-refund__read > div {
    width: 80%;
    max-width: 800px;
    margin: auto;
  }
}
.p-template-refund__read__txt {
  height: auto;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-refund__read__txt {
    width: 80%;
  }
}
.p-template-refund__read__txt p {
  height: 100%;
  color: #ffffff;
  padding: 28px 0 38px;
  margin: 0;
  position: relative;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .p-template-refund__read__txt p {
    font-size: 20px;
    padding: 22px 0 34px;
  }
}
.p-template-refund__read img {
  position: absolute;
  top: 107px;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40px;
}
@media screen and (min-width: 768px) {
  .p-template-refund__read img {
    max-width: 57px;
    top: 115px;
  }
}
.p-template-refund__head {
  padding: 60px 0;
}
.p-template-refund__head p {
  margin-bottom: 0;
  font-family: NotoSansRegular;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund__head p {
    font-size: 16px;
    font-family: NotoSansMedium;
    line-height: 23.68px;
    text-align: center;
  }
}
.p-template-refund {
  /* 目次
  ----------------------------------------*/
}
.p-template-refund .category-tetuduki {
  margin-top: 0;
  background-color: #e4e4e4;
  text-align: left;
  padding: 20px 20px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .category-tetuduki {
    background-color: #ffffff;
    padding: 0;
  }
}
.p-template-refund .category-tetuduki .l-container {
  padding: 0;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-template-refund .category-tetuduki .l-container {
    padding: 0 20px;
    margin: 0 auto;
    background-color: #ffffff;
  }
}
.p-template-refund .category-tetuduki__wrap {
  padding: 10px 10px 20px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .category-tetuduki__wrap {
    font-family: NotoSansRegular;
    padding: 0;
    max-width: 770px;
    width: 100%;
    margin: auto;
    font-size: 18px;
  }
}
.p-template-refund .category-tetuduki__wrap__list {
  margin-bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 1rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-template-refund .category-tetuduki__wrap__list {
    font-size: 16px;
  }
}
.p-template-refund .category-tetuduki__wrap__list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
}
.p-template-refund .category-tetuduki__wrap__list li::marker {
  font-weight: 700;
  line-height: 23px;
}
.p-template-refund .category-tetuduki__wrap__list ol li {
  border-bottom: none;
}
.p-template-refund .why-tetuduki__container {
  padding: 0 20px;
  margin: 30px auto 0;
  max-width: 1053px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__container {
    margin: 60px auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-refund .why-tetuduki__container {
    padding: 0;
  }
}
.p-template-refund .why-tetuduki__container h3 {
  width: fit-content;
  position: relative;
  text-align: left;
  color: #006ebb;
  margin: 20px auto;
  border-bottom: 3px solid #cccccc;
  padding-bottom: 5px;
  width: 100%;
  font-family: NotoSansBold;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__container h3 {
    margin: 30px auto;
    padding-bottom: 17px;
    font-size: 18px;
    line-height: 24.52px;
  }
}
.p-template-refund .why-tetuduki__container h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-bottom: 3px solid #006ebb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__container h3::before {
    width: 160px;
  }
}
.p-template-refund .why-tetuduki__title h2 {
  font-family: NotoSansRegular;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #006ebb;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__title h2 {
    margin: 30px 0;
    font-size: 40px;
    line-height: 55px;
  }
}
.p-template-refund .why-tetuduki__content {
  font-family: NotoSansRegular;
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content {
    font-family: NotoSansMedium;
  }
}
.p-template-refund .why-tetuduki__content a {
  color: #333333;
}
.p-template-refund .why-tetuduki__content a:link {
  color: #333333;
}
.p-template-refund .why-tetuduki__content div {
  text-align: left;
}
.p-template-refund .why-tetuduki__content .center-text {
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .center-text {
    text-align: center;
  }
}
.p-template-refund .why-tetuduki__content p {
  margin: 0;
}
.p-template-refund .why-tetuduki__content .caution-text {
  color: #fe0000;
}
.p-template-refund .why-tetuduki__content .image-grid {
  display: block;
  flex-wrap: wrap;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .image-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .why-tetuduki__content .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-template-refund .why-tetuduki__content .image-grid a {
  width: 100%;
  height: 108px;
  box-sizing: border-box;
  padding: 5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .image-grid a {
    width: 50%;
    height: 180px;
  }
}
.p-template-refund .why-tetuduki__content .image-grid a img {
  width: 95%;
  position: relative;
  z-index: -1;
}
.p-template-refund .why-tetuduki__content .description {
  margin-top: 15px;
  background-color: #e6f2ff;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .description {
    padding: 20px 5px 20px 20px;
  }
}
.p-template-refund .why-tetuduki__content .description__title {
  border-radius: 2px;
  background-color: #006EBB;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  width: 164px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .description__title {
    padding: 4px 0;
    width: 164px;
    height: 30px;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .why-tetuduki__content .description__title p {
  margin: 0;
}
.p-template-refund .why-tetuduki__content .description__group {
  text-align: left;
  font-family: NotoSansRegular;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .description__group {
    font-family: NotoSansMedium;
  }
}
.p-template-refund .why-tetuduki__content .description__group li {
  display: block;
}
.p-template-refund .why-tetuduki__content .description__group li::marker {
  font-size: 14px;
}
.p-template-refund .why-tetuduki__content .description__group span {
  color: #ff4d4d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .description__group span {
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .why-tetuduki__content .point {
  margin-top: 15px;
  background-color: #fff1c8;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .point {
    padding: 20px 5px 20px 20px;
  }
}
.p-template-refund .why-tetuduki__content .point__title {
  border-radius: 2px;
  background-color: #ff8b20;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  width: 76px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .point__title {
    padding: 4px 0;
    width: 84px;
    height: 30px;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .why-tetuduki__content .point__title p {
  margin: 0;
}
.p-template-refund .why-tetuduki__content .point__group {
  text-align: left;
}
.p-template-refund .why-tetuduki__content .point__group ul {
  list-style: disc;
  padding: 0 0 0 24px;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .point__group ul {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .why-tetuduki__content .point__group ul li::marker {
  font-size: 14px;
}
.p-template-refund .why-tetuduki__content .point__group ul span {
  color: #ff4d4d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-template-refund .why-tetuduki__content .point__group ul span {
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .why-tetuduki__content .point__group ul a {
  color: #333333;
}
.p-template-refund {
  /* CTA
  --------------------------------------*/
}
.p-template-refund .u-bg-white .bnr-contact__sp {
  padding-top: 0;
}
.p-template-refund .bnr-contact__sp {
  padding-top: 10px;
  padding-bottom: 0;
}
.p-template-refund .bnr-contact__pc {
  padding-top: 5px;
}
.p-template-refund .bnr-contact__pc img {
  max-width: 800px;
}
.p-template-refund .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .p-template-refund .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.p-template-refund .bnr-contact__area a {
  position: relative;
}
.p-template-refund .bnr-contact__area a p {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-template-refund .bnr-contact__area a p {
    position: absolute;
    color: white;
    left: 28%;
    font-size: 46px;
    top: 14%;
  }
}
@media screen and (min-width: 768px) {
  .p-template-refund .bnr-contact__area__web-cta {
    width: 50%;
  }
}
.p-template-refund .haisha-merit {
  background-color: #ffffff;
}
.p-template-refund .haisha-merit__container {
  position: relative;
  max-width: 1040px;
  height: calc(400px + 5vw);
  margin: 0 auto;
  border: #006EBB 5px solid;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container {
    height: 570px;
  }
}
.p-template-refund .haisha-merit__container__image {
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__image {
    margin: 15px 0;
  }
}
.p-template-refund .haisha-merit__container__image img {
  width: 45%;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__image img {
    width: 30%;
  }
}
.p-template-refund .haisha-merit__container__title {
  font-weight: 700;
  font-size: 22.5px;
  color: #006EBB;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__title {
    font-size: 40px;
  }
}
.p-template-refund .haisha-merit__container__content {
  font-size: 16px;
  letter-spacing: normal;
  text-align: left;
  margin-left: 60px;
  max-width: 324px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__content {
    font-size: 24px;
    max-width: 500px;
    margin-left: 24%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: unset;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .haisha-merit__container__content {
    margin-left: 300px;
  }
}
.p-template-refund .haisha-merit__container__content .red_marker {
  color: #fe0000;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__content .red_marker {
    font-size: 30px;
  }
}
.p-template-refund .haisha-merit__container__content .asterisk {
  position: absolute;
  top: -20px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__content .asterisk {
    top: -28px;
  }
}
.p-template-refund .haisha-merit__container__content div {
  text-align: left;
}
.p-template-refund .haisha-merit__container .note {
  font-size: 12px;
  text-align: left;
  max-width: 324px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container .note {
    margin-left: 24%;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: unset;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .haisha-merit__container .note {
    margin-left: 300px;
  }
}
.p-template-refund .haisha-merit__container__btn {
  position: relative;
  z-index: 1;
  width: 300px;
  background: #00366E;
  border-radius: 8px;
  height: 46px;
  margin: 15px auto 0;
  box-shadow: 2px 3px 4px 0px #333333;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.p-template-refund .haisha-merit__container__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.p-template-refund .haisha-merit__container__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.p-template-refund .haisha-merit__container__btn p img {
  float: right;
  margin-right: 20px;
}
.p-template-refund .haisha-merit__container__woman {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container__woman {
    width: 235px;
  }
}
.p-template-refund .haisha-merit__container__woman img {
  width: 100%;
}
.p-template-refund .haisha-merit__container .check-mark {
  position: relative;
  border-bottom: #006EBB 1px solid;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container .check-mark {
    padding-left: 50px;
  }
}
.p-template-refund .haisha-merit__container .check-mark span {
  padding: 0;
  border-bottom: none;
}
.p-template-refund .haisha-merit__container .check-mark::before, .p-template-refund .haisha-merit__container .check-mark::after {
  content: "";
  position: absolute;
  top: 37.5%;
  left: 2.5%;
  width: 16px;
  height: 2.5px;
  background-color: #006EBB;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container .check-mark::before, .p-template-refund .haisha-merit__container .check-mark::after {
    width: 30px;
    height: 4.5px;
  }
}
.p-template-refund .haisha-merit__container .check-mark::before {
  width: 12px;
  top: 46%;
  rotate: 235deg;
  left: 0%;
}
@media screen and (min-width: 768px) {
  .p-template-refund .haisha-merit__container .check-mark::before {
    width: 19px;
  }
}
.p-template-refund .haisha-merit__container .check-mark::after {
  rotate: -40deg;
}
.p-template-refund {
  /* 目次
  ----------------------------------------*/
}
.p-template-refund .mokuji {
  margin-top: 0;
  background-color: #e4e4e4;
}
@media screen and (min-width: 768px) {
  .p-template-refund .mokuji {
    background-color: #ffffff;
    padding: 0;
  }
}
.p-template-refund .mokuji .l-container {
  padding: 0 5%;
  background-color: #e4e4e4;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .mokuji .l-container {
    padding: 2% 5%;
    background-color: #ffffff;
  }
}
.p-template-refund .mokuji__wrap {
  background-color: #ffffff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .mokuji__wrap {
    margin: auto;
    font-size: 20px;
    font-weight: bold;
  }
}
.p-template-refund .mokuji__wrap ol.mokuji-list {
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 1rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .p-template-refund .mokuji__wrap ol.mokuji-list {
    font-size: 16px;
    font-weight: normal;
  }
}
.p-template-refund .mokuji__wrap ol.mokuji-list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
}
.p-template-refund .mokuji__wrap ol.mokuji-list ol li {
  border-bottom: none;
}
.p-template-refund {
  /* 本文
  -----------------------------------------*/
}
.p-template-refund__contents {
  background-color: white !important;
  padding: 0 !important;
}
.p-template-refund__contents .l-container {
  max-width: 1042px !important;
  padding: 0 20px !important;
  margin-bottom: 20px;
  width: 100% !important;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents .l-container {
    margin-bottom: 30px;
    padding: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-refund__contents .l-container {
    padding: 0 !important;
  }
}
.p-template-refund__contents__container {
  margin-bottom: 20px;
  font-family: NotoSansRegular;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents__container {
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 30px;
    font-family: NotoSans;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund__contents__container h3 {
  width: fit-content;
  position: relative;
  text-align: left;
  color: #006ebb;
  margin: 20px auto;
  border-bottom: 3px solid #cccccc;
  padding-bottom: 5px;
  width: 100%;
  font-family: NotoSansBold;
  font-size: 18px;
  line-height: 27px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents__container h3 {
    margin: 30px auto;
    padding-bottom: 17px;
    font-size: 18px;
    line-height: 24.52px;
  }
}
.p-template-refund__contents__container h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  border-bottom: 3px solid #006ebb;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents__container h3::before {
    width: 160px;
  }
}
.p-template-refund__contents__container .blue-box {
  background-color: #e6f2ff;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents__container .blue-box {
    width: 49%;
  }
}
.p-template-refund__contents__container .blue-box:first-child {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-template-refund__contents__container .blue-box:first-child {
    margin-bottom: 0;
  }
}
.p-template-refund__contents__container .blue-box__title {
  text-align: center;
  color: #267dcb;
  padding-bottom: 0.5rem;
}
.p-template-refund__contents__container hr.line {
  background-color: #ffffff;
}
.p-template-refund .form-describe {
  background-color: #e6f2ff !important;
  padding: 10px 0 0 !important;
  margin-bottom: -20px;
}
.p-template-refund .form-describe .l-container {
  max-width: 1042px !important;
  width: 100% !important;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-template-refund .form-describe .l-container {
    padding: 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-refund .form-describe .l-container {
    padding: 0 !important;
  }
}
.p-template-refund .form-describe .l-container .diagonal-bar {
  position: relative;
  color: #267dcb;
}
.p-template-refund .form-describe .l-container .diagonal-bar::before {
  content: "|";
  position: absolute;
  height: 10px;
  width: 25px;
  rotate: -30deg;
  left: -25%;
}
.p-template-refund .form-describe .l-container .diagonal-bar::after {
  content: "|";
  position: absolute;
  height: 25px;
  width: 20px;
  rotate: 30deg;
}
.p-template-refund .form-describe .l-container .blue-ellipse {
  background-color: #006EBB;
  border-radius: 31.02px;
  font-size: 12.5px;
  color: #ffffff;
  margin: 0 auto;
  font-family: NotoSans;
  width: 160px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .form-describe .l-container .blue-ellipse {
    width: 18%;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .form-describe .l-container .blue-ellipse {
    width: 160px;
  }
}
.p-template-refund .form-describe .l-container .title {
  font-family: NotoSans;
  font-weight: 700;
  color: #267dcb;
  margin-bottom: 0;
}
.p-template-refund .form-describe .l-container p {
  color: #006EBB;
  margin-bottom: 0;
}
.p-template-refund .form-col2 {
  background-color: #e6f2ff !important;
}
.p-template-refund .refund_step {
  padding: 0;
  background-color: #ffffff;
}
.p-template-refund .refund_step h3 {
  margin: 0;
}
.p-template-refund .refund_step__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 5%;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__container {
    padding: 60px 5% 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-refund .refund_step__container {
    padding: 60px 0 0;
  }
}
.p-template-refund .refund_step__title {
  text-align: center;
}
.p-template-refund .refund_step__title h2 img {
  width: auto;
  height: auto;
}
.p-template-refund .refund_step__group__box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__group__box {
    margin: 30px auto;
  }
}
.p-template-refund .refund_step__group__box__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-template-refund .refund_step__group__box__icon img {
  position: relative;
  z-index: 1;
}
.p-template-refund .refund_step__group__box__icon hr {
  position: absolute;
  transform: rotate(0deg);
  border: 5px solid #E6F2FF;
  z-index: 0;
  height: 110%;
  top: 10px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__group__box__icon hr {
    height: 100%;
    top: 39px;
    left: 3%;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .refund_step__group__box__icon hr {
    height: 145px;
    top: 45px;
    left: 23px;
  }
}
.p-template-refund .refund_step__group__box__text {
  margin-left: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 65%;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__group__box__text {
    margin-left: 30px;
    padding-right: 105px;
  }
}
@media screen and (min-width: 1000px) {
  .p-template-refund .refund_step__group__box__text {
    flex-grow: 1;
  }
}
.p-template-refund .refund_step__group__box__text p:first-child {
  color: #006EBB;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.52px;
  text-align: left;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__group__box__text p:first-child {
    margin-bottom: 10px;
  }
}
.p-template-refund .refund_step__group__box__text p:not(:first-child) {
  color: #333333;
  font-family: Noto Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step__group__box__text p:not(:first-child) {
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .refund_step__group__box__img {
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-template-refund .refund_step__group__box__img img {
  max-width: 100%;
  height: auto;
}
.p-template-refund .refund_step__content img {
  width: 100%;
}
.p-template-refund .refund_step .point {
  margin-top: 15px;
  background-color: #fff1c8;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step .point {
    padding: 20px 5px 20px 20px;
  }
}
.p-template-refund .refund_step .point__title {
  border-radius: 2px;
  background-color: #ff8b20;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-family: Noto Sans;
  font-size: 14px;
  line-height: 21px;
  width: 76px;
  padding: 2px 0;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step .point__title {
    padding: 4px 0;
    width: 84px;
    height: 30px;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .refund_step .point__title p {
  margin: 0;
}
.p-template-refund .refund_step .point__group {
  text-align: left;
  font-family: Noto Sans;
}
.p-template-refund .refund_step .point__group ul {
  list-style: disc;
  padding: 0 0 0 24px;
  margin: 0;
  line-height: 21px;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step .point__group ul {
    letter-spacing: unset;
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .refund_step .point__group ul li::marker {
  font-size: 14px;
}
.p-template-refund .refund_step .point__group ul span {
  color: #ff4d4d;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-template-refund .refund_step .point__group ul span {
    font-size: 16px;
    line-height: 23.68px;
  }
}
.p-template-refund .refund_step .point__group ul a {
  color: #333333;
}
.p-template-refund .refund_step__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) {
  .p-template-refund .refund_step__btn {
    height: 52px;
    margin: 30px auto 0;
    width: 400px;
  }
}
.p-template-refund .refund_step__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.p-template-refund .refund_step__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.p-template-refund .refund_step__btn p img {
  float: right;
  margin-right: 20px;
}
.p-template-refund {
  /* 書類ページ一覧
  -----------------------------------------------*/
}
@media screen and (min-width: 768px) {
  .p-template-refund .other-shorui-container {
    background-color: #e6f2fd !important;
  }
}
.p-template-refund .other-shorui-container .other-shorui {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .other-shorui-container .other-shorui {
    padding: 0;
  }
}
.p-template-refund .other-shorui-container .other-shorui {
  /* PC -----------------*/
}
.p-template-refund .other-shorui-container .other-shorui .recycl_link_wrap .recycl_link {
  flex-wrap: wrap;
  display: flex;
  margin: 0 auto;
}
.p-template-refund .other-shorui-container .other-shorui .recycl_link_wrap .recycl_link li {
  background-color: #ffffff;
  margin: 0.2rem;
  flex-basis: 24%;
  padding: 0.5rem;
}
.p-template-refund .other-shorui-container .other-shorui {
  /* SP ------------------*/
}
.p-template-refund .other-shorui-container .other-shorui .recycl_container {
  padding-top: 15px;
}
.p-template-refund .other-shorui-container .other-shorui .recycl_container ul {
  margin-bottom: 0;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 4px;
}
.p-template-refund .other-shorui-container .other-shorui .recycl_container ul li {
  padding: 5px 0;
  border-bottom: 1px dotted #e4e4e4;
}
.p-template-refund .processing-free-tetuduki {
  background: white;
  padding: 0;
}
.p-template-refund .processing-free-tetuduki__container {
  position: relative;
  display: block;
  margin: 30px 20px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .processing-free-tetuduki__container {
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 60px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-template-refund .processing-free-tetuduki__container {
    max-width: 700px;
    margin: 60px auto;
  }
}
.p-template-refund .processing-free-tetuduki__title {
  text-align: center;
  margin-bottom: 20px;
}
.p-template-refund .processing-free-tetuduki__title h2 {
  margin: 0;
  padding: 0;
}
.p-template-refund .processing-free-tetuduki__title h2 img {
  height: auto;
}
.p-template-refund .processing-free-tetuduki__title2 {
  text-align: center;
  margin: 30px auto 10px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .processing-free-tetuduki__title2 {
    margin: 60px auto 20px;
  }
}
.p-template-refund .processing-free-tetuduki__box {
  display: flex;
  align-items: flex-end;
  gap: 45px;
  position: relative;
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-template-refund .processing-free-tetuduki__box {
    max-width: 728px;
    width: auto;
  }
}
.p-template-refund .processing-free-tetuduki__box__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 32%;
  text-align: CENTER;
  margin-left: -35px;
}
.p-template-refund .processing-free-tetuduki__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) {
  .p-template-refund .processing-free-tetuduki__btn {
    height: 52px;
    margin: -30px auto 0;
    width: 400px;
  }
}
.p-template-refund .processing-free-tetuduki__btn a {
  text-align: center;
  color: white;
  text-decoration: none;
}
.p-template-refund .processing-free-tetuduki__btn p {
  margin-top: 0;
  padding-top: 13px;
}
.p-template-refund .processing-free-tetuduki__btn p img {
  float: right;
  margin-right: 20px;
}
.p-template-refund .learn-more-tetuduki {
  padding: 20px;
  margin: 30px auto;
  background-color: #e4e4e4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-template-refund .learn-more-tetuduki {
    margin: 60px auto;
    background-color: #ffffff;
    padding: 0;
  }
}
.p-template-refund .learn-more-tetuduki .l-container {
  padding: 0;
  background-color: #ffffff;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-template-refund .learn-more-tetuduki .l-container {
    padding: 0 20px;
    background-color: #ffffff;
  }
}
.p-template-refund .learn-more-tetuduki__wrap {
  font-family: NotoSansRegular;
  padding: 10px 10px 20px 10px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .learn-more-tetuduki__wrap {
    padding: 0;
    max-width: 770px;
    width: 100%;
    margin: auto;
  }
}
.p-template-refund .learn-more-tetuduki__wrap h2 {
  margin-left: 5px;
  font-size: 16px;
  line-height: 23px;
  text-align: left;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-template-refund .learn-more-tetuduki__wrap h2 {
    margin-left: 0;
    font-size: 18px;
    line-height: 23px;
  }
}
.p-template-refund .learn-more-tetuduki__wrap__list {
  font-family: NotoSansRegular;
  list-style-type: none;
  margin-bottom: 0;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 15px;
  font-size: 15px;
}
.p-template-refund .learn-more-tetuduki__wrap__list li {
  padding: 0.2rem 0;
  border-bottom: 2px dotted #e4e4e4;
  position: relative;
  padding-right: 20px;
}
.p-template-refund .learn-more-tetuduki__wrap__list__first {
  color: #b3b3b3 !important;
}
.p-template-refund .learn-more-tetuduki__wrap__list__first li::after {
  border-left: 8px solid #b3b3b3 !important;
}
.p-template-refund .learn-more-tetuduki__wrap__list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 9px;
  border-left: 8px solid #006EBB;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 1px;
}
.p-template-refund .learn-more-tetuduki__wrap__list ol li {
  border-bottom: none;
}
.p-template-refund .learn-more-tetuduki .learn_more_active {
  color: #b3b3b3 !important;
}
.p-template-refund .learn-more-tetuduki .learn_more_active li::after {
  border-left: 8px solid #b3b3b3 !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

dt {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

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

.r-0 {
  margin: 0 !important;
}

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

.justify-content-between {
  justify-content: space-between !important;
}

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

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

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

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.pt-0, .py-0 {
  padding-top: 0 !important;
}

.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}

.mt-3, .my-3 {
  margin-top: 1rem !important;
}

.mb-0, .my-0 {
  margin-bottom: 0 !important;
}

.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}

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

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.pb-0, .py-0 {
  padding-bottom: 0 !important;
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

@media screen and (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
  }
  .mt-md-0, .my-md-0 {
    margin-top: 0 !important;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media screen and (min-width: 1000px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.u-color-1 {
  background: #eff0e6;
  background: -webkit-gradient(linear, left top, left bottom, from(#eff0e6), to(#dddebf));
  background: linear-gradient(to bottom, #eff0e6 0%, #dddebf 100%);
  border: 1px solid #e8e9d8;
}

.u-color-2 {
  border: 1px solid #e4e4e4;
}

.u-color-3 {
  background: #fdfdfd;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#bcbcb9));
  background: linear-gradient(to bottom, #fdfdfd 0%, #bcbcb9 100%);
}

/*
背景色 ---------------------------------------------*/
.u-color-4 {
  background-color: #2e83ff !important;
}

.u-color-5 {
  background-color: #961891 !important;
}

.u-color-6 {
  background-color: #ff0000 !important;
}

.u-color-7 {
  background-color: #ccc !important;
}

.u-color-8 {
  background-color: #33cc33 !important;
}

.u-color-9 {
  background-color: #9c7732 !important;
}

.u-color-10 {
  background-color: #fbe926 !important;
}

.u-color-11 {
  background-color: #003 !important;
}

.u-color-12 {
  background-color: #f6e8d8 !important;
}

.u-color-13 {
  background-color: #f96bb9 !important;
}

.u-color-14 {
  background-color: #333 !important;
}

.u-color-15 {
  background-color: #e6f2ff !important;
}

.u-fontcolor-white {
  color: #ffffff !important;
}

.u-bg-white {
  background-color: #ffffff;
}

/* テキストカラー
---------------------------------------------*/
.u-color-blue {
  color: #267dcb !important;
}

.u-color-red {
  color: #fe0000 !important;
}

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

.u-display-flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .u-display-flex {
    flex-direction: row;
  }
}

.u-flex_wrap {
  flex-wrap: wrap;
}

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

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

.u-fs1 {
  font-size: 1px !important;
}

.u-fs2 {
  font-size: 2px !important;
}

.u-fs3 {
  font-size: 3px !important;
}

.u-fs4 {
  font-size: 4px !important;
}

.u-fs5 {
  font-size: 5px !important;
}

.u-fs6 {
  font-size: 6px !important;
}

.u-fs7 {
  font-size: 7px !important;
}

.u-fs8 {
  font-size: 8px !important;
}

.u-fs9 {
  font-size: 9px !important;
}

.u-fs10 {
  font-size: 10px !important;
}

.u-fs11 {
  font-size: 11px !important;
}

.u-fs12 {
  font-size: 12px !important;
}

.u-fs13 {
  font-size: 13px !important;
}

.u-fs14 {
  font-size: 14px !important;
}

.u-fs15 {
  font-size: 15px !important;
}

.u-fs16 {
  font-size: 16px !important;
}

.u-fs17 {
  font-size: 17px !important;
}

.u-fs18 {
  font-size: 18px !important;
}

.u-fs19 {
  font-size: 19px !important;
}

.u-fs20 {
  font-size: 20px !important;
}

.u-fs21 {
  font-size: 21px !important;
}

.u-fs22 {
  font-size: 22px !important;
}

.u-fs23 {
  font-size: 23px !important;
}

.u-fs24 {
  font-size: 24px !important;
}

.u-fs25 {
  font-size: 25px !important;
}

.u-fs26 {
  font-size: 26px !important;
}

.u-fs27 {
  font-size: 27px !important;
}

.u-fs28 {
  font-size: 28px !important;
}

.u-fs29 {
  font-size: 29px !important;
}

.u-fs30 {
  font-size: 30px !important;
}

.u-fs31 {
  font-size: 31px !important;
}

.u-fs32 {
  font-size: 32px !important;
}

.u-fs33 {
  font-size: 33px !important;
}

.u-fs34 {
  font-size: 34px !important;
}

.u-fs35 {
  font-size: 35px !important;
}

.u-fs36 {
  font-size: 36px !important;
}

.u-fs37 {
  font-size: 37px !important;
}

.u-fs38 {
  font-size: 38px !important;
}

.u-fs39 {
  font-size: 39px !important;
}

.u-fs40 {
  font-size: 40px !important;
}

.u-fs41 {
  font-size: 41px !important;
}

.u-fs42 {
  font-size: 42px !important;
}

.u-fs43 {
  font-size: 43px !important;
}

.u-fs44 {
  font-size: 44px !important;
}

.u-fs45 {
  font-size: 45px !important;
}

.u-fs46 {
  font-size: 46px !important;
}

.u-fs47 {
  font-size: 47px !important;
}

.u-fs48 {
  font-size: 48px !important;
}

.u-fs49 {
  font-size: 49px !important;
}

.u-fs50 {
  font-size: 50px !important;
}

.u-fs51 {
  font-size: 51px !important;
}

.u-fs52 {
  font-size: 52px !important;
}

.u-fs53 {
  font-size: 53px !important;
}

.u-fs54 {
  font-size: 54px !important;
}

.u-fs55 {
  font-size: 55px !important;
}

.u-fs56 {
  font-size: 56px !important;
}

.u-fs57 {
  font-size: 57px !important;
}

.u-fs58 {
  font-size: 58px !important;
}

.u-fs59 {
  font-size: 59px !important;
}

.u-fs60 {
  font-size: 60px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-tag_blue {
  color: #ffffff;
  background: #3884d0;
  padding: 0 0.25rem;
  border-radius: 3px;
}

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

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

#contact_bnr_type2 {
  background-color: #ffffff !important;
}

.trader-compare-table-renew {
  background-color: #E5E5E5;
}

.achievement-home {
  background-color: #E5E5E5;
}
@media screen and (min-width: 768px) {
  .achievement-home {
    padding: 60px 0;
  }
}

.contact-new-bg {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact-new-bg {
    background-color: #f2f2f2;
    padding: 30px 0 60px;
  }
}
.contact-new-bg img {
  width: 100%;
}

.renew-cta img {
  width: 100%;
}

.cta-line-renew {
  display: block;
}
.cta-line-renew img {
  width: 100%;
  margin: 0 auto;
}

.title_cta_sp {
  width: 70% !important;
  margin-bottom: 10px !important;
}

@media screen and (min-width: 768px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

.u-footer_banner_top .u-footer-renewal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .u-footer_banner_top .u-footer-renewal {
    display: flex;
  }
}

.form-lptop_new-sp__title img {
  width: 100% !important;
  max-width: 400px;
  margin: 0;
}

.home {
  background-color: white;
}
.home .l-container {
  position: relative;
}
.home .bnr-contact__sp {
  padding: 30px 0 10px;
}
.home .bnr-contact__pc {
  padding: 50px 0;
}
.home .bnr-contact__pc img {
  max-width: 800px;
}
.home .bnr-contact__pc .phone-txt {
  font-size: 40px;
  font-weight: 600;
  transform: translate(-50%, -50%);
  max-width: 330px;
  width: 100%;
}
.home .bnr-contact__pc .phone-txt::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc .phone-txt {
    top: 63%;
    font-size: 40px;
    left: 27vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc .phone-txt {
    top: 65%;
    font-size: 42px;
    left: 32.5%;
  }
}
.home .bnr-contact__pc p {
  left: 28%;
  font-size: 46px;
  top: 40%;
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc p {
    left: 30%;
    font-size: 55px;
  }
}
.home .bnr-contact__pc__btn-form {
  display: none;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .home .bnr-contact__pc__btn-form {
    display: block;
    top: 61%;
    left: 63.5%;
  }
  .home .bnr-contact__pc__btn-form img {
    width: 33.1vw;
  }
}
@media screen and (min-width: 1000px) {
  .home .bnr-contact__pc__btn-form {
    left: 63%;
  }
  .home .bnr-contact__pc__btn-form img {
    width: 331px;
  }
}
.home .bnr-contact__pc__btn-form .web-form-btn-alt {
  display: none;
  box-shadow: none;
  transform: translateY(4px);
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn {
  display: none;
}
.home .bnr-contact__pc__btn-form:hover .web-form-btn-alt {
  display: block;
}