@charset "UTF-8";
/* ==========================================================
 Foundation
========================================================== */
/*! ==========================================================
 element reset
========================================================== */
/*! general
---------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*! for IE8 - 11 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

/*! for IE */
[hidden],
template {
  display: none;
}

b,
strong {
  font-weight: bold;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border: 0;
  vertical-align: top;
}

img,
embed,
iframe,
object,
audio,
video {
  height: auto;
  width: 100%;
}

iframe {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

svg path,
svg line {
  shape-rendering: crispEdges;
}

a {
  cursor: pointer;
}

/*! form
---------------------------------------------------------- */
input,
textarea,
select {
  font-size: 100%;
  -webkit-appearance: none;
  outline: none;
}

textarea {
  resize: none;
}

/*! for IE11 */
select::-ms-expand {
  display: none;
}

/*! for IE11 */
select::-ms-value {
  color: currentColor;
}

button {
  border: none;
  overflow: visible;
  background: none;
  vertical-align: top;
  font-size: 100%;
  color: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}

label {
  cursor: pointer;
}

/*! placeholder */
:placeholder-shown {
  color: #999;
}

/*! Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #999;
}

/*! Firefox */
::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/*! IE 10+ */
:-ms-input-placeholder {
  color: #999;
}

html {
  position: relative;
  height: 100%;
  font-size: 10px;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  background-color: #fff;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
  line-height: 1.5;
  color: #16283C;
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  color: #0045AD;
  text-decoration: none;
}

.l-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .l-wrapper {
    display: block;
  }
  /* IE11 */
}

/* ==========================================================
 Layout
========================================================== */
/* header
---------------------------------------------------------- */
.l-header {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 64px;
  background-color: #fff;
  z-index: 999;
}

@media all and (min-width: 768px) {
  .l-header {
    position: relative;
    height: auto;
  }
}

.l-header__inner {
  position: relative;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .l-header__inner {
    padding: 0 40px;
    height: 90px;
  }
}

@media all and (min-width: 992px) {
  .l-header__inner {
    max-width: 1162px;
    margin: 0 auto;
  }
}

@media all and (min-width: 992px) {
  .l-wrapper--contact .l-header {
    height: 90px;
  }
}

@media all and (min-width: 992px) {
  .l-wrapper.is-fixed .l-header {
    position: fixed;
    height: 72px;
  }
}

/* contents
---------------------------------------------------------- */
.l-contents {
  min-width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .l-contents {
    padding-top: 0;
  }
}

@media all and (min-width: 768px) {
  .l-wrapper.is-fixed .l-contents {
    padding-top: 72px;
  }
}

/* パンくず */
.l-breadcrumb {
  background-color: #F5F6F6;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.l-breadcrumb__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  padding: 6px 16px;
  -webkit-overflow-scrolling: touch;
}

@media all and (min-width: 768px) {
  .l-breadcrumb__inner {
    overflow: hidden;
  }
}

.l-breadcrumb__item {
  position: relative;
  margin-right: 8px;
  padding-right: 13px;
}

.l-breadcrumb__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 6px;
  margin-top: -3px;
  background: url("../image/common/ico/ico_triangle_gray@2x.png") top left no-repeat;
  background-size: contain;
}

.l-breadcrumb__item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.l-breadcrumb__item:last-child::after {
  display: none;
}

.l-breadcrumb__link {
  font-size: 1.2rem;
  white-space: nowrap;
}

.l-breadcrumb a:hover {
  text-decoration: underline;
}

/* footer
---------------------------------------------------------- */
.l-footer {
  position: relative;
  margin-top: auto;
}

.l-footer-banner {
  background-color: #FEF7EC;
  padding: 40px 0 40px;
}

@media all and (min-width: 768px) {
  .l-footer-banner {
    padding: 80px 0 80px;
  }
}

.l-footer-menu {
  background-color: #0045AD;
}

@media all and (min-width: 768px) {
  .l-footer-menu__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 40px 60px;
  }
}

.l-footer-contact {
  padding: 30px 24px 24px;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .l-footer-contact {
    padding: 40px 40px;
  }
}

@media all and (min-width: 768px) {
  .l-footer-contact__inner {
    max-width: 1040px;
    margin: 0 auto;
  }
}

.l-footer-bottom {
  background-color: #FEF7EC;
}

.l-footer-bottom__inner {
  padding: 20px 20px 85px;
}

@media all and (min-width: 768px) {
  .l-footer-bottom__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 40px;
    /* padding: 40px 40px 40px; */
  }
}

.l-footer-banner-w .l-footer-banner {
  background-color: #fff;
}

.l-wrapper--contact .l-footer-bottom__inner {
  padding: 20px 20px 25px;
}

.l-wrapper--contact .p-pagetop-button {
  bottom: 7px;
}

/* ==========================================================
 Object / Component
========================================================== */
/* h1 title
---------------------------------------------------------- */
/* basic title */
.c-heading-band-base {
  position: relative;
  background-color: #0045AD;
  padding: 16px 16px;
  max-width: 1080px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .c-heading-band-base {
    padding: 32px 40px;
  }
}

@media all and (min-width: 992px) {
  .c-heading-band-base {
    margin-top: 40px;
    border-radius: 12px;
  }
}

.c-heading-band-base::before, .c-heading-band-base::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: url("../image/common/ico/ico_heading_line_lightBlue.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-heading-band-base::before, .c-heading-band-base::after {
    width: 80px;
    height: 8px;
  }
}

.c-heading-band-base::before {
  top: 16px;
  left: 16px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base::before {
    top: 32px;
    left: 40px;
  }
}

.c-heading-band-base::after {
  right: 16px;
  bottom: 16px;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .c-heading-band-base::after {
    right: 40px;
    bottom: 32px;
  }
}

.c-heading-band-base__inner {
  position: relative;
  padding: 20px 10px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base__inner {
    padding: 36px 40px;
  }
}

.c-heading-band-base__inner::before, .c-heading-band-base__inner::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: url("../image/common/ico/ico_heading_line_white.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-heading-band-base__inner::before, .c-heading-band-base__inner::after {
    width: 80px;
    height: 8px;
  }
}

.c-heading-band-base__inner::before {
  top: 8px;
  right: 40px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base__inner::before {
    top: 16px;
    right: 120px;
  }
}

.c-heading-band-base__inner::after {
  left: 40px;
  bottom: 8px;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .c-heading-band-base__inner::after {
    left: 120px;
    bottom: 16px;
  }
}

.c-heading-band-base__title {
  color: #fff;
  font-size: 2.7rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.01em;
}

@media all and (min-width: 768px) {
  .c-heading-band-base__title {
    font-size: 3.4rem;
  }
}

.c-heading-band-base__sub {
  display: block;
  margin-bottom: 0.35em;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-heading-band-base__sub {
    font-size: 1.4rem;
  }
}

.c-heading-band-base--has-sub .c-heading-band-base__inner {
  padding-top: 12px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base--has-sub .c-heading-band-base__inner {
    padding-top: 20px;
  }
}

/* simple band */
.c-heading-band-simple {
  padding: 15px 16px;
  background-color: #0045AD;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-heading-band-simple {
    padding: 40px 40px 37px;
    border-radius: 12px;
  }
}

/* simple with description */
.c-heading-band-description {
  max-width: 1080px;
  margin: 0 auto 10px;
  padding: 20px 16px 16px;
  background-color: #0045AD;
  color: #fff;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-heading-band-description {
    padding: 30px 40px 32px;
  }
}

@media all and (min-width: 992px) {
  .c-heading-band-description {
    margin-top: 40px;
    border-radius: 12px;
  }
}

.c-heading-band-description__title {
  margin-bottom: 0.5em;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-heading-band-description__title {
    font-size: 3.6rem;
  }
}

.c-heading-band-description__description {
  font-size: 1.2rem;
}

.c-heading-band-description__description em {
  display: block;
  margin-bottom: 0.25em;
  font-size: 1.4rem;
  font-weight: bold;
  font-style: normal;
}

@media all and (min-width: 768px) {
  .c-heading-band-description__description em {
    font-size: 1.6rem;
  }
}

/* key visual */
.c-heading-key-visual {
  overflow: hidden;
  margin: 0 auto 40px;
}

@media all and (min-width: 768px) {
  .c-heading-key-visual {
    margin: 0 auto 80px;
    max-width: 1080px;
  }
}

@media all and (min-width: 992px) {
  .c-heading-key-visual {
    margin-top: 40px;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-heading-key-visual .sp {
    display: none;
  }
}

.c-heading-key-visual .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-heading-key-visual .pc {
    display: block;
  }
}

.c-heading-key-visual img {
  width: 100%;
  height: auto;
}

/* h2 under
---------------------------------------------------------- */
.c-heading-content-pattern01 {
  padding: 8px 40px;
  background-color: #0045AD;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 3px;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern01 {
    font-size: 2.3rem;
    border-radius: 8px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-heading-content-pattern01 {
    padding: 10px 40px 6px;
  }
}

.c-heading-content-pattern02 {
  margin-bottom: 40px;
  color: #0045AD;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern02 {
    margin-bottom: 80px;
    font-size: 3.6rem;
  }
}

.c-heading-content-pattern02 .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern02 .inner {
    padding: 0 120px;
  }
  .c-heading-content-pattern02 .inner::before, .c-heading-content-pattern02 .inner::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
  }
  .c-heading-content-pattern02 .inner::before {
    top: 8px;
    left: 0;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .c-heading-content-pattern02 .inner::after {
    right: 0;
    bottom: 8px;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
  }
}

.c-heading-content-pattern03 {
  margin-bottom: 40px;
  color: #0045AD;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern03 {
    margin-bottom: 80px;
  }
}

.c-heading-content-pattern03__name {
  font-size: 1.2rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern03__name {
    font-size: 1.5rem;
  }
}

.c-heading-content-pattern03__title {
  font-size: 2.8rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern03__title {
    font-size: 3.5rem;
  }
}

.c-heading-content-pattern03__title .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern03__title .inner {
    padding: 0 120px;
  }
  .c-heading-content-pattern03__title .inner::before, .c-heading-content-pattern03__title .inner::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
  }
  .c-heading-content-pattern03__title .inner::before {
    top: 8px;
    left: 0;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .c-heading-content-pattern03__title .inner::after {
    right: 0;
    bottom: 8px;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
  }
}

/* 選ばれる理由 */
.c-choose-reason-heading {
  margin-bottom: 40px;
}

.c-choose-reason-heading__subtitle {
  text-align: center;
  padding-bottom: 5px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__subtitle {
    padding-bottom: 24px;
  }
}

.c-choose-reason-heading__subtitle .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 9px 14px;
  background-color: #fff;
  border-radius: 4px;
  line-height: 1.0;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__subtitle .inner {
    font-size: 1.6rem;
  }
}

.c-choose-reason-heading__subtitle .inner em {
  margin: 0 0.1em;
  color: #00B6FC;
  font-style: normal;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__subtitle .inner em {
    font-size: 3.6rem;
  }
}

.c-choose-reason-heading__subtitle .inner::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 14px;
  height: 12px;
  margin: 0 auto;
  background: url("../image/common/ico/ico_triangle_white_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__subtitle .inner::after {
    bottom: -14px;
    width: 16px;
    height: 16px;
  }
}

.c-choose-reason-heading__title {
  color: #0045AD;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__title {
    font-size: 3.6rem;
  }
}

.c-choose-reason-heading__title .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 768px) {
  .c-choose-reason-heading__title .inner {
    padding: 0 120px;
  }
  .c-choose-reason-heading__title .inner::before, .c-choose-reason-heading__title .inner::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
  }
  .c-choose-reason-heading__title .inner::before {
    top: 8px;
    left: 0;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .c-choose-reason-heading__title .inner::after {
    right: 0;
    bottom: 8px;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
  }
}

/* form heading
---------------------------------------------------------- */
/* c-heading-form-items */
.c-heading-form-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  background-color: #0045AD;
  padding: 4px 4px 4px 16px;
}

@media all and (min-width: 992px) {
  .c-heading-form-items {
    justify-content: flex-end;
  }
}

.c-heading-form-items__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 992px) {
  .c-heading-form-items__title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 160px;
    text-align: center;
  }
}

.c-heading-form-items__display {
  padding: 6px 8px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.2rem;
}

.c-heading-form-items__number {
  display: inline-block;
  margin: 0 0.25em;
  font-size: 1.9rem;
  font-weight: bold;
  color: #0045AD;
  font-family: 'Barlow', sans-serif;
  line-height: 1.1;
}

/* c-heading-form-nextstep */
.c-heading-form-nextstep {
  margin-bottom: 40px;
  color: #00B6FC;
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-heading-form-nextstep {
    max-width: 400px;
    padding: 19px 10px;
    margin: 0 auto 80px;
    font-size: 2.4rem;
    border: 3px solid #F3F4F5;
    border-radius: 6px;
  }
}

/* text
---------------------------------------------------------- */
.c-text-read {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-text-read {
    font-size: 1.6rem;
  }
}

.c-text-read + .c-text-note {
  margin-top: 1.0em;
}

.c-text-center {
  text-align: center;
}

.c-text-left {
  text-align: left;
}

.c-text-note {
  color: #8A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-text-note {
    font-size: 1.2rem;
  }
}

.c-text-note > span {
  position: relative;
  padding-left: 1.25em;
  display: inline-block;
  vertical-align: middle;
}

.c-text-note > span::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* text link
---------------------------------------------------------- */
.c-text-link-tel {
  text-decoration: underline;
}

.c-text-link-tel:hover {
  text-decoration: none;
}

/* form系 text
---------------------------------------------------------- */
.c-form-text {
  margin-bottom: 1.0em;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-form-text {
    font-size: 1.2rem;
  }
}

.c-form-note {
  position: relative;
  padding-left: 1.25em;
  /* 20241210 */
  /* color: #8A939D; */
  /* font-size: 1.0rem; */
  color: #555;
  font-size: 1.2rem;
}

.c-form-note a {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .c-form-note a:hover {
    text-decoration: none;
  }
}

.c-form-caution {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6670;
  padding: 1.5rem 0;
  display: none;
}

.c-form-caution.failure {
  padding: 3.5rem 0;
}

@media all and (min-width: 768px) {
  .c-form-note {
    font-size: 1.2rem;
  }
  
  .c-form-caution {
    font-size: 2rem;
  }
}

.c-form-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-form-note.no-asterisk {
  padding-left: 0;
}
.c-form-note.no-asterisk::before {
  content: "";
}

.c-form-note.no-asterisk--indent::before {
  content: "";
}

.c-text-gray-small {
  position: relative;
  color: #8A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-text-gray-small {
    font-size: 1.2rem;
  }
}

.c-button-blue {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .c-button-blue:hover .c-button-blue__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-blue:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-blue::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-blue::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-button-blue {
    max-width: 400px;
  }
}

.c-button-blue__inner {
  position: relative;
  display: block;
  background-color: #fff;
  /* 20241210 */
  /* border-radius: 8px; */
  /* font-size: 2.0rem; */
  border-radius: 26px;
  border: 3px solid #0045AD;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
  margin: auto
}

@media all and (min-width: 768px) {
  .c-button-blue__inner {
    border-radius: 12px;
    font-size: 2.4rem;
  }
}

.c-button-blue__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-button-blue__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-button-blue__inner > span {
  display: block;
  /* 20241210 */
  /* padding: 19px 38px; */
  padding: 14px 30px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-button-blue__inner > span {
    padding: 21px 48px;
  }
}

@media all and (min-width: 768px) {
  .c-button-blue.c-button-blue--wide {
    max-width: 680px;
  }
}

.c-button-blue.c-button-blue--medium .c-button-blue__inner {
  font-size: 1.8rem;
}

@media all and (min-width: 768px) {
  .c-button-blue.c-button-blue--medium .c-button-blue__inner {
    font-size: 2.4rem;
  }
}

.c-button-red {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-button-red:hover .c-button-red__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-red:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-red::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-red::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-button-red {
    max-width: 400px;
  }
}

.c-button-red__inner {
  position: relative;
  display: block;
  background-color: #FF6670;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-size: 2.0rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-button-red__inner {
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.c-button-red__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-button-red__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-button-red__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-button-red__inner > span {
    padding: 21px 56px;
  }
}

.c-button-prev {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .c-button-prev:hover .c-button-prev__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-prev:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-prev::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-prev::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-button-prev {
    max-width: 400px;
  }
}

.c-button-prev__inner {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-size: 2.0rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-button-prev__inner {
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.c-button-prev__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .c-button-prev__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-button-prev__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-button-prev__inner > span {
    padding: 21px 56px;
  }
}

@media all and (min-width: 768px) {
  .c-button-prev.c-button-prev--wide {
    max-width: 680px;
  }
}

.c-button-scroll {
  display: block;
  position: relative;
  max-width: 310px;
  padding: 0 4px 4px 0;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #00B6FC;
  border-radius: 8px 12px 8px 12px;
}

@media all and (min-width: 768px) {
  .c-button-scroll {
    max-width: 396px;
  }
}

@media all and (min-width: 768px) and (min-width: 768px) {
  .c-button-scroll:hover .c-button-scroll__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-scroll:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-scroll::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_lightblue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-scroll::after {
    border-radius: 12px;
  }
}

.c-button-scroll__inner {
  position: relative;
  display: block;
  background-color: #fff;
  border: 3px solid #00B6FC;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-button-scroll__inner {
    font-size: 2.2rem;
  }
}

.c-button-scroll__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_skyblue_under_01.svg") top left no-repeat;
  background-size: contain;
}

.c-button-scroll__inner > span {
  display: block;
  padding: 17px 45px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-button-scroll__inner > span {
    padding: 15px 45px;
  }
}

.c-estimate-button-scroll {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-estimate-button-scroll:hover .c-estimate-button-scroll__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-estimate-button-scroll:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-estimate-button-scroll::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-button-scroll {
    max-width: 400px;
  }
}

.c-estimate-button-scroll__inner {
  position: relative;
  display: block;
  background-color: #FF6670;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-size: 2.0rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-estimate-button-scroll__inner {
    font-size: 2.4rem;
  }
}

.c-estimate-button-scroll__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .c-estimate-button-scroll__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-estimate-button-scroll__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-estimate-button-scroll__inner > span {
    padding: 21px 56px;
  }
}

/* 毎月いくらで新車に乗れる? 車をチェック */
.c-button-special {
  position: relative;
  display: block;
  max-width: 310px;
  margin: 0 auto;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-button-special {
    max-width: 680px;
  }
  .c-button-special:hover .c-button-special__balloon,
  .c-button-special:hover .c-button-special__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-special:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-special::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 34px;
}

@media all and (min-width: 768px) {
  .c-button-special::after {
    border-radius: 44px;
  }
}

.c-button-special__balloon {
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  text-align: center;
  transform: translate3d(0, 0, 0);
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-button-special__balloon {
    top: -40px;
    right: auto;
    left: -36px;
  }
}

.c-button-special__balloon span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 6px;
  background-color: #0045AD;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-button-special__balloon span {
    padding: 12px 32px;
    font-size: 1.6rem;
    line-height: 1.4;
    border-radius: 44px;
  }
}

.c-button-special__balloon span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  width: 20px;
  height: 19px;
  margin: 0 auto;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .c-button-special__balloon span::after {
    left: auto;
    right: -2px;
    bottom: -4px;
    width: 24px;
    height: 22px;
    transform: rotate(-40deg);
    transform-origin: center center;
  }
}

.c-button-special__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 55px;
  background-color: #FF6670;
  border: 4px solid #0045AD;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 34px;
  z-index: 1;
}

@media all and (max-width: 359px) {
  .c-button-special__inner {
    padding: 0 55px 0 45px;
  }
}

@media all and (min-width: 768px) {
  .c-button-special__inner {
    min-height: 88px;
    font-size: 3.2rem;
    border-radius: 44px;
  }
}

.c-button-special__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-button-special__inner {
    height: 88px;
  }
}

.c-button-disabled {
  display: block;
  max-width: 310px;
  margin: 0 auto;
  padding: 17px 10px;
  border: 3px solid #C4C9CE;
  color: #C4C9CE;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-disabled {
    padding: 12px 10px;
    max-width: 400px;
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.c-business-link-button {
  position: relative;
  display: block;
  background-color: #0045AD;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 28px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 26px;
}

@media all and (min-width: 768px) {
  .c-business-link-button {
    min-width: 320px;
    font-size: 2.0rem;
  }
}

.c-business-link-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-business-link-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-link-underline {
  text-decoration: underline;
}

.c-link-prev {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 18px;
  color: #0045AD;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.c-link-prev:hover {
  text-decoration: underline;
}

.c-link-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

.c-form-step-navi {
  width: 100%;
  max-width: 770px;
  margin: 0 auto 20px;
}

@media all and (min-width: 768px) {
  .c-form-step-navi {
    margin-bottom: 40px;
  }
}

.c-form-step-navi__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.c-form-step-navi__item {
  position: relative;
  width: 25%;
  text-align: center;
}

.c-form-step-navi__item::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #C4C9CE;
  z-index: -1;
}

@media all and (min-width: 992px) {
  .c-form-step-navi__item::after {
    top: 21px;
  }
}

.c-form-step-navi__item:last-child::after {
  display: none;
}

.c-form-step-navi__item.is-active .c-form-step-navi__number {
  border-color: #00B6FC;
  color: #00B6FC;
}

.c-form-step-navi__item.is-active .c-form-step-navi__title {
  color: #00B6FC;
}

.c-form-step-navi__number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background-color: #fff;
  border: 3px solid #C4C9CE;
  border-radius: 50%;
  color: #C4C9CE;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 992px) {
  .c-form-step-navi__number {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-width: 4px;
    font-size: 2.3rem;
  }
}

.c-form-step-navi__title {
  display: block;
  color: #C4C9CE;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 992px) {
  .c-form-step-navi__title {
    font-size: 1.4rem;
  }
  .c-form-step-navi__title br {
    display: none;
  }
}

.c-form-step-navi--3col .c-form-step-navi__item {
  width: 33.33%;
}

.c-form-step-navi--3col .c-form-step-navi__item:nth-child(3n-2) {
  width: 33.34%;
}

.c-form-input-text {
  width: 114%;
  height: 63.84px;
  min-height: 56px;
  background-color: #F3F4F5;
  border-radius: 8px;
  padding: 10px 16px;
  border: none;
  /* 20241210 フォントサイズ単位修正 */
  font-size: 1.8rem;
  transform: scale(0.875);
  transform-origin: left center;
  line-height: 1.5;
}

@media all and (min-width: 768px) {
  .c-form-input-text {
    width: 100%;
    height: 56px;
    /* 20241210 フォントサイズ追記 */
    font-size: 1.6rem;
    transform: scale(1);
  }
}

.c-form-input-radio {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.c-form-input-radio__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 12px 15px 10px 36px;
  background-color: #F3F4F5;
  color: #0045AD;
  /* 20241210 */
  /* font-size: 1.3rem; */
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.0;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-form-input-radio__label {
    min-height: 56px;
    padding: 12px 15px 10px 48px;
    /* 20241210 */
    /* font-size: 1.4rem; */
    font-size: 1.6rem;
  }
}

.c-form-input-radio__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 16px;
  height: 16px;
  margin: -8px 10px 0 0;
  border: 2px solid #C4C9CE;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

@media all and (min-width: 768px) {
  .c-form-input-radio__label::before {
    left: 16px;
  }
}

.c-form-input-radio__label .recommended {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 4px 5px 7px;
  background-color: #FF6670;
  border-radius: 20px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.0;
  word-break: keep-all;
}

.c-form-input-radio__input {
  opacity: 0;
}

.c-form-input-radio .c-form-input-radio__input:checked + .c-form-input-radio__label {
  background-color: #00B6FC;
  color: #fff;
}

.c-form-input-radio .c-form-input-radio__input:checked + .c-form-input-radio__label::before {
  border-color: #fff;
  background-color: #00B6FC;
  background-image: url("../image/common/ico/ico_form_radio_checed_01.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-form-input-radio__label {
    height: 56px;
  }
}

.c-form-input-check {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.c-form-input-check__label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 12px 0px 10px 36px;
  /* 202303 三菱対応 */
  /* padding: 12px 10px 10px 36px; */
  background-color: #F3F4F5;
  color: #0045AD;
  /* 20241210 */
  /* font-size: 1.3rem; */
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-form-input-check__input {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 14px;
  height: 14px;
  margin: -7px 10px 0 0;
  background-color: #fff;
  border: 2px solid #C4C9CE;
  border-radius: 2px;
  z-index: 2;
}

.c-form-input-check .c-form-input-check__input:checked {
  border-color: #fff;
}

.c-form-input-check .c-form-input-check__input:checked::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  background: url("../image/common/ico/ico_checkbox_checked_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-form-input-check .c-form-input-check__input:checked + .c-form-input-check__label {
  background-color: #00B6FC;
  color: #fff;
}

.c-form-input-check--white .c-form-input-check__label {
  background-color: #fff;
}

.c-form-input-check--white .c-form-input-check__input {
  background-color: #f3f4f5;
}

.c-form-input-check--white .c-form-input-check__input:checked {
  background-color: #fff;
}

@supports (-ms-ime-align: auto) {
  /* Edge */
  .c-form-input-check__input {
    margin-top: -6px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-form-input-check__label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 0;
    background-color: #fff;
    border: 2px solid #C4C9CE;
    border-radius: 2px;
    box-sizing: border-box;
  }
  *::-ms-backdrop, .c-form-input-check__input:checked + .c-form-input-check__label::before {
    background: #fff url("../image/common/ico/ico_checkbox_checked_01@2x.png") center center no-repeat;
    background-size: 10px 8px;
  }
  *::-ms-backdrop, .c-form-input-check__input {
    opacity: 0;
  }
  *::-ms-backdrop, .c-form-input-check__label {
    height: 56px;
  }
}

.c-form-input-check.maker-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 2px;
  z-index: 2;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.c-form-input-check.maker-logo.toyota::before {
  background-image: url("../image/common/logo/logo_toyota@2x.png");
}

.c-form-input-check.maker-logo.nissan::before {
  background-image: url("../image/common/logo/logo_nissan@2x.png");
}

.c-form-input-check.maker-logo.honda::before {
  background-image: url("../image/common/logo/logo_honda@2x.png");
}

.c-form-input-check.maker-logo.mitsubishi::before {
  background-image: url("../image/common/logo/logo_mitsubishi@2x.png");
}

.c-form-input-check.maker-logo.mazda::before {
  background-image: url("../image/common/logo/logo_mazda@2x.png");
}

.c-form-input-check.maker-logo.suzuki::before {
  background-image: url("../image/common/logo/logo_suzuki@2x.png");
}

.c-form-input-check.maker-logo.subaru::before {
  background-image: url("../image/common/logo/logo_subaru@2x.png");
}

.c-form-input-check.maker-logo.daihatsu::before {
  background-image: url("../image/common/logo/logo_daihatsu@2x.png");
}

.c-form-selectbox {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  background-color: #F3F4F5;
  border-radius: 8px;
}

.c-form-selectbox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-form-selectbox__input {
  cursor: pointer;
  width: 123.07692%;
  height: 100%;
  min-height: 56px;
  background: transparent;
  padding: 12px 50px 12px 16px;
  border: none;
  color: #0045AD;
  font-weight: bold;
  /* 20241210 */
  /* font-size: 16px; */
  font-size: 2.0rem;
  font-weight: bold;
  transform: scale(0.8);
  transform-origin: left center;
}

@media all and (min-width: 768px) {
  .c-form-selectbox__input {
    width: 100%;
    padding: 18px 50px 18px 16px;
    transform: scale(1);
    /* 20241210 */
    /* font-size: 1.4rem; */
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.c-form-selectbox--white {
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .c-estimate-search-items .c-form-selectbox__input {
    min-height: 48px;
    padding: 12px 50px 12px 16px;
  }
}

.c-form-select-modal {
  position: relative;
  display: block;
  width: 100%;
  background-color: #F3F4F5;
  border-radius: 8px;
  cursor: pointer;
}

.c-form-select-modal::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-form-select-modal:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-form-select-modal__inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 50px 12px 16px;
  border: none;
  color: #0045AD;
  /* 20241210 */
  /* font-weight: bold; */
  /* font-size: 1.3rem; */
  font-size: 1.4rem;
  font-weight: bold;
  flex-wrap: wrap;
}

.c-form-select-modal__color {
  overflow: hidden;
  /*position: absolute;*/
  /*top: 50%;*/
  /*right: 56px;*/
  width: 31px;
  height: 31px;
  /*margin-top: -16px;*/
  border: 1px solid #fff;
}

.c-form-select-modal__color img {
  width: auto;
  height: 100%;
}

.c-form-select-modal.is-disabled {
  background-color: #C5C9CE;
  cursor: default;
}

.c-form-select-modal.is-disabled::after {
  background: url("../image/common/ico/ico_triangle_white_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-form-select-modal.is-disabled:hover {
    opacity: 1.0;
  }
}

.c-form-select-modal.is-disabled .c-form-select-modal__inner {
  color: #fff;
}

.c-form-select-modal + .c-form-note {
  margin-top: 0.75em;
}

.c-form-select-modal__text {
  font-size: 1.6rem;
  /* 20241210 フォントサイズ追記 */
  padding-right: 10px;
}

.c-form-select-modal__text--color {
  padding-right: 10px;
  /* 20241210 フォントサイズ追記 */
  font-size: 1.6rem;
  flex: 1 1;
}


/* radio & checkbox list */
.c-form-choice-list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px -4px 0;
}

.c-form-choice-list__item {
  width: 50%;
  margin-top: 8px;
  padding: 0 4px;
}

@media all and (min-width: 768px) {
  .c-form-choice-list--1col {
    margin: -8px -4px 0;
  }
}

.c-form-choice-list--1col .c-form-choice-list__item {
  width: 100%;
  padding: 0;
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .c-form-choice-list--1col .c-form-choice-list__item {
    width: 50%;
    padding: 0 4px;
    margin: 8px 0 0;
  }
}

.c-form-choice-list--1col .c-form-choice-list__item:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  .c-form-choice-list--sm1col .c-form-choice-list__item {
    width: 100%;
  }
}

@media all and (min-width: 768px) {
  .c-form-choice-list--md3col .c-form-choice-list__item {
    width: 33.3%;
  }
  .c-form-choice-list--md3col .c-form-choice-list__item:nth-child(3n-2) {
    width: 33.4%;
  }
}

@media all and (min-width: 768px) {
  .c-form-choice-list--md4col .c-form-choice-list__item {
    width: 25%;
  }
}

.c-form-choice-list--sm2md4col .c-form-choice-list__item {
  width: 50%;
}

.choice-between {
  width: 45%!important;
}

@media all and (min-width: 768px) {
  .choice-between {
    width: 25%!important;
  }
}
  
@media all and (min-width: 768px) {
  .c-form-choice-list--sm2md4col .c-form-choice-list__item {
    width: 25%;
  }
}

.c-form-choice-list--sm3md4col .c-form-choice-list__item {
  width: 33.3%;
}

@media all and (min-width: 768px) {
  .c-form-choice-list--sm3md4col .c-form-choice-list__item {
    width: 25%;
  }
}

.c-form-choice-list--sm1md3col .c-form-choice-list__item {
  width: 100%;
}

@media all and (min-width: 768px) {
  .c-form-choice-list--sm1md3col .c-form-choice-list__item {
    width: 33.3%;
  }
  .leaseup {
    width: 50%!important;
  }
}

.c-form-choice-list--sm2md3col .c-form-choice-list__item {
  width: 50%;
}

@media all and (min-width: 768px) {
  .c-form-choice-list--sm2md3col .c-form-choice-list__item {
    width: 33.3%;
  }
  .manufacturer {
    width: 25%!important;
  }
}

.c-form-textarea__text {
  margin-bottom: 1.0em;
  font-size: 1.4rem;
}

.c-form-textarea__input {
  width: 100%;
  min-height: 56px;
  padding: 12px 12px;
  background-color: #F3F4F5;
  border-radius: 6px;
  border: none;
  font-size: 1.3rem;
  line-height: 1.2;
}

.c-form-textarea__input2 {
  width: 100%;
  min-height: 56px;
  padding: 12px 12px;
  background-color: #F3F4F5;
  border-radius: 6px;
  border: none;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "sans-serif";
  font-size: 1.3rem;
  line-height: 1.2;
}

.c-form-textarea--long .c-form-textarea__input {
  min-height: 120px;
}

/* form base layer */
.c-form-set {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-form-set .sp {
    display: none;
  }
}

.c-form-set .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-form-set .pc {
    display: block;
  }
}


.c-form-set__error {
  display: none;
}

.c-form-set.is-error .c-form-input-text
,.c-form-set.is-error .c-form-selectbox
,.c-form-set.is-error .c-form-textarea__input
,.c-form-set.is-error .c-form-input-radio
,.c-form-set.is-error .c-form-input-check
,.c-form-set.is-error .c-form-input-number {
  border: 2px solid #FF6670;
}

.c-form-input-text:disabled
,.c-form-selectbox:disabled
,.c-form-textarea__input:disabled
,.c-form-selectbox__input:disabled
,.c-form-input-radio:disabled
,.c-form-input-check:disabled
,.c-form-input-number:disabled {
  background-color: #ccc;
}
/*
.c-form-set.is-error .c-form-selectbox {
  border: 2px solid #FF6670;
}

.c-form-set.is-error .c-form-input-radio {
  border: 2px solid #FF6670;
}

.c-form-set.is-error .c-form-input-check {
  border: 2px solid #FF6670;
}

.c-form-set.is-error .c-form-input-number {
  border: 2px solid #FF6670;
}
*/
.c-form-set.is-error .c-form-set__error {
  position: absolute;
  top: -25%;
  right: 8px;
  display: inline-block;
  padding: 4px 8px;
  background-color: #FF6670;
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
}

.c-form-set.is-error .c-form-set__error.c-form-set-select__error {
  top: -35%;
}

.c-form-set.is-error .c-form-set__error.c-form-set-radio__error {
  top: -20%;
}

.c-form-set.is-error .c-form-set__error.c-form-set-check__error {
  top: -6%;
}

.c-form-set.is-error .c-form-input-number~.c-form-set__error {
  top: -39%;
  right: 30px;
}
.c-form-set.is-error #co_birth_month-err.c-form-set__error {
  top: -28%;
  right: 40px;
}

.c-form-set.is-error .c-form-textarea__input~.c-form-set__error {
  top: -22px;
}

.c-form-set.is-error #agreement-err.c-form-set__error {
  top: -22px;
}

.c-form-set.is-error #yearlyturnover-err.c-form-set__error {
  right: 55px;
}

.c-form-set.is-error #yearlyturnover_month-err.c-form-set__error {
  right: 40px;
}

.c-form-set.is-error #incapital-err.c-form-set__error {
  right: 55px;
}


/* name */
@media all and (min-width: 768px) {
  .c-form-name-set {
    display: flex;
    align-items: center;
    margin: 0 -20px;
  }
}

.c-form-name-set__item {
  margin-bottom: 16px;
}

@media all and (min-width: 768px) {
  .c-form-name-set__item {
    width: 50%;
    margin: 0;
    padding: 0 20px;
  }
}

.c-form-name-set__item:last-child {
  margin-bottom: 0;
}

.c-form-name-set__label {
  display: flex;
  align-items: center;
  width: 100%;
}

.c-form-name-set__input {
  flex: 1 1;
}

.c-form-name-set__title {
  width: 50px;
  max-width: 50px;
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: -0.15em;
}

/* birth day */
@media all and (min-width: 768px) {
 .c-form-birth-set {
  display: flex;
  align-items: center;
  margin-top: 25px;
 }
}

.c-form-birth-set {
  align-items: center;
  margin-top: 25px;
 }



.c-form-birth-set__item {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.c-form-birth-set__item:last-child {
  margin-right: 0;
}

@media all and (max-width: 767px) {
.c-form-birth-set__item--year {
  margin-bottom: 24px;
 }
}
.c-form-birth-set__item--year .c-form-selectbox__input {
  min-width: 240px;
}

@media all and (min-width: 768px) {
  .c-form-birth-set__item--year .c-form-selectbox__input {
    min-width: 240px;
  }
}

@media all and (max-width: 767px) {
.c-form-birth-set__item--month {
  margin-bottom: 24px;
  min-width: 220px;
 }
}

.c-form-birth-set__item--month .c-form-selectbox__input, .c-form-birth-set__item--day .c-form-selectbox__input {
  min-width: 220px;
}

@media all and (min-width: 768px) {
  .c-form-birth-set__item--month .c-form-selectbox__input, .c-form-birth-set__item--day .c-form-selectbox__input {
    min-width: 160px;
  }
}

.c-form-birth-set__unit {
  display: block;
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  word-break: keep-all;
}

.c-form-birth-set .c-form-selectbox__input {
  padding: 12px 22px 12px 12px;
}

.c-form-birth-set .c-form-selectbox::after {
  right: 12px;
}

/* zip code */
.c-form-zipcode-set {
  display: flex;
  align-items: center;
}

.c-form-zipcode-set__input {
  flex: 1 1;
}

.c-form-zipcode-set__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 120px;
  height: 100%;
  min-height: 56px;
  padding: 16px 40px 16px 16px;
  margin-left: 0px;
  background-color: #0045AD;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  word-break:keep-all;
  line-height: 1.0;
}

.c-form-zipcode-set__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_white_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

/* zip code pattern2 */
.c-form-zipcode-search-set {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media all and (max-width: 359px) {
  .c-form-zipcode-search-set {
    flex-wrap: wrap;
  }
}

.c-form-zipcode-search-set__input {
  /*width: 108px;*/
  min-width: 128px;
  margin-right: 14px;
  margin-bottom: 5px;
}

@media all and (min-width: 768px) {
  .c-form-zipcode-search-set__input {
    width: 100%;
    max-width: 410px;
  }
}

.c-form-zipcode-search-set__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 56px;
  width: 80px;
  min-width: 80px;
  background-color: #0045AD;
  margin-right: 13px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-form-zipcode-search-set__button {
    width: 96px;
    min-width: 96px;
  }
}

.c-form-zipcode-search-set__link {
  flex: 1 1;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 21px;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media all and (max-width: 359px) {
  .c-form-zipcode-search-set__link {
    margin-top: 0.5em;
  }
}

.c-form-zipcode-search-set__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_blank_02@2x.png") top left no-repeat;
  background-size: contain;
}

.c-form-zipcode-search-set__link:hover {
  text-decoration: none;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-form-zipcode-search-set__button {
    position: relative;
    height: 53px;
    min-height: auto;
  }
}
.c-form-input-number {
  height: 56px;
  background-color: #F3F4F5;
  border-radius: 8px;
  padding: 10px 16px;
  border: none;
  font-size: 1.4rem;
}

/* co_birth day */
.c-form-co_birth-set {
  align-items: center;
  margin-top: 25px;
}

@media all and (min-width: 768px) {
  .c-form-co_birth-set {
  display: flex;
  align-items: center;
  margin-top: 25px;
  }
}

.c-form-co_birth-set__item {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.c-form-co_birth-set__item:last-child {
  /*margin-right: 0;*/
}

.c-form-co_birth-set__item--year .c-form-selectbox__input {
  min-width: 88px;
}

c-form-co_birth-set__item--year {
    min-width: 240px;
  }

@media all and (max-width: 767px) {
  .c-form-co_birth-set__item--year {
  margin-bottom: 24px;
  
  
  }
}

@media all and (min-width: 768px) {
  .c-form-co_birth-set__item--month .c-form-selectbox__input{
    min-width: 200px;
  }
}

.c-form-co_birth-set__item--month .c-form-selectbox {
  width: 206px;
}

.c-form-co_birth-set__item--month {
    min-width: 160px;
    display: flex;
}

.c-form-co_birth-set__unit {
  /*display: block;*/
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  word-break: keep-all;
}

.c-form-co_birth-set .c-form-selectbox__input {
  padding: 12px 22px 12px 12px;
}

.c-form-co_birth-set .c-form-selectbox::after {
  right: 12px;
}

/* yearly turnover */

@media all and (min-width: 768px) {
.c-form-yearlyturnover-set {
  display: flex;
  align-items: center;
   margin-top: 25px;
  }
}
.c-form-yearlyturnover-set {
   align-items: center;
   margin-top: 25px;
}

.c-form-yearlyturnover-set__item {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.c-form-yearlyturnover-set__item--turnober{
  margin-bottom :20px;
  display: flex;
}

  .c-form-yearlyturnover-set__item--year .c-form-selectbox__input {
    min-width: 88px;
  }

@media all and (min-width: 768px) {
  .c-form-yearlyturnover-set__item--year .c-form-selectbox__input {
    min-width: 240px;
  }
}

@media all and (max-width: 767px) {
 .c-form-yearlyturnover-set__item--year {
 margin-bottom: 24px;
 }
}

.c-form-yearlyturnover-set__item--month .c-form-selectbox__input{
  min-width: 68px;
}

@media all and (min-width: 768px) {
  .c-form-yearlyturnover-set__item--month .c-form-selectbox__input{
    min-width: 160px;
  }
}

.c-form-yearlyturnover-set__item--month .c-form-selectbox {
  width: 206px;
}

/*.c-form-yearlyturnover-set__item--month {
    min-width: 160px;
}*/

.c-form-yearlyturnover-set__unit {
  /*display: block;*/
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  word-break: keep-all;
}

.c-form-yearlyturnover-set .c-form-selectbox__input {
  padding: 12px 22px 12px 12px;
}

.c-form-yearlyturnover-set .c-form-selectbox::after {
  right: 12px;
}

/* adr copy */
.c-form-adr-copy-set {
  margin-left: 10px;
  margin-bottom :30px;
}

.c-form-adr-copy-set__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  height: 100%;
  min-height: 56px;
  padding: 16px 40px 16px 16px;
  margin-bottom :12px;
  background-color: #0045AD;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-form-adr-copy-set__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/ico/ico_triangle_white_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

/* biz_years */
.c-form-biz_years-set {
  display: flex;
  align-items: center;
  margin-top :25px;
}

.c-form-biz_years-set__item {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.c-form-biz_years-set__unit {
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: bold;
}

/* incapital */
.c-form-incapital-set {
  align-items: center;
  margin-top :25px;
}

.c-form-incapital-set__item {
  display: flex;
  align-items: center;
  margin-right: 16px;
  margin-top :25px;
}

.c-form-incapital-set__unit {
  margin-left: 8px;
  font-size: 1.3rem;
  font-weight: bold;
}

/* driverlicence */
.c-form-driver-licence {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-form-driver-licence {
    max-width: 450px;
    padding: 0 20px;
  }
}

.c-form-driver-licence__before {
  margin-right: 16px;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-form-driver-licence__after {
  margin-left: 16px;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-form-driver-licence__input {
  flex: 1 1;
}

/* cosmo card radio */
.c-form-input-check-cosmo {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.c-form-input-check-cosmo__label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 12px 15px 10px 36px;
  background-color: #F3F4F5;
  color: #0045AD;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-form-input-check-cosmo__label {
    min-height: 56px;
    font-size: 1.4rem;
    padding: 12px 15px 10px 48px;
  }
}

.c-form-input-check-cosmo__input {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 16px;
  height: 16px;
  margin: -8px 10px 0 0;
  border: 2px solid #C4C9CE;
  border-radius: 50%;
  background: #fff;
}

@media all and (min-width: 768px) {
  .c-form-input-check-cosmo__input {
    left: 16px;
  }
}

.c-form-input-check-cosmo__input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
}

.c-form-input-check-cosmo .c-form-input-check-cosmo__input:checked {
  border-color: #fff;
}

.c-form-input-check-cosmo .c-form-input-check-cosmo__input:checked::before {
  background-color: #fff;
  border: 2px solid #00B6FC;
}

.c-form-input-check-cosmo .c-form-input-check-cosmo__input:checked + .c-form-input-check-cosmo__label {
  background-color: #00B6FC;
  color: #fff;
}

.c-form-input-check-cosmo--01 .c-form-input-check-cosmo__label {
  background-image: url("../image/common/img/card_h01.jpg"),url("../image/common/img/card_h02.jpg");
  background-position: right 48px center,right 12px center;
  /*background-size: 38px 24px;*/
}

.c-form-input-check-cosmo--02 .c-form-input-check-cosmo__label {
  background-image: url("../image/common/img/card_o01.jpg"),url("../image/common/img/card_o02.jpg");
  background-position: right 48px center,right 12px center;
  /:background-size: 38px 24px;*/
}

.c-form-input-check-cosmo--03 .c-form-input-check-cosmo__label {
  background-image: url("../image/common/img/card_corpo_house.jpg"),url("../image/common/img/card_corpo_good.jpg"),url("../image/common/img/card_corpo_white.jpg");
  background-position: right 81px center,right 48px center,right 12px center;
  /*background-size: 38px 24px;*/
}

.c-form-input-check-cosmo--04 .c-form-input-check-cosmo__label {
  background-image: url("../image/common/img/card_pro-S.jpg");
  background-position: right 12px center;
  /*background-size: 38px 24px;*/
}

.c-form-input-check-cosmo--01 .c-form-input-check-cosmo__label, .c-form-input-check-cosmo--02 .c-form-input-check-cosmo__label, .c-form-input-check-cosmo--03 .c-form-input-check-cosmo__label, .c-form-input-check-cosmo--04 .c-form-input-check-cosmo__label {
  padding-right: 140px;
  background-repeat: no-repeat;
}

.c-form-nextstep-link__prev {
  margin-top: 32px;
  text-align: center;
}

/* number */
.c-form-number {
  display: flex;
  margin: 0 -16px;
}

.c-form-number__item {
  position: relative;
  padding: 0 16px;
}

@media all and (max-width:767px){
 .c-form-number__item {
  padding: 0 8px;
 }
 .c-form-number__item:first-child {
  padding-left :16px;
 }
}

.c-form-number__item .c-form-set__input {
  max-width: 128px;
}

/*.c-form-number__item:last-child {
  padding-left: 40px;
}*/
.c-form-number__item:first-child::after {
  content: "";
  position: absolute;
  top: 25px;
  right: -6px;
  width: 12px;
  height: 2px;
  background-color: #16283C;
}

/* time zone */
.c-form-timezone {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.c-form-timezone__start, .c-form-timezone__end {
  position: relative;
  padding: 0 16px;
  max-width: 50%;
  flex: auto;
}

@media all and (min-width: 768px) {
  .c-form-timezone__start, .c-form-timezone__end {
    max-width: 240px;
  }
}

.c-form-timezone__start::after {
  content: "～";
  position: absolute;
  top: 50%;
  right: -6px;
  margin-top: -0.75em;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-form-timezone__check {
  width: 100%;
  padding: 0 16px;
}

@media all and (min-width: 768px) {
  .c-form-timezone__check {
    display: flex;
    align-items: center;
    width: auto;
  }
}

.c-form-timezone + .c-form-note {
  margin-top: 1.0em;
}

.c-form-timezone-check {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
  padding-left: 24px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.1;
}

@media all and (min-width: 768px) {
  .c-form-timezone-check {
    margin-top: 0;
  }
}

.c-form-timezone-check__icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -8px 10px 0 0;
  background-color: #fff;
  border: 2px solid #C4C9CE;
  border-radius: 2px;
  box-sizing: border-box;
}

.c-form-timezone-check__input {
  position: absolute;
  opacity: 0;
}

.c-form-timezone-check__input:checked + .c-form-timezone-check__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  background: url("../image/common/ico/ico_checkbox_checked_01@2x.png") top left no-repeat;
  background-size: 10px 8px;
}

/* confirm */
.c-form-confirm-data {
  overflow: hidden;
}

.c-form-confirm-data__table {
  width: 100%;
  border-left: 1px solid #C4C9CE;
  border-right: 1px solid #C4C9CE;
  border-bottom: 1px solid #C4C9CE;
}

.c-form-confirm-data__table thead th {
  width: 100%;
  padding: 8px 12px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 1px solid #0045AD;
  border-right: 1px solid #0045AD;
  text-align: left;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table thead th {
    padding: 10px 16px;
  }
}

.c-form-confirm-data__table tbody tr td {
  padding: 13px 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid #C4C9CE;
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table tbody tr td {
    padding: 13px 16px;
    font-size: 1.4rem;
  }
}

.c-form-confirm-data__table tbody tr td:nth-child(1) {
  width: 130px;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table tbody tr td:nth-child(1) {
    width: 50%;
  }
}

.c-form-confirm-data__table tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table tbody tr td:nth-child(2) {
    width: 50%;
  }
}

.c-form-confirm-data__table.table_lcp {
  /*めんくる用*/
    border-collapse: separate;
}

.c-form-confirm-data__table.table_lcp tbody tr td:nth-child(1) {
  /*めんくる用*/
    /*width: 130px;*/
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table.table_lcp tbody tr td:nth-child(1) {
  /*めんくる用*/
    width: 20%;
  }
  .c-form-confirm-data__table.table_lcp tbody tr td:nth-child(2) {
  /*めんくる用*/
  flex: 3;
  }
  
}

.c-form-confirm-data__table.table_lcp tbody tr td:nth-child(2) {
  /*めんくる用*/
  width: 50%;
}

/*.c-form-confirm-data__table.table_lcp tbody tr:nth-child(n+1) {
  /*めんくる用*//*
  display: none;
}*/

/*.c-form-confirm-data__table.table_lcp tbody tr:nth-child(n+1) td {
  /*めんくる用*/
  display: none;
}*/

.c-form-confirm-data__table tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

/*.c-form-confirm-data__table tbody tr:nth-child(n+5) {
  display: none;
}

.c-form-confirm-data__table tbody tr:nth-child(n+5) td {
  display: none;
}*/

.c-form-confirm-data__table tbody tr:last-child td {
  border-bottom: none;
}

.c-form-confirm-data__table.is-open tbody tr:nth-child(n+5) {
  display: table-row;
}

.c-form-confirm-data__table2 {
  width: 100%;
  border-left: 1px solid #C4C9CE;
  border-right: 1px solid #C4C9CE;
  border-bottom: 1px solid #C4C9CE;
}

.c-form-confirm-data__table2 thead th {
  width: 100%;
  padding: 8px 12px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 1px solid #0045AD;
  border-right: 1px solid #0045AD;
  text-align: left;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table2 thead th {
    padding: 10px 16px;
  }
}

.c-form-confirm-data__table2 tbody tr td {
  padding: 13px 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid #C4C9CE;
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table2 tbody tr td {
    padding: 13px 16px;
    font-size: 1.4rem;
  }
}

.c-form-confirm-data__table2 tbody tr td:nth-child(1) {
  width: 130px;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table2 tbody tr td:nth-child(1) {
    width: 50%;
  }
}

.c-form-confirm-data__table2 tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data__table2 tbody tr td:nth-child(2) {
    width: 50%;
  }
}

.c-form-confirm-data__table2 tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

.c-form-confirm-data__table2 tbody tr:last-child td {
  border-bottom: none;
}

.c-form-confirm-data__button {
  display: block;
  margin-top: -2px;
  padding: 13px 20px;
  background-color: #F3F4F5;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.c-form-confirm-data__button__inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
}

.c-form-confirm-data__button__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 8px;
  margin-top: -5px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-form-confirm-data__button__inner .close {
  display: none;
}

.c-form-confirm-data__button.is-open .c-form-confirm-data__button__inner .open {
  display: none;
}

.c-form-confirm-data__button.is-open .c-form-confirm-data__button__inner .close {
  display: block;
}

.c-form-confirm-data__button.is-open .c-form-confirm-data__button__inner::after {
  transform: rotate(180deg);
}

.c-form-confirm-data__table.is-open~.c-form-confirm-data__button .open {
  display: none;
}

.c-form-confirm-data__table.is-open~.c-form-confirm-data__button .close {
  display: block;
}

.c-form-confirm-data__table.is-open~.c-form-confirm-data__button .c-form-confirm-data__button__inner ::after {
  transform: rotate(90deg);
}

.c-form-confirm-data + .c-form-confirm-data {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .c-form-confirm-data + .c-form-confirm-data {
    margin-top: 40px;
  }
}

/* 上記の記載事項について、同意します チェックボックス */
.c-form-agreement__box {
  overflow: hidden;
  border: 2px solid #F3F4F5;
  border-radius: 8px;
  height: 160px;
  padding: 16px 16px;
  margin-bottom: 30px;
  overflow-y: auto;
}

.c-form-agreement__box__inner {
  font-size: 1.2rem;
}

.c-form-agreement__box__inner p {
  margin-bottom: 1.5em;
}

.c-form-agreement__box__inner h1 {
  margin-bottom: 1.0em;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
}

.c-form-agreement__box__inner h2,
.c-form-agreement__box__inner h3 {
  margin-bottom: 1.0em;
  font-weight: bold;
}

.c-form-agreement__box__inner ol {
  padding-left: 2.0em;
}

.c-form-agreement__box__inner ol li {
  margin-bottom: 1.0em;
  list-style-type: decimal;
}

.c-form-agreement__box__inner ul {
  padding-left: 2.0em;
}

.c-form-agreement__box__inner ul li {
  margin-bottom: 1.0em;
}

.c-form-agreement__box__inner table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  padding: 0;
  text-indent: 0;
  height: 100%;
}

.c-form-agreement__box__inner th {
  text-align: left;
  padding: 6px;
  vertical-align: top;
  color: #333;
  background-color: #eee;
  border: 1px solid #b9b9b9;
}

.c-form-agreement__box__inner .lft {
  width: 45%;
}

.c-form-agreement__box__inner .rgt {
  width: 55%;
}

.c-form-agreement__box__inner td {
  width: 50%;
  text-align: left;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #b9b9b9;
}

.c-form-agreement__error {
  display: none;
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  .c-form-agreement__error {
    margin-top: 12px;
  }
}

.c-form-agreement.is-error .c-form-agreement__error {
  display: block;
}

.c-form-entry-finish {
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish {
    margin-bottom: 80px;
  }
}

.c-form-entry-finish__text {
  margin-bottom: 0.5em;
  color: #FF6670;
  /* 20241210 */
  /* font-size: 1.4rem; */
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish__text {
    margin-bottom: 1.0em;
    font-size: 1.6rem;
  }
}

.c-form-entry-finish__tyokuhan {
  margin-bottom: 50px;
  margin-top: 30px;
  color: #FF6670;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish__tyokuhan {
    margin-bottom: 80px;
    text-align: center;
  }
}

.c-form-entry-finish__tyokuhan p{
  margin-bottom: 50px;
  margin: auto;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish__tyokuhan p{
    margin-bottom: 80px;
    text-align: left;
  }
}

.c-form-entry-finish__button .c-button-red__inner > span {
  padding: 11px 38px;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish__button .c-button-red__inner > span {
    padding: 21px 38px;
  }
}

.c-form-entry-finish-ss {
  margin-bottom: 150px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish-ss {
    margin-bottom: 80px;
  }
}

.c-form-entry-finish-ss__text {
  margin-bottom: 0.75em;
  color: #0045AD;
  /* 20241210 */
  /* font-size: 1.4rem; */
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish-ss__text {
    font-size: 1.6rem;
  }
}

.c-form-entry-finish-ss__link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1;
}

.c-form-entry-finish-ss__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  transform: translate3d(0, -50%, 0);
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-form-entry-finish-ss__link:hover .c-form-entry-finish-ss__link__inner {
    text-decoration: underline;
  }
}

.c-form-entry-finish-ss__link__inner {
  display: inline-block;
  vertical-align: middle;
  padding: 0 18px 0 0;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-form-entry-finish-ss__link::before {
    margin-top: -7px;
  }
}

.c-form-search {
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 6px;
}

.c-form-search__input {
  width: 100%;
  height: 48px;
  padding: 10px 48px 10px 12px;
  background-color: #fff;
  border: none;
  font-size: 1.4rem;
}

.c-form-search__button {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_search_grass_blue_01@2x.png") top left no-repeat;
  background-size: contain;
}

/* error text */
.c-form-error-text {
  position: relative;
  padding-left: 17px;
  color: #FF6670;
  font-weight: bold;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-form-error-text {
    padding-left: 21px;
    font-size: 1.4rem;
  }
}

.c-form-error-text::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 12px;
  height: 12px;
  background: url("../image/common/ico/ico_error_red_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-form-error-text::before {
    top: 0.2em;
    width: 16px;
    height: 16px;
  }
}

/* 見積もり結果 審査お申し込み0ご納車までの流れを確認 */
.c-estimate-flow {
  padding: 44px 32px 88px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow {
    padding: 80px 40px 105px;
    max-width: 1160px;
    margin: 0 auto;
  }
}

.c-estimate-flow__close {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0045AD;
  z-index: 10;
}

@media all and (min-width: 768px) {
  .c-estimate-flow__close {
    padding: 14px 20px;
    font-size: 2.4rem;
  }
}

.c-estimate-flow__close span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 28px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow__close span {
    padding-right: 36px;
  }
}

.c-estimate-flow__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_close_blue_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-flow__close span::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step {
    display: flex;
    flex-wrap: wrap;
    margin: -40px 0 0;
  }
}

.c-estimate-flow-step__item {
  position: relative;
  min-height: 312px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__item {
    margin: 40px 0 0 40px;
    min-height: 372px;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-flow-step__item {
    width: calc(50% - 40px);
  }
}

@media all and (min-width: 992px) {
  .c-estimate-flow-step__item {
    width: calc(33.33% - 40px);
  }
}

.c-estimate-flow-step__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -29px;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url("../image/common/ico/ico_arrow_left_red_01.svg") center no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__item::after {
    top: 50%;
    left: -32px;
    right: auto;
    bottom: auto;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    transform: rotate(0deg);
  }
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__item:first-child::after {
    display: none;
  }
}

.c-estimate-flow-step__item:last-child {
  margin-bottom: 0;
}

.c-estimate-flow-step__item:last-child::after {
  display: none;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__item:last-child::after {
    display: block;
  }
}

.c-estimate-flow-step__heading {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px 22px 16px 56px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__heading {
    min-height: 84px;
    padding: 16px 24px 16px 76px;
  }
}

.c-estimate-flow-step__number {
  position: absolute;
  top: -4px;
  left: -16px;
  width: 56px;
  height: 56px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0045AD;
  color: #fff;
  border-radius: 8px;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__number {
    top: -12px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
}

.c-estimate-flow-step__number .sub {
  font-weight: bold;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__number .sub {
    margin-bottom: 3px;
    font-size: 1.4rem;
  }
}

.c-estimate-flow-step__number .number {
  font-family: 'Barlow', sans-serif;
  font-weight: bold;
  font-size: 2.8rem;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__number .number {
    font-weight: 600;
    font-size: 4.0rem;
  }
}

.c-estimate-flow-step__title {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.25;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__title {
    font-size: 2.0rem;
  }
}

.c-estimate-flow-step__content {
  padding: 0 16px 20px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__content {
    padding: 0 24px 16px;
  }
}

.c-estimate-flow-step__image {
  overflow: hidden;
  margin: 0 auto 15px;
  border-radius: 4px;
  max-width: 280px;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__image {
    border-radius: 8px;
  }
}

.c-estimate-flow-step__description {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__description {
    line-height: 1.65;
  }
}

.c-estimate-flow-step__note {
  position: relative;
  padding-left: 1.25em;
  color: #959EA7;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-estimate-flow-step__note {
    font-size: 1.2rem;
  }
}

.c-estimate-flow-step__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-basic-table {
  width: 100%;
  border: 1px solid #C4C9CE;
}

.c-basic-table tbody th,
.c-basic-table tbody td {
  padding: 6px 8px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
  text-align: left;
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .c-basic-table tbody th,
  .c-basic-table tbody td {
    padding: 10px 10px;
    font-size: 1.4rem;
  }
}

.c-basic-table tbody th {
  width: 30%;
  background-color: #F3F4F5;
  font-weight: normal;
}

.c-car-info-table-set__item:nth-child(n+2) {
  display: none;
}

.c-car-info-table-set__button {
  display: block;
  width: 100%;
  background-color: #F3F4F5;
  padding: 13px 15px;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}

.c-car-info-table-set__button__inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 20px;
}

.c-car-info-table-set__button__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 8px;
  margin-top: -5px;
  background: url(../image/common/ico/ico_triangle_blue_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

.c-car-info-table-set__button__inner .open {
  display: block;
}

.c-car-info-table-set__button__inner .close {
  display: none;
}

.c-car-info-table-set.is-open .c-car-info-table-set__button__inner::after {
  transform: rotate(180deg);
}

.c-car-info-table-set.is-open .c-car-info-table-set__button__inner .open {
  display: none;
}

.c-car-info-table-set.is-open .c-car-info-table-set__button__inner .close {
  display: block;
}

.c-car-info-table-set + .c-text-note {
  margin-top: 1.0em;
}

.c-car-info-table {
  width: 100%;
  border: 1px solid #C4C9CE;
}

.c-car-info-table thead th {
  padding: 8px 10px;
  margin: 0 -1px;
  background-color: #8A939D;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-car-info-table thead th {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.c-car-info-table tbody th,
.c-car-info-table tbody td {
  width: 25%;
  padding: 6px 8px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
  text-align: center;
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .c-car-info-table tbody th,
  .c-car-info-table tbody td {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.c-car-info-table tbody th sup,
.c-car-info-table tbody td sup {
  font-size: 10px;
}

.c-car-info-table tbody th {
  background-color: #F3F4F5;
  font-weight: normal;
}

.c-law-table {
  width: 100%;
  border: 1px solid #C4C9CE;
}

.c-law-table tbody th,
.c-law-table tbody td {
  padding: 6px 8px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
  text-align: left;
  word-break: break-all;
  vertical-align: top;
}

@media all and (min-width: 768px) {
  .c-law-table tbody th,
  .c-law-table tbody td {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.c-law-table tbody th {
  width: 30%;
  background-color: #F3F4F5;
  font-weight: normal;
}

.c-schoollist-table {
  width: 100%;
  border-bottom: 1px solid #C4C9CE;
}

@media all and (min-width: 768px) {
  .c-schoollist-table {
    border: 1px solid #C4C9CE;
  }
}

.c-schoollist-table tbody th,
.c-schoollist-table tbody td {
  padding: 6px 8px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
  text-align: left;
  word-break: break-all;
  vertical-align: top;
}

@media all and (min-width: 768px) {
  .c-schoollist-table tbody th,
  .c-schoollist-table tbody td {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.c-schoollist-table tbody th {
  width: 122px;
  background-color: #8A939D;
  color: #fff;
  font-weight: normal;
}

.c-schoollist-table tbody .school {
  width: 200px;
  background-color: #F3F4F5;
}

@media all and (max-width: 767px) {
  .c-schoollist-table tbody th, .c-schoollist-table tbody td {
    width: 100% !important;
    display: block;
    border-bottom: none;
  }
}

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

.c-pager__prev, .c-pager__next {
  position: relative;
  overflow: hidden;
  display: block;
  width: 32px;
  height: 32px;
  background-color: #0045AD;
  border-radius: 4px;
  color: #fff;
  text-indent: 100%;
  white-space: nowrap;
}

@media all and (min-width: 768px) {
  .c-pager__prev, .c-pager__next {
    width: 48px;
    height: 48px;
  }
}

.c-pager__prev::before, .c-pager__next::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 13px;
  margin: auto;
  background: url("../image/common/ico/ico_arrow_right_white_01.svg") top left no-repeat;
  background-size: contain;
}

.c-pager__prev.is-disabled, .c-pager__next.is-disabled {
  background-color: #C4C9CE;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .c-pager__prev:hover, .c-pager__next:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-pager__prev {
  margin-right: 48px;
}

.c-pager__prev::before {
  transform: translateY(-1px) rotate(180deg);
}

.c-pager__next {
  margin-left: 48px;
}

.c-pager-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
}

@media all and (max-width: 359px) {
  .c-pager-list {
    margin: 0 -4px;
  }
}

.c-pager-list__item {
  width: 32px;
  height: 32px;
  margin: 0 8px;
}

@media all and (min-width: 768px) {
  .c-pager-list__item {
    width: 48px;
    height: 48px;
  }
}

@media all and (max-width: 359px) {
  .c-pager-list__item {
    margin: 0 4px;
  }
}

.c-pager-list__item.is-active .c-pager-list__link {
  background-color: #0045AD;
  color: #fff;
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .c-pager-list__item.is-active .c-pager-list__link:hover {
    opacity: 1.0;
    cursor: default;
  }
}

.c-pager-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F4F5;
  border-radius: 4px;
  height: 100%;
  color: #0045AD;
  font-weight: bold;
  font-size: 2.0rem;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-pager-list__link {
    font-size: 2.4rem;
  }
}

@media all and (min-width: 768px) {
  .c-pager-list__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-pager--5items .c-pager__prev {
  margin-right: 28px;
}

@media all and (max-width: 767px) {
  .c-pager--5items .c-pager__prev {
    margin-right: auto;
  }
}

.c-pager--5items .c-pager__next {
  margin-left: 28px;
}

@media all and (max-width: 767px) {
  .c-pager--5items .c-pager__next {
    margin-left: auto;
  }
}

.c-anchor-navi {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-anchor-navi {
    margin-bottom: 80px;
  }
}

.c-anchor-navi__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  margin: 0 -8px;
}

@media all and (min-width: 768px) {
  .c-anchor-navi__inner {
    margin: 0 -19px;
  }
}

.c-anchor-navi__item {
  width: 33.33%;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .c-anchor-navi__item {
    padding: 0 19px;
  }
}

.c-anchor-navi__item:nth-child(3n-2) {
  width: 33.34%;
}

.c-anchor-navi__link {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: #0045AD;
}

.c-anchor-navi__link:hover::after {
  transform: translate3d(2px, 2px, 0);
}

.c-anchor-navi__link:hover .inner {
  transform: translate3d(-2px, -2px, 0);
}

.c-anchor-navi__link::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-anchor-navi__link::after {
    border-radius: 12px;
  }
}

.c-anchor-navi__link .inner {
  position: relative;
  display: block;
  padding: 12px 10px 30px;
  height: 100%;
  min-height: 80px;
  background-color: #fff;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-anchor-navi__link .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2.0rem;
    padding: 12px 40px 10px 10px;
  }
}

.c-anchor-navi__link .inner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .c-anchor-navi__link .inner::before {
    top: 50%;
    left: auto;
    right: 16px;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 0;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-anchor-navi__link .inner {
    min-height: 50px;
    padding: 12px 40px 8px 12px;
  }
  *::-ms-backdrop, .c-anchor-navi__link .inner::after {
    content: '';
    min-height: inherit;
    font-size: 0;
  }
}

/* card カード系モジュール
---------------------------------------------------------- */
/* 車情報 */
.c-car-infomation-card {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0 4px 4px 0;
  color: #16283C;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card:hover .c-car-infomation-card__content,
  .c-car-infomation-card:hover .c-car-infomation-card__button {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-car-infomation-card:hover::after {
    transform: translate3d(4px, 4px, 0);
  }
}

.c-car-infomation-card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: url(../image/common/bg/bg_stripe_45deg_red_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card::after {
    border-radius: 12px 12px 8px 8px;
  }
}

.c-car-infomation-card__content {
  position: relative;
  background-color: #FEF7EC;
  /* 20241210 */
  /* padding: 8px 24px 7px; */
  padding: 8px 20px 7px;
  border-radius: 8px 8px 0 0;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__content {
    padding: 16px 24px 12px;
    border-radius: 12px 12px 0 0;
  }
}

.c-car-infomation-card__button {
  position: relative;
  padding: 12px 12px;
  background-color: #FF6670;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__button {
    padding: 8px 12px;
    font-size: 1.6rem;
  }
}

.c-car-infomation-card__button__inner {
  position: relative;
  display: block;
  padding: 0 16px 0 0;
}

.c-car-infomation-card__button__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__button__inner::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-car-infomation-card__title {
  margin-bottom: 8px;
  /* 20241210 */
  /* font-size: 1.0rem; */
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__title {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
}

.c-car-infomation-card__title em {
  display: block;
  font-style: normal;
  /* 20241210 */
  /* font-size: 1.8rem; */
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__title em {
  /* 20241210 */
  /* font-size: 2.0rem; */
    font-size: 1.8rem;
  }
}

.c-car-infomation-card__image {
  overflow: hidden;
  margin: 0 auto;
  padding: 8px 0;
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__image {
    border-radius: 8px;
  }
}

.c-car-infomation-card__icon {
  display: block;
  margin-top: 4px;
  padding: 4px 3px 4px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  /* 20241210 */
  /* font-size: 1.0rem; */
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__icon {
    padding: 6px 3px 5px;
    font-size: 1.4rem;
  }
}

.c-car-infomation-card__icon.packEv {
  background-color: #00AD92;
}

.c-car-infomation-card__icon.packGold {
  background-color: #D6BE32;
}

.c-car-infomation-card__icon.packSilver {
  background-color: #A3A3A3;
}

.c-car-infomation-card__icon.packWhite {
  background-color: #EAEAEA;
  color: #16283C;
}

.c-car-infomation-card__menkuru {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 0 13px;
  margin: 5px -5px 5px;
  font-weight: bold;
  font-size: 1.0rem;
  color: #FF6670;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__menkuru {
    padding: 0 22px;
    font-size: 1.4rem;
  }
}

.c-car-infomation-card__menkuru::before, .c-car-infomation-card__menkuru::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 1px;
  background-color: #FF6670;
  border-radius: 2px;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__menkuru::before, .c-car-infomation-card__menkuru::after {
    width: 16px;
    height: 2px;
    margin-top: -1px;
    border-radius: 4px;
  }
}

.c-car-infomation-card__menkuru::before {
  left: 0;
}

.c-car-infomation-card__menkuru::after {
  right: 0;
}

.c-car-infomation-card__menkuru + .c-car-infomation-card__price {
  margin-top: -5px;
}

.c-car-infomation-card__for-business {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: -14px;
  right: -8px;
  padding: 5px 4px 4px;
  background-color: #00B6FC;
  color: #fff;
  font-size: 1.0rem;
  font-weight: bold;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__for-business {
    top: -16px;
    right: -16px;
    padding: 8px 8px 7px;
    font-size: 1.2rem;
    border-radius: 8px;
  }
  .c-car-infomation-card__for-business br {
    display: none;
  }
}

.c-car-infomation-card__for-business::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: -8px;
  width: 16px;
  height: 14px;
  background: url(../image/common/ico/ico_triangle_lightblue_baloon_01@2x.png) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__for-business::after {
    right: 14px;
    bottom: -11px;
    width: 20px;
    height: 18px;
  }
}

.c-car-infomation-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
}

.c-car-infomation-card__dont-est {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  height: 3.0rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.0;
}


@media all and (min-width: 768px) {
  .c-car-infomation-card__price {
    font-size: 1.6rem;
  }
  
  .c-car-infomation-card__dont-est {
    font-size: 1rem;
    height: 4.2rem;
  }
}

.c-car-infomation-card__price__month {
  display: block;
  margin-right: 4px;
  line-height: 1.1;
}

.c-car-infomation-card__price__month > span {
  display: block;
}

.c-car-infomation-card__price__amount {
  color: #0045AD;
  font-size: 3.0rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-infomation-card__price__amount {
    font-size: 4.2rem;
  }
}

.c-car-infomation-card__price__unit {
  display: block;
  white-space: nowrap;
  margin-left: 4px;
  line-height: 1.5;
}

.c-car-infomation-card--white .c-car-infomation-card__content {
  background-color: #fff;
}

/* 特選車 */
.c-special-car-card {
  position: relative;
  background-color: #fff;
  border: 3px solid #D6BE32;
  padding: 60px 16px 18px;
  border-radius: 8px;
}

@media all and (max-width: 359px) {
  .c-special-car-card {
    padding: 45px 12px 16px;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 12px;
    padding: 64px 35px 24px 15px;
  }
}

.c-special-car-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 20px);
  max-width: 326px;
  height: 100%;
  background: url("../image/common/bg/bg_special_car_03@2x.png") top 60px center no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-special-car-card::before {
    display: none;
  }
}

.c-special-car-card__visual {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-special-car-card__visual {
    width: 50%;
  }
  .c-special-car-card__visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: url("../image/common/bg/bg_special_car_04@2x.png") no-repeat;
    background-size: contain;
    background-position: 8% center;
    z-index: 2;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card__visual {
    width: 56%;
  }
  .c-special-car-card__visual::before {
    background-position: top center;
  }
}

.c-special-car-card__details {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-special-car-card__details {
    width: 50%;
    padding: 16px 0 0 20px;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card__details {
    width: 44%;
  }
}

.c-special-car-card__copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, -24px, 0);
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-special-car-card__copy {
    padding: 0 40px;
  }
}

.c-special-car-card__copy .inner {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background-color: #D6BE32;
  width: 279px;
  padding: 8px 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

@media all and (max-width: 359px) {
  .c-special-car-card__copy .inner {
    width: 235px;
    font-size: 1.3rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card__copy .inner {
    display: block;
    width: auto;
    padding: 13px 28px;
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card__copy .inner::after {
    content: "";
    position: absolute;
    bottom: -11px;
    width: 16px;
    height: 16px;
    background: url("../image/common/ico/ico_triangle_gold_under_01@2x.png") top left no-repeat;
    background-size: contain;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card__copy .inner::after {
    left: 25%;
    margin-left: -24px;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card__copy .inner::after {
    left: 192px;
  }
}

.c-special-car-card__name {
  position: relative;
  margin-bottom: 10px;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  z-index: 2;
}

@media all and (max-width: 359px) {
  .c-special-car-card__name {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card__name {
    font-size: 1.6rem;
  }
}

.c-special-car-card__name em {
  display: block;
  font-size: 2.4rem;
  font-style: normal;
}

@media all and (max-width: 359px) {
  .c-special-car-card__name em {
    font-size: 2.0rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card__name em {
    font-size: 3.2rem;
  }
}

.c-special-car-card__image {
  position: relative;
  margin-bottom: 16px;
  text-align: center;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-special-car-card__image {
    margin: 0;
  }
}

.c-special-car-card__image .image {
  margin: 0 auto;
  width: 100%;
  max-width: 288px;
}

@media all and (min-width: 768px) {
  .c-special-car-card__image .image {
    max-width: 380px;
  }
}

.c-special-car-card__image .note {
  position: relative;
  font-size: 1.2rem;
  z-index: 3;
  margin-top: 10px;
}

@media all and (max-width: 359px) {
  .c-special-car-card__image .note {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card__image .note {
    font-size: 1.4rem;
  }
}

.c-special-car-card-recommend-button {
  position: relative;
  display: block;
  max-width: 205px;
  padding: 10px 14px 9px;
  margin: 0 auto 16px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 20px;
  text-align: center;
  z-index: 3;
}

@media all and (max-width: 359px) {
  .c-special-car-card-recommend-button {
    padding: 9px 14px 8px;
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-recommend-button {
    max-width: 280px;
    margin: 20px auto 0;
    padding: 8px 16px;
    font-size: 1.6em;
    z-index: 2;
  }
  .c-special-car-card-recommend-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-special-car-card-recommend-button__inner {
  display: block;
  position: relative;
  padding: 0 30px;
}

@media all and (min-width: 768px) {
  .c-special-car-card-recommend-button__inner {
    padding: 0 25px 0 0;
  }
}

.c-special-car-card-recommend-button__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_zoom_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (max-width: 359px) {
  .c-special-car-card-recommend-button__inner::after {
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
}

.c-special-car-card-estimate-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px;
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list {
    margin: 0 0 35px;
  }
}

.c-special-car-card-estimate-list__item {
  width: 50%;
  padding: 0 7px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list__item {
    width: 100%;
    padding: 0;
    margin-bottom: 36px;
    text-align: left;
  }
  .c-special-car-card-estimate-list__item:last-child {
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .c-special-car-card-estimate-list__heading .c-special-car-card-estimate-list__title {
    flex: 1 1;
  }
}

.c-special-car-card-estimate-list__title {
  font-weight: bold;
  font-size: 1.4rem;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list__title {
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list__title {
    padding-bottom: 0.25em;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list__title {
    font-size: 1.3rem;
    margin-right: 5px;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list__title {
    margin-right: 15px;
    font-size: 1.4rem;
  }
}

.c-special-car-card-estimate-list__title em {
  margin-right: 0.085em;
  color: #00B6FC;
  font-style: normal;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list__title em {
    font-size: 2.0rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list__title em {
    font-size: 2.4rem;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list__title em {
    font-size: 3.0rem;
  }
}

.c-special-car-card-estimate-list-amount {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list-amount {
    flex-wrap: nowrap;
  }
}

.c-special-car-card-estimate-list-amount__month {
  margin-right: 2px;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.0;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list-amount__month {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list-amount__month {
    margin-right: 2px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list-amount__month {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list-amount__month {
    font-size: 1.4rem;
  }
}

.c-special-car-card-estimate-list-amount__month span {
  display: block;
}

.c-special-car-card-estimate-list-amount__amount {
  margin-bottom: -0.1em;
  color: #0045AD;
  font-size: 3.4rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list-amount__amount {
    font-size: 3.0rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list-amount__amount {
    font-size: 4.0rem;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list-amount__amount {
    font-size: 4.3rem;
  }
}

.c-special-car-card-estimate-list-amount__unit {
  margin-left: 2px;
  font-weight: bold;
  line-height: 1.2;
}

.c-special-car-card-estimate-list-amount__unit .tax {
  display: block;
  font-size: 1.0rem;
  transform: scale(0.8);
  transform-origin: left center;
  word-break: keep-all;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list-amount__unit .tax {
    font-size: 10px;
    transform-origin: 0.25em center;
    transform: scale(0.6);
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-list-amount__unit .tax {
    width: 100%;
    transform: scale(1);
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list-amount__unit .tax {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list-amount__unit .tax {
    font-size: 1.1rem;
  }
}

.c-special-car-card-estimate-list-amount__unit .yen {
  display: block;
  font-size: 1.2rem;
}

@media all and (max-width: 360px) {
  .c-special-car-card-estimate-list-amount__unit .yen {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-special-car-card-estimate-list-amount__unit .yen {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 992px) {
  .c-special-car-card-estimate-list-amount__unit .yen {
    font-size: 1.4rem;
  }
}

.c-special-car-card-estimate-button {
  display: block;
  background-color: #FF6670;
  padding: 13px 12px 13px 12px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
}

@media all and (max-width: 359px) {
  .c-special-car-card-estimate-button {
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-button {
    padding: 14px 18px;
    font-size: 1.8rem;
  }
  .c-special-car-card-estimate-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-special-car-card-estimate-button__inner {
  position: relative;
  display: block;
  padding-right: 20px;
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-button__inner {
    padding-right: 25px;
  }
}

.c-special-car-card-estimate-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (max-width: 359px) {
  .c-special-car-card-estimate-button__inner::before {
    width: 13px;
    height: 13px;
    margin-top: -6px;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-estimate-button__inner::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-special-car-card-link {
  margin-top: 20px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-special-car-card-link {
    text-align: right;
  }
}

.c-special-car-card-link__inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 25px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (max-width: 359px) {
  .c-special-car-card-link__inner {
    padding: 0 16px;
    font-size: 1.2rem;
  }
}

.c-special-car-card-link__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (max-width: 359px) {
  .c-special-car-card-link__inner::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
  }
}

@media all and (min-width: 768px) {
  .c-special-car-card-link__inner::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-special-car-card-link__inner:hover {
  opacity: 0.75;
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.c-special-recommend-modal {
  display: none;
}

.c-special-recommend-modal__inner {
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 16px;
}

@media all and (min-width: 768px) {
  .c-special-recommend-modal__inner {
    padding: 8px 8px 48px;
    border-radius: 12px;
  }
}

.c-special-recommend-modal__title {
  padding: 8px 16px;
  margin-bottom: 15px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
}

@media all and (min-width: 768px) {
  .c-special-recommend-modal__title {
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 2.4rem;
  }
}

.c-special-recommend-modal__text {
  font-size: 1.4rem;
  line-height: 1.65;
}

@media all and (min-width: 768px) {
  .c-special-recommend-modal__text {
    padding: 40px 40px 0;
  }
}

/* 車ランキング情報 */
.c-ranking-list {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-ranking-list {
    margin-bottom: 80px;
  }
}

.c-ranking-list__item {
  margin-bottom: 32px;
}

@media all and (min-width: 768px) {
  .c-ranking-list__item {
    margin-bottom: 40px;
  }
}

.c-ranking-list__item:last-child {
  margin-bottom: 0;
}

.c-ranking-card__content {
  margin-bottom: 16px;
}

.c-ranking-card__button {
  padding: 0 16px;
}

.c-ranking-card-info {
  position: relative;
  display: block;
  color: #16283C;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info:hover .c-ranking-card-info__inner {
    transform: translate3d(-1px, -1px, 0);
  }
  .c-ranking-card-info:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

.c-ranking-card-info__inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 20px 24px;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__inner {
    display: block;
    padding: 32px 45px 32px 32px;
  }
  .c-ranking-card-info__inner::after {
    display: block;
    clear: both;
    content: "";
  }
}

.c-ranking-card-info__inner::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__inner::before {
    width: 20px;
    height: 20px;
  }
}

.c-ranking-card-info::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

.c-ranking-card-info__number {
  position: absolute;
  top: -12px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EAEAEA;
  width: 48px;
  height: 50px;
  color: #00B6FC;
  font-size: 3.0rem;
  font-weight: bold;
  border-radius: 3px;
  line-height: 1.0;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__number {
    top: -16px;
    width: 62px;
    height: 64px;
    font-size: 3.4rem;
    border-radius: 5px;
  }
}

.c-ranking-card-info__number::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 7px 24px;
  border-color: transparent transparent #ffffff transparent;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__number::after {
    border-width: 0 31px 10px 31px;
  }
}

.c-ranking-card-info__title {
  width: 100%;
  margin-bottom: 1.0em;
  padding: 0 48px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__title {
    float: right;
    width: 50%;
    padding: 0;
    margin-bottom: 1.5em;
    font-size: 1.4rem;
    text-align: left;
  }
}

.c-ranking-card-info__title em {
  display: block;
  font-size: 2.0rem;
  font-style: normal;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__title em {
    font-size: 2.8rem;
  }
}

.c-ranking-card-info__image {
  width: 164px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__image {
    float: left;
    width: 50%;
  }
}

.c-ranking-card-info__image .image {
  width: 100%;
  max-width: 164px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__image .image {
    max-width: 360px;
  }
}

.c-ranking-card-info__image .caption {
  font-size: 1.0rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__image .caption {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.c-ranking-card-info__description {
  flex: 1 1;
  padding-left: 8px;
  font-size: 1.3rem;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__description {
    float: right;
    width: 50%;
    padding: 0;
    font-size: 1.65rem;
    line-height: 1.75;
  }
}

/* rank number */
.c-ranking-card-info__number[data-rank="1"],
.c-ranking-card-info__number[data-rank="2"],
.c-ranking-card-info__number[data-rank="3"] {
  align-items: flex-start;
  padding-top: 7px;
  height: 56px;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info__number[data-rank="1"],
  .c-ranking-card-info__number[data-rank="2"],
  .c-ranking-card-info__number[data-rank="3"] {
    padding-top: 15px;
    height: 72px;
  }
}

.c-ranking-card-info__number[data-rank="1"]::after,
.c-ranking-card-info__number[data-rank="2"]::after,
.c-ranking-card-info__number[data-rank="3"]::after {
  display: block;
}

.c-ranking-card-info__number[data-rank="1"] {
  background: url("../image/common/bg/bg_ranking_gold.svg") top left no-repeat;
  background-size: contain;
}

.c-ranking-card-info__number[data-rank="2"] {
  background: url("../image/common/bg/bg_ranking_silver.svg") top left no-repeat;
  background-size: contain;
}

.c-ranking-card-info__number[data-rank="3"] {
  background: url("../image/common/bg/bg_ranking_bronze.svg") top left no-repeat;
  background-size: contain;
}

.c-ranking-card-info-amount {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount {
    float: right;
    clear: right;
    width: 50%;
    margin-top: 50px;
    justify-content: space-between;
  }
}

.c-ranking-card-info-amount__pack {
  margin-right: 18px;
  font-size: 1.2rem;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount__pack {
    font-size: 1.4rem;
  }
}

.c-ranking-card-info-amount__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.c-ranking-card-info-amount__price__month {
  margin-right: 5px;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount__price__month {
    margin-right: 10px;
    font-size: 1.6rem;
  }
}

.c-ranking-card-info-amount__price__month span {
  display: block;
}

.c-ranking-card-info-amount__price__amount {
  margin-bottom: -0.1em;
  color: #0045AD;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount__price__amount {
    font-size: 5.6rem;
  }
}

.c-ranking-card-info-amount__price__unit {
  margin-left: 4px;
  font-weight: bold;
  line-height: 1.2;
}

.c-ranking-card-info-amount__price__unit .tax {
  display: block;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount__price__unit .tax {
    font-size: 1.2rem;
  }
}

.c-ranking-card-info-amount__price__unit .yen {
  display: block;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-ranking-card-info-amount__price__unit .yen {
    font-size: 1.6rem;
  }
}

.c-ranking-card-button {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-ranking-card-button:hover .c-ranking-card-button__inner {
    transform: translate3d(-1px, -1px, 0);
  }
  .c-ranking-card-button:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

.c-ranking-card-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #FF6670 25%, transparent 25%, transparent 50%, #FF6670 50%, #FF6670 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-ranking-card-button {
    max-width: 400px;
  }
}

.c-ranking-card-button__inner {
  position: relative;
  display: block;
  background-color: #FF6670;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-ranking-card-button__inner {
    font-size: 2.4rem;
  }
}

.c-ranking-card-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-ranking-card-button__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-ranking-card-button__inner > span {
  display: block;
  padding: 14px 35px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-ranking-card-button__inner > span {
    padding: 21px 56px;
  }
}

/* おすすめランキング */
.c-car-rank-list {
  margin: -12px -16px 0;
  padding-left: 16px;
}

.c-car-rank-list::after {
  display: block;
  clear: both;
  content: "";
}

@media all and (min-width: 768px) {
  .c-car-rank-list {
    padding: 0;
    margin: -20px -20px -8px;
  }
}

.c-car-rank-list__item {
  float: left;
  margin-right: 16px;
  padding: 12px 0 4px;
}

@media all and (min-width: 768px) {
  .c-car-rank-list__item {
    margin: 0 20px;
    padding: 20px 0 8px;
  }
}

.c-car-rank-list .slick-list {
  padding-right: 16px;
}

@media all and (min-width: 768px) {
  .c-car-rank-list .slick-list {
    padding-right: 0;
  }
}

.c-car-rank-list .slick-dots {
  bottom: -32px;
  left: 0;
}

.c-car-rank-list .slick-dots li {
  width: 12px;
  height: 12px;
}

.c-car-rank-list .slick-dots li::before {
  display: none;
}

.c-car-rank-list .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.c-car-rank-list .slick-dots li button::before {
  display: none;
}

.c-car-rank-list .slick-dots li.slick-active button {
  background: #0045AD;
}

.c-car-rank-list .slick-arrow {
  top: 165px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #16283C;
  opacity: 1.0;
  z-index: 2;
}

.c-car-rank-list .slick-arrow.slick-disabled {
  background-color: #c4c9ce;
  opacity: 1.0;
  cursor: default;
}

.c-car-rank-list .slick-arrow.slick-disabled:hover {
  background-color: #c4c9ce;
  opacity: 1.0;
}

.c-car-rank-list .slick-arrow:hover {
  opacity: 0.75;
  background-color: #16283C;
}

.c-car-rank-list .slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 10px;
  margin: auto;
  background: url(../image/common/ico/ico_triangle_white_under_01@2x.png) top left no-repeat;
  background-size: contain;
  z-index: -1;
}

.c-car-rank-list .slick-prev {
  left: -8px;
}

.c-car-rank-list .slick-prev::before {
  transform: rotate(90deg);
}

.c-car-rank-list .slick-next {
  right: -8px;
}

.c-car-rank-list .slick-next::before {
  transform: rotate(-90deg);
}

.c-car-rank-list.no-anime .c-car-rank-infomation-card__content__inner,
.c-car-rank-list.no-anime .c-car-rank-infomation-card__content::after {
  transition: none;
}

.c-car-rank-list.no-anime .c-car-rank-infomation-card__button__inner,
.c-car-rank-list.no-anime .c-car-rank-infomation-card__button::after {
  transition: none;
}

.c-car-rank-infomation-card {
  position: relative;
  display: block;
  border-radius: 8px;
  color: #16283C;
}

.c-car-rank-infomation-card__content {
  position: relative;
  display: block;
  text-align: center;
  color: #16283C;
}

.c-car-rank-infomation-card__content::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__content::after {
    border-radius: 12px;
  }
}

.c-car-rank-infomation-card__content__inner {
  position: relative;
  background-color: #FEF7EC;
  padding: 13px 8px 20px;
  border-radius: 8px;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__content__inner {
    padding: 21px 16px 28px;
    border-radius: 12px;
  }
}

.c-car-rank-infomation-card__content__inner::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 16px;
  height: 16px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__content__inner::after {
    right: 8px;
    bottom: 8px;
    width: 20px;
    height: 20px;
  }
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__content:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
  .c-car-rank-infomation-card__content:hover .c-car-rank-infomation-card__content__inner {
    transform: translate3d(-2px, -2px, 0);
  }
}

.c-car-rank-infomation-card__button {
  position: relative;
  display: block;
  max-width: 310px;
  margin: 8px auto 0;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__button {
    margin: 12px auto 0;
  }
  .c-car-rank-infomation-card__button:hover .c-car-rank-infomation-card__button__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-car-rank-infomation-card__button:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-car-rank-infomation-card__button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #FF6670 25%, transparent 25%, transparent 50%, #FF6670 50%, #FF6670 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__button {
    max-width: 400px;
  }
}

.c-car-rank-infomation-card__button__inner {
  position: relative;
  display: block;
  background-color: #FF6670;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (max-width: 359px) {
  .c-car-rank-infomation-card__button__inner {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__button__inner {
    font-size: 1.6rem;
  }
}

.c-car-rank-infomation-card__button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__button__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-car-rank-infomation-card__button__inner > span {
  display: block;
  padding: 14px 35px 14px 14px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__button__inner > span {
    padding: 14px 35px;
  }
}

.c-car-rank-infomation-card__title {
  margin-bottom: 4px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__title {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
}

.c-car-rank-infomation-card__title em {
  display: block;
  font-style: normal;
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__title em {
    font-size: 1.8rem;
  }
}

.c-car-rank-infomation-card__rank {
  position: absolute;
  top: -12px;
  left: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #EAEAEA;
  width: 32px;
  height: 32px;
  padding-top: 5px;
  color: #00B6FC;
  font-size: 2.1rem;
  font-weight: bold;
  border-radius: 3px;
  line-height: 1.0;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__rank {
    top: -16px;
    left: 16px;
    width: 48px;
    height: 48px;
    padding-top: 12px;
    font-size: 2.4rem;
  }
}

.c-car-rank-infomation-card__image {
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}

.c-car-rank-infomation-card__image img {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__image img {
    margin-bottom: 10px;
    border-radius: 8px;
  }
}

.c-car-rank-infomation-card__pack {
  margin-bottom: 2px;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__pack {
    font-size: 1.4rem;
  }
}

.c-car-rank-infomation-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .c-car-rank-infomation-card__price {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__price {
    font-size: 1.6rem;
  }
}

.c-car-rank-infomation-card__price__month {
  display: block;
  margin-right: 4px;
  line-height: 1.1;
}

.c-car-rank-infomation-card__price__month > span {
  display: block;
}

.c-car-rank-infomation-card__price__amount {
  color: #0045AD;
  font-size: 3.2rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .c-car-rank-infomation-card__price__amount {
    font-size: 2.8rem;
  }
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__price__amount {
    font-size: 4.2rem;
  }
}

.c-car-rank-infomation-card__price__unit {
  display: block;
  margin-left: 4px;
  line-height: 1.5;
}

.c-car-rank-infomation-card__not-estimate-text {
  background-color: #C4C9CE;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 7px 10px;
  margin-top: 16px;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__not-estimate-text {
    font-size: 1.4rem;
  }
}

.c-car-rank-infomation-card--white .c-car-rank-infomation-card__content__inner {
  background-color: #fff;
}

.c-car-rank-infomation-card__rank[data-rank="1"] {
  background: url("../image/common/bg/bg_rank_number_gold.svg") top left no-repeat;
}

.c-car-rank-infomation-card__rank[data-rank="2"] {
  background: url("../image/common/bg/bg_rank_number_silver.svg") top left no-repeat;
}

.c-car-rank-infomation-card__rank[data-rank="3"] {
  background: url("../image/common/bg/bg_rank_number_bronze.svg") top left no-repeat;
}

.c-car-rank-infomation-card__rank[data-rank="1"],
.c-car-rank-infomation-card__rank[data-rank="2"],
.c-car-rank-infomation-card__rank[data-rank="3"] {
  height: 36px;
  color: #fff;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-rank-infomation-card__rank[data-rank="1"],
  .c-car-rank-infomation-card__rank[data-rank="2"],
  .c-car-rank-infomation-card__rank[data-rank="3"] {
    height: 54px;
  }
}

.c-car-rank-infomation-card--white .c-car-rank-infomation-card__content__inner {
  background-color: #fff;
}

/* other 分類できないパーツモジュール
---------------------------------------------------------- */
/* 絞り込み検索 narrow down */
.c-narrow-down__search {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F3F4F5;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media all and (min-width: 768px) {
  .c-narrow-down__search {
    display: block !important;
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 80px;
    border-radius: 12px;
    z-index: 1;
  }
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading {
    background-color: #F3F4F5;
  }
}

.c-narrow-down-heading__inner {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1120px;
    margin: 0 auto;
    background-color: #F3F4F5;
  }
  .c-narrow-down-heading__inner::before, .c-narrow-down-heading__inner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #F3F4F5;
  }
  .c-narrow-down-heading__inner::before {
    left: -100%;
  }
  .c-narrow-down-heading__inner::after {
    right: -100%;
  }
}

.c-narrow-down-heading__title {
  padding: 8px 16px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__title {
    display: flex;
    align-items: baseline;
    padding: 0;
    font-size: 1.6rem;
  }
}

.c-narrow-down-heading__title .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__title .pc {
    display: block;
  }
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__title .sp {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__title .result {
    margin-left: 0.5em;
  }
}

.c-narrow-down-heading__title .result .number {
  color: #0045AD;
  font-size: 2.8rem;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__title .result .number {
    margin-right: 0.15em;
    font-size: 3.2rem;
  }
}

.c-narrow-down-heading__band {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  background-color: #F3F4F5;
}

@media all and (min-width: 768px) {
  .c-narrow-down-heading__band {
    display: block;
    padding: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-narrow-down-heading__inner {
    justify-content: flex-end;
  }
  *::-ms-backdrop, .c-narrow-down-heading__title {
    position: absolute;
    top: 50%;
    left: 40px;
    bottom: 0;
    margin-top: -1.0em;
  }
}

.c-narrow-down-body {
  padding: 8px 16px 0;
}

@media all and (min-width: 768px) {
  .c-narrow-down-body {
    margin: 0 auto;
    max-width: 1120px;
    padding: 8px 40px 0;
  }
}

.c-narrow-down-select {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  max-width: 164px;
  margin-right: 16px;
  background-color: #fff;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-narrow-down-select {
    max-width: 240px;
    margin-right: 0;
  }
}

.c-narrow-down-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-narrow-down-select__input {
  width: 100%;
  height: 56px;
  background-color: #fff;
  padding: 12px 50px 12px 16px;
  border: none;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-narrow-down-select__input {
    height: 48px;
  }
}

.c-narrow-down-button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 164px;
  padding: 10px 30px 10px 20px;
  height: 56px;
  background-color: #0045AD;
  border-radius: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}

@media all and (min-width: 768px) {
  .c-narrow-down-button {
    display: none;
  }
}

.c-narrow-down-button::before, .c-narrow-down-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 3px;
  height: 10px;
  margin-top: -5px;
  background-color: #fff;
  border-radius: 3px;
}

.c-narrow-down-button::after {
  transform: rotate(90deg);
}

.c-narrow-down-searchtime-heading {
  padding: 16px 16px;
  background-color: #f3f4f5;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading {
    padding: 0;
  }
}

.c-narrow-down-searchtime-heading__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__inner {
    margin: 0 auto;
    padding: 32px 40px 24px;
    max-width: 1120px;
  }
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.c-narrow-down-searchtime-heading__count {
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__count {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

.c-narrow-down-searchtime-heading__count .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__count .pc {
    display: inline-block;
    margin-right: 8px;
  }
}

.c-narrow-down-searchtime-heading__count .sp {
  display: inline-block;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__count .sp {
    display: none;
  }
}

.c-narrow-down-searchtime-heading__count .result .number {
  margin-right: 3px;
  font-size: 2.8rem;
  color: #0045AD;
  font-family: 'Barlow', sans-serif;
  line-height: 0;
}

.c-narrow-down-searchtime-heading__time {
  color: #8A939D;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-narrow-down-searchtime-heading__time {
    color: #16283C;
    font-size: 1.6rem;
  }
}

/* 見積もり結果 */
.c-estimate-car {
  margin-bottom: 40px;
}

.c-estimate-car::after {
  display: block;
  clear: both;
  content: "";
}

@media all and (min-width: 768px) {
  .c-estimate-car {
    margin-bottom: 80px;
  }
}

.c-estimate-car__title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-estimate-car__title {
    float: right;
    width: 50%;
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

.c-estimate-car__title .name {
  display: block;
  font-size: 2.8rem;
}

@media all and (min-width: 768px) {
  .c-estimate-car__title .name {
    font-size: 3.6rem;
  }
}

.c-estimate-car-visual {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual {
    float: left;
    width: 50%;
    margin-bottom: 0;
    text-align: center;
  }
}

.c-estimate-car-visual__icon {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
  width: 72px;
  height: 72px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual__icon {
    width: 104px;
    height: 104px;
    top: 0;
    left: -20px;
  }
}

.c-estimate-car-visual__image {
  padding: 15px 0;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual__image {
    padding: 20px 0;
  }
}

.c-estimate-car-visual__link {
  font-size: 1.2rem;
  text-align: left;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual__link {
    font-size: 1.6rem;
    font-weight: bold;
  }
}

.c-estimate-car-visual__link a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 18px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual__link a {
    padding-right: 24px;
  }
}

.c-estimate-car-visual__link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-car-visual__link a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}

.c-estimate-car-visual__link a:hover {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .c-estimate-car-details {
    float: right;
    width: 50%;
  }
}

.c-estimate-car-details__text {
  position: relative;
  padding-left: 1.25em;
  /* 20241210 */
  /* color: #5558A939D;; */
  /* font-size: 1.0rem; */
  color: #5558A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-estimate-car-details__text {
    font-size: 1.2rem;
  }
}

.c-estimate-car-details__text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-estimate-car-details__button {
  margin-top: 40px;
}

.c-estimate-car-details-contact {
  overflow: hidden;
  margin: 20px 0 40px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-details-contact {
    margin: 4px -8px 40px;
  }
}

.c-estimate-car-details-contact__item {
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-details-contact__item {
    float: left;
    margin: 16px 8px 0;
  }
}

.c-estimate-car-details-contact__item:last-child {
  margin-bottom: 0;
}

.c-estimate-car-details-contact-button {
  position: relative;
  display: block;
  background-color: #0045AD;
  max-width: 280px;
  margin: 0 auto;
  padding: 10px 28px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 22px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-details-contact-button {
    min-width: 240px;
  }
}

.c-estimate-car-details-contact-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_white_right_02.svg") top left no-repeat;
  background-size: contain;
}

.c-estimate-car-message {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message {
    font-size: 2.4rem;
  }
}

.c-estimate-car-message__inner {
  display: block;
  position: relative;
  padding-bottom: 30px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message__inner {
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px 0 0;
  }
}

.c-estimate-car-message__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 16px;
  margin: 0 auto;
  background: url("../image/common/ico/ico_triangle_lightblue_under_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message__inner::after {
    top: 50%;
    left: auto;
    bottom: auto;
    width: 12px;
    height: 16px;
    margin-top: -6px;
  }
}

.c-estimate-car-message-tyokuhan {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  color: #FF6670;
  display: none;
  padding-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message-tyokuhan {
    font-size: 2.4rem;
  }
}

.c-estimate-car-message-tyokuhan__inner {
  display: block;
  position: relative;
  padding-bottom: 30px;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message-tyokuhan__inner {
    display: inline-block;
    vertical-align: middle;
    padding: 0 35px 0 0;
  }
}

.c-estimate-car-message-tyokuhan__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 22px;
  height: 16px;
  margin: 0 auto;
  background: url("../image/common/ico/ico_triangle_lightblue_under_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-car-message-tyokuhan__inner::after {
    top: 50%;
    left: auto;
    bottom: auto;
    width: 12px;
    height: 16px;
    margin-top: -6px;
  }
}

.c-list-estimate-select-car__item {
  margin-bottom: 20px;
}

.c-list-estimate-select-car__item:last-child {
  margin-bottom: 0;
}

.c-list-estimate-select-car__heading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.c-list-estimate-select-car__number {
  position: relative;
  width: 40px;
  color: #0045AD;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.1;
  text-align: center;
}

.c-list-estimate-select-car__number::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: #F3F4F5;
  border-radius: 2px;
}

.c-list-estimate-select-car__title {
  padding-left: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}

.c-list-estimate-select-car__title .c-tips-icon {
  margin-left: 10px;
  margin-top: -2px;
}

.c-list-estimate-select-car__title .sub {
  /* 20241210 */
  /* color: #CBD0D4; */
  color: #555;
  font-size: 1.2rem;
  font-weight: normal;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-list-estimate-select-car__title {
    padding-top: 0.25em;
  }
}

.c-list-estimate-select-byd-maint {
  padding: 10px;
  color: #FF6670;
  diplasy: none;
  font-size: 1.5rem;
}

.c-list-estimate-select-byd-maint__link {
  text-decoration: underline;
}

.c-list-estimate-select-byd-dealer {
  padding: 10px;
  color: #FF6670;
  diplasy: none;
  font-size: 1.5rem;
  background-color: #D2F7FF;
}

.c-list-estimate-select-byd-dealer__item {
  padding: 10px 10px;
}

.c-list-estimate-select-option {
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .c-list-estimate-select-option {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 8px;
  }
}

.c-list-estimate-select-option__item {
  margin-bottom: 16px;
}

@media all and (min-width: 768px) {
  .c-list-estimate-select-option__item {
    width: 50%;
    padding: 0 20px;
  }
}

.c-list-estimate-select-option__item:last-child {
  margin-bottom: 0;
}

.c-list-estimate-select-option__title {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
  font-weight: bold;
  font-size: 1.6rem;
}

.c-list-estimate-select-option__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 3px solid #C4C9CE;
  border-radius: 50%;
  box-sizing: border-box;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-list-estimate-select-option__title::before {
    margin-top: -7px;
  }
}

.c-tips-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url("../image/common/ico/ico_circle_question_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-estimate-navi-set {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  padding: 8px 8px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

@media all and (min-width: 768px) {
  .c-estimate-navi-set {
    margin: 40px 0 0;
    box-shadow: none;
    justify-content: center;
  }
}

.c-estimate-navi-set__back {
  flex: 1 1;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-navi-set__back {
    flex: inherit;
    /*margin-right: 110px;*/
  }
}
.c-estimate-navi-set__scroll {
  width: 100%;
}

@media all and (min-width: 768px) {
  .c-estimate-navi-set__scroll {
    /*min-width: 400px;*/
    min-width: 768px;
  }
}

.c-estimate-navi-set.is-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 900;
  box-shadow: 0px -1px 5px 1px rgba(22, 40, 60, 0.28);
}

.c-estimate-navi-set-back-link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .c-estimate-navi-set-back-link {
    font-size: 1.6rem;
  }
  .c-estimate-navi-set-back-link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-navi-set-back-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-estimate-navi-set-back-link::before {
    margin-top: -8px;
  }
}

.c-estimate-view-button {
  position: relative;
  display: block;
  width: 100%;
  /*max-width: 200px;*/
  max-width: 100%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-estimate-view-button {
    /*max-width: 400px;*/
    max-width: 768px;
  }
  .c-estimate-view-button::after {
    overflow: hidden;
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
    background-size: 5px 5px;
    border-radius: 8px;
  }
  .c-estimate-view-button:hover .c-estimate-view-button__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-estimate-view-button:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-estimate-view-button__inner {
  position: relative;
  display: block;
  background-color: #FF6670;
  border-radius: 4px;
  /*font-size: 1.4rem;*/
  /* 20241210 */
  /*font-size: 2rem;*/
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
  /* 20241210追記 */
  width: 90%
  margin: auto
}

@media all and (min-width: 768px) {
  .c-estimate-view-button__inner {
    background-color: #FF6670;
    border-radius: 8px;
    border: 3px solid #0045AD;
    font-size: 2.4rem;
  }
}

.c-estimate-view-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  /* 20241210 */
  /* width: 14px; */
  /* height: 14px; */
  width: 20px;
  height: 20px;
  margin-top: -7px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .c-estimate-view-button__inner::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-estimate-view-button__inner > span {
  display: block;
  padding: 15px 45px 15px 28px;
  text-align: center;
  line-height: 1.2;
}

.c-estimate-other-option {
  margin-top: 20px;
}

.c-estimate-other-option__title {
  margin-bottom: 0.25em;
  font-size: 1.6rem;
  font-weight: bold;
}

.c-estimate-other-option__text {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-estimate-other-option__text {
    font-size: 1.6rem;
  }
}

.c-estimate-result-title {
  margin-bottom: 40px;
  color: #0045AD;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.0;
}

.c-estimate-result-display {
  display: flex;
  align-items: center;
  
  justify-content: center;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 8px 8px 6px 12px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display {
    margin-bottom: 40px;
    padding: 12px 10px 10px 12px;
    border-radius: 12px;
    flex-wrap: wrap;
  }
}

.c-estimate-result-display__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-display__inner {
    display: block;
  }
}

.c-estimate-result-display__title {
  margin-right: 15px;
  font-weight: bold;
  /* 20241210 */
  /* font-size: 1.0rem; */
  font-size: 1.1rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__title {
    padding-top: 2px;
    font-size: 1rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-display__title {
    text-align: left;
  }
}

.c-estimate-result-display__title em {
  display: block;
  /* 20241210 */
  /* font-size: 1.1rem; */
  font-size: 1.4rem;
  font-style: normal;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__title em {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-display__title em {
    display: inline-block;
  }
}

.c-estimate-result-display__total {
  margin-right: 15px;
  font-weight: bold;
  font-size: 1.0rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__total {
    padding-top: 2px;
    font-size: 1rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-display__total {
    text-align: left;
  }
}

.c-estimate-result-display__total em {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__total em {
    font-size: 2.1rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-display__total em {
    display: inline-block;
  }
}

.c-estimate-result-display__amount {
  font-weight: bold;
}

.c-estimate-result-display__price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: bold;
}

.c-estimate-result-display__price em {
  color: #FF6670;
  font-size: 5.7rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__price em {
    margin-top: -8px;
    font-size: 8.0rem;
  }
}

.c-estimate-result-display__unit {
  display: block;
  padding-bottom: 0.25em;
  font-size: 1.0rem;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__unit {
    font-size: 1.2rem;
  }
}

.c-estimate-result-display__unit .yen {
  display: block;
  font-size: 2.0rem;
}

@media all and (min-width: 768px) {
  .c-estimate-result-display__unit .yen {
    font-size: 3.2rem;
  }
}

.c-estimate-result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: #16283C;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border: 1px solid #16283C;
}

.c-estimate-result-heading__amount {
  text-align: right;

}
@media all and (max-width: 768px) {
  .c-estimate-result-heading__amount {
    padding-right: 30px;
  }
}
.c-estimate-result-heading__amount .price {
  display: inline-block;
  margin: 0 0.2em;
  font-size: 3.0rem;
  line-height: 1.0;
  font-family: 'Barlow', sans-serif;
}
.c-estimate-result-heading__amount .first {
  display: inline-block;
  margin: 0 0.2em;
  font-size: 1.2rem;
  line-height: 1.0;
  font-family: 'Barlow', sans-serif;
}

.c-estimate-result-table {
  width: 100%;
  background-color: #fff;
  border-left: 1px solid #C4C9CE;
  border-right: 1px solid #C4C9CE;
  border-bottom: 1px solid #C4C9CE;
}

.c-estimate-result-table tbody th {
  min-width: 64px;
  padding: 8px 7px;
  background-color: #F3F4F5;
  border-right: 1px solid #C4C9CE;
  border-bottom: 1px solid #C4C9CE;
  font-weight: bold;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-estimate-result-table tbody th {
    font-size: 1.4rem;
  }
}

.c-estimate-result-table tbody td {
  padding: 12px 14px;
  font-size: 1.2rem;
  border-bottom: 1px solid #C4C9CE;
}

@media all and (min-width: 768px) {
  .c-estimate-result-table tbody td {
    font-size: 1.4rem;
  }
}

.c-estimate-result-table tbody td.result {
  padding-left: 0;
  font-weight: bold;
  text-align: right;
  word-break: keep-all;
}

.c-estimate-result-table--small tbody th {
  font-size: 1.1rem;
}

.c-estimate-result-table--small tbody td {
  font-size: 1.1rem;
}

.c-estimate-result-table--small tbody td.result {
  font-size: 1.2rem;
}

.c-estimate-result-set .is-close {
  display:none;
}

/* comb */
.c-estimate-result-set + .c-estimate-result-set {
  margin-top: 20px;
}

.c-estimate-result-table + .c-form-note {
  margin-top: 0.85em;
}

.c-estimate-result-next-set {
  margin: 30px 0 0;
  text-align: center;
}

@media all and (max-width: 767px) {
  .c-estimate-result-next-set {
    width: 100% !important;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-result-next-set {
    width: 100%;
    margin: 0 0 0;
    padding: 40px 40px 40px;
    background-color: #fff;
    border-radius: 12px;
    z-index: 10;
  }
}

.c-estimate-result-next-set__button {
  margin-bottom: 12px;
}

.c-estimate-result-next-set__note {
  position: relative;
  display: inline-block;
  padding-left: 1.25em;
  margin-bottom: 40px;
  /*color: #8A939D;*/
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-estimate-result-next-set__note {
    font-size: 1.4rem;
  }
}

.c-estimate-result-next-set__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-estimate-result-next-set__link {
  text-align: center;
}

.c-estimate-result-next-set__link .inner {
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-estimate-result-next-set__link .inner {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-result-next-set.is-fixed {
    position: fixed;
    top: 112px;
  }
  .c-estimate-result-next-set.is-absolute {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.c-estimate-result-print-button {
  position: relative;
  display: block;
  background-color: #0045AD;
  max-width: 280px;
  margin: 20px auto 0;
  padding: 13px 28px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 26px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-print-button {
    min-width: 320px;
    font-size: 2.0rem;
  }
}

@media all and (max-width: 768px) {
  .c-estimate-result-print-button {
    display:none;
  }
}

.c-estimate-result-print-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_white_right_02.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-result-print-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/* ランキング */
.c-ranking-navi {
  padding: 40px 16px 40px;
  max-width: 1080px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .c-ranking-navi {
    padding: 40px 20px 80px;
  }
}

.c-ranking-navi__inner {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -8px 0;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-ranking-navi__inner {
    margin: -40px -10px 0;
  }
}

@media all and (min-width: 992px) {
  .c-ranking-navi__inner {
    margin: -40px -20px 0;
  }
}

.c-ranking-navi__item {
  width: 50%;
  padding: 0 8px;
  margin-top: 16px;
}

@media all and (min-width: 768px) {
  .c-ranking-navi__item {
    width: 25%;
    padding: 0 20px;
    margin-top: 40px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-ranking-navi__item {
    padding: 0 10px;
  }
}

@media all and (min-width: 992px) {
  .c-ranking-navi__item {
    padding: 0 20px;
  }
}

.c-ranking-navi__link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 52px;
  color: #0045AD;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-ranking-navi__link {
    min-height: 72px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-ranking-navi__link {
    font-size: 1.5rem;
  }
}

@media all and (min-width: 992px) {
  .c-ranking-navi__link {
    font-size: 1.7rem;
  }
}

.c-ranking-navi__link > span {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding: 10px 40px 10px 14px;
  background-color: #FEF7EC;
  z-index: 1;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-ranking-navi__link > span {
    padding: 10px 48px 10px 14px;
    border-radius: 12px;
  }
}

.c-ranking-navi__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-ranking-navi__link > span::before {
    right: 16px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-ranking-navi__link::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .c-ranking-navi__link::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-ranking-navi__link:hover > span {
    transform: translate3d(-1px, -1px, 0);
  }
  .c-ranking-navi__link:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

.c-ranking-navi__item.is-current .c-ranking-navi__link {
  color: #fff;
}

.c-ranking-navi__item.is-current .c-ranking-navi__link > span {
  background-color: #0045AD;
  transform: none;
}

.c-ranking-navi__item.is-current .c-ranking-navi__link > span::before {
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
}

.c-ranking-navi__item.is-current .c-ranking-navi__link::after {
  display: none;
}

.c-ranking-navi--brand .c-ranking-navi__link--toyota::before {
  background-image: url("../image/common/logo/logo_toyota@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--nissan::before {
  background-image: url("../image/common/logo/logo_nissan@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--honda::before {
  background-image: url("../image/common/logo/logo_honda@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--mitsubishi::before {
  background-image: url("../image/common/logo/logo_mitsubishi@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--mazda::before {
  background-image: url("../image/common/logo/logo_mazda@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--suzuki::before {
  background-image: url("../image/common/logo/logo_suzuki@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--subaru::before {
  background-image: url("../image/common/logo/logo_subaru@2x.png");
}

.c-ranking-navi--brand .c-ranking-navi__link--daihatsu::before {
  background-image: url("../image/common/logo/logo_daihatsu@2x.png");
}

@media all and (min-width: 768px) {
  .c-ranking-navi--brand .c-ranking-navi__link:hover::before {
    transform: translate3d(-1px, -1px, 0);
  }
}

.c-ranking-navi--brand .c-ranking-navi__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background-color: #fff;
  border-radius: 2px;
  z-index: 2;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-ranking-navi--brand .c-ranking-navi__link::before {
    left: 8px;
    border-radius: 4px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-ranking-navi--brand .c-ranking-navi__link::before {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
}

@media all and (min-width: 992px) {
  .c-ranking-navi--brand .c-ranking-navi__link::before {
    width: 56px;
    height: 56px;
    margin-top: -28px;
  }
}

.c-ranking-navi--brand .c-ranking-navi__link > span {
  justify-content: flex-start;
  padding: 10px 48px 10px 62px;
}

@media all and (min-width: 768px) {
  .c-ranking-navi--brand .c-ranking-navi__link > span {
    padding: 10px 40px 10px 62px;
  }
}

@media all and (min-width: 992px) {
  .c-ranking-navi--brand .c-ranking-navi__link > span {
    padding: 10px 48px 10px 90px;
  }
}

@media all and (min-width: 768px) {
  .c-ranking-navi--brand .is-current .c-ranking-navi__link:hover::before {
    transform: none;
  }
}

/* 関連記事 related article */
.c-related-article-list {
  display: flex;
  margin: 0 -16px;
  padding: 0 0 0 16px;
}

@media all and (min-width: 768px) {
  .c-related-article-list {
    margin: -4px 0 0;
    padding: 0;
  }
}

.c-related-article-list__item {
  margin-right: 8px;
  padding-bottom: 4px;
}

@media all and (min-width: 768px) {
  .c-related-article-list__item {
    padding: 4px 0 0 4px;
    margin-right: 32px;
  }
}

.c-related-article-list .slick-list {
  padding-right: 16px;
}

@media all and (min-width: 768px) {
  .c-related-article-list .slick-list {
    padding-right: 0;
    padding-bottom: 8px;
  }
}

.c-related-article-list .slick-dots {
  bottom: -32px;
}

.c-related-article-list .slick-dots li {
  width: 12px;
  height: 12px;
}

.c-related-article-list .slick-dots li::before {
  display: none;
}

.c-related-article-list .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.c-related-article-list .slick-dots li button::before {
  display: none;
}

.c-related-article-list .slick-dots li.slick-active button {
  background: #0045AD;
}

.c-related-article-list .slick-track {
  display: flex;
}

@media all and (min-width: 768px) {
  .c-related-article-list .slick-track {
    justify-content: center;
  }
}

.c-related-article-list .slick-slide {
  float: none;
}

.c-related-article-card {
  display: block;
  position: relative;
  height: 100%;
  background-color: #FEF7EC;
  padding: 0;
  color: #0045AD;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-related-article-card {
    border-radius: 12px;
  }
}

.c-related-article-card::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  z-index: 3;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
  border-radius: 50%;
}

@media all and (min-width: 768px) {
  .c-related-article-card::before {
    right: 8px;
    bottom: 8px;
    width: 20px;
    height: 20px;
  }
}

.c-related-article-card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-related-article-card::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-related-article-card:hover {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-related-article-card:hover::after {
    transform: translate3d(4px, 4px, 0);
  }
}

.c-related-article-card__inner {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 0 0 25px;
  background-color: #FEF7EC;
  z-index: 2;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-related-article-card__inner {
    padding: 0 0 30px;
    border-radius: 12px;
  }
}

.c-related-article-card__image {
  display: block;
  position: relative;
  z-index: 2;
}

.c-related-article-card__image .image {
  overflow: hidden;
}

.c-related-article-card__image .image img {
  width: 100%;
  height: auto;
}

.c-related-article-card__title {
  position: relative;
  padding: 4px 8px 0;
  font-size: 1.4rem;
  font-weight: bold;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-related-article-card__title {
    padding: 8px 10px 0;
    font-size: 1.6rem;
  }
}

/* ご利用の流れ flow use */
.c-flow-use-step__item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__item {
    padding-left: 88px;
    margin-bottom: 24px;
  }
}

.c-flow-use-step__item::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: -11px;
  width: 12px;
  height: 11px;
  margin: 0 auto;
  background: url(../image/common/ico/ico_triangle_red_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__item::after {
    left: 30px;
    bottom: -8px;
    width: 18px;
    height: 17px;
  }
}

.c-flow-use-step__item:last-child {
  margin-bottom: 0;
}

.c-flow-use-step__item:last-child::after {
  display: none;
}

.c-flow-use-step__heading {
  position: absolute;
  top: 8px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  background-color: #0045AD;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__heading {
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
}

.c-flow-use-step__heading .subtext {
  display: block;
  margin-bottom: 3px;
  font-size: 1.0rem;
  line-height: 1.0;
  transform: scale(0.9);
  transform-origin: center center;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__heading .subtext {
    transform: none;
    font-size: 1.4rem;
  }
}

.c-flow-use-step__heading .number {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 2.4rem;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__heading .number {
    font-size: 4.0rem;
  }
}

.c-flow-use-step__content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 88px;
  min-height: 72px;
  background-color: #fff;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__content {
    justify-content: center;
    padding: 8px 100px 8px 100px;
    min-height: 104px;
    border-radius: 12px;
  }
}

.c-flow-use-step__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 56px;
  height: 56px;
  margin-top: -28px;
  background-color: #EAEAEA;
  border-radius: 50%;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__content::before {
    width: 72px;
    height: 72px;
    margin-top: -36px;
  }
}

.c-flow-use-step__text {
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-flow-use-step__text {
    font-size: 2.0rem;
  }
}

.c-flow-use-step__item.step1 .c-flow-use-step__content::before {
  background: url("../image/common/img/img_car_details_use_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-flow-use-step__item.step2 .c-flow-use-step__content::before {
  background: url("../image/common/img/img_car_details_use_02@2x.png") top left no-repeat;
  background-size: contain;
}

.c-flow-use-step__item.step3 .c-flow-use-step__content::before {
  background: url("../image/common/img/img_car_details_use_03@2x.png") top left no-repeat;
  background-size: contain;
}

.c-flow-use-step__item.step4 .c-flow-use-step__content::before {
  background: url("../image/common/img/img_car_details_use_04@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .c-flow-use-step__content {
    height: 104px;
  }
  /* IE11 */
}

.c-flow-contract-step__item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__item {
    padding-left: 88px;
    margin-bottom: 40px;
  }
}

.c-flow-contract-step__item:last-child {
  margin-bottom: 0;
}

.c-flow-contract-step__item:last-child .c-flow-contract-step__heading::after {
  display: none;
}

.c-flow-contract-step__heading {
  position: absolute;
  top: 8px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  background-color: #0045AD;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__heading {
    top: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
}

.c-flow-contract-step__heading .subtext {
  display: block;
  margin-bottom: 3px;
  font-size: 1.0rem;
  line-height: 1.0;
  transform: scale(0.9);
  transform-origin: center center;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__heading .subtext {
    transform: none;
    font-size: 1.4rem;
  }
}

.c-flow-contract-step__heading .number {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 2.4rem;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__heading .number {
    font-size: 4.0rem;
  }
}

.c-flow-contract-step__heading::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: -21px;
  width: 12px;
  height: 11px;
  margin: 0 auto;
  background: url(../image/common/ico/ico_triangle_lightblue_under_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__heading::after {
    left: 30px;
    bottom: -47px;
    width: 18px;
    height: 17px;
  }
}

.c-flow-contract-step__content {
  position: relative;
  padding: 16px 16px 20px 20px;
  min-height: 72px;
  background-color: #F3F4F5;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__content {
    padding: 27px 32px 27px;
  }
}

.c-flow-contract-step__title {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__title {
    font-size: 2.0rem;
  }
}

.c-flow-contract-step__text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-flow-contract-step__text {
    font-size: 1.6rem;
  }
}

/* メンテナンスパック maintenance pack */
@media all and (min-width: 768px) {
  .c-maintenance-pack {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 -20px;
  }
}

.c-maintenance-pack__item {
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #FEF7EC;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-maintenance-pack__item {
    width: calc(33.3% - 40px);
    margin: 0 20px;
    border-radius: 12px;
  }
  .c-maintenance-pack__item:nth-child(3n-2) {
    width: calc(33.4% - 40px);
  }
}

.c-maintenance-pack__item:last-child {
  margin-bottom: 0;
}

.c-maintenance-pack__heading {
  position: relative;
  width: 100%;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 13px 16px 102px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-maintenance-pack__heading {
    min-height: 186px;
  }
}

@media all and (min-width: 992px) {
  .c-maintenance-pack__heading {
    min-height: 111px;
  }
}

@media all and (max-width: 359px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver {
    padding: 10px 10px 10px 85px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver {
    padding: 95px 7px 16px;
  }
}

@media all and (min-width: 992px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver {
    padding: 16px 16px 14px 102px;
  }
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  border-radius: 50%;
}

@media all and (min-width: 768px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver::before {
    width: 72px;
    height: 72px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver::before {
    top: 14px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media all and (min-width: 992px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver::before {
    margin-top: -36px;
  }
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title {
  padding: 0 21px;
}

@media all and (min-width: 768px) {
  .c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title {
    padding: 0 18px;
  }
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title::after, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 24px;
  background: url("../image/common/ico/ico_leaf_01.svg") top left no-repeat;
  background-size: contain;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title::before, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title::before {
  left: 0;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold .c-maintenance-pack__title::after, .c-maintenance-pack__heading.c-maintenance-pack__heading--silver .c-maintenance-pack__title::after {
  right: 0;
  transform: scale(-1, 1);
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold {
  background: url("../image/common/bg/bg_maintenance_pack_gold.png") top left no-repeat;
  background-size: cover;
  color: #fff;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--gold::before {
  background: url("../image/common/ico/ico_maintenance_pack_gold.svg") top left no-repeat;
  background-size: contain;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--silver {
  background: url("../image/common/bg/bg_maintenance_pack_silver.png") top left no-repeat;
  background-size: cover;
  color: #fff;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--silver::before {
  background: url("../image/common/ico/ico_maintenance_pack_silver.svg") top left no-repeat;
  background-size: contain;
}

.c-maintenance-pack__heading.c-maintenance-pack__heading--white {
  background-color: #EAEAEA;
  padding: 15px 10px 10px;
  height: auto;
}

.c-maintenance-pack__title {
  position: relative;
  margin-bottom: 10px;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.1;
  word-break: keep-all;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-maintenance-pack__title {
    font-size: 2.1rem;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .c-maintenance-pack__title {
    font-size: 2.1rem;
  }
}

@media all and (min-width: 1200px) {
  .c-maintenance-pack__title {
    font-size: 2.4rem;
  }
}

.c-maintenance-pack__subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media all and (max-width: 359px) {
  .c-maintenance-pack__subtitle {
    font-size: 1.25rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-maintenance-pack__subtitle {
    font-size: 1.4rem;
  }
}

@media all and (min-width: 992px) {
  .c-maintenance-pack__subtitle {
    font-size: 1.6rem;
  }
}

.c-maintenance-pack__content {
  padding: 16px 16px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-maintenance-pack__content {
    padding: 24px 15px;
  }
}

.c-maintenance-pack__text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-maintenance-pack__text {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  .c-choose-reason-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-choose-reason-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__item {
    width: 50%;
    margin-bottom: 40px;
  }
}

.c-choose-reason-list__item:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__item.reason5 {
    margin-bottom: 0;
  }
}

.c-choose-reason-list__item .c-text-note {
  margin: 1.0em 0 0 16px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__item .c-text-note {
    margin: 1.0em 0 0 20px;
  }
}

.c-choose-reason-list__heading {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0 0 68px;
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__heading {
    min-height: 72px;
    padding: 0 16px 0 100px;
  }
}

.c-choose-reason-list__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 64px;
  padding: 7px 0 0;
  background: url("../image/common/bg/bg_choose_reason_number_01.svg") top left no-repeat;
  background-size: contain;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__number {
    padding-top: 12px;
    width: 84px;
    height: 96px;
  }
}

.c-choose-reason-list__number .sub {
  display: block;
  font-size: 1.0rem;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__number .sub {
    margin-bottom: 5px;
    letter-spacing: 0.5em;
    margin-left: 0.5em;
    font-size: 1.4rem;
  }
}

.c-choose-reason-list__number .number {
  display: block;
  font-size: 3.0rem;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__number .number {
    font-size: 4.2rem;
  }
}

.c-choose-reason-list__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__title {
    font-size: 2.4rem;
  }
}

.c-choose-reason-list__figure {
  padding: 0 16px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__figure {
    padding: 0 20px;
  }
}

.c-choose-reason-list__figure img {
  width: 100%;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__figure img {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__figure .sp {
    display: none;
  }
}

.c-choose-reason-list__figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-choose-reason-list__figure .pc {
    display: block;
  }
}

.c-recommend-point-list {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-recommend-point-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -20px -20px 80px;
  }
}

.c-recommend-point-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-recommend-point-list__item {
    margin: 20px 0 0;
  }
}

@media all and (min-width: 768px) {
  .c-recommend-point-list__item {
    width: 25%;
    padding: 0 20px;
  }
}

.c-recommend-point-list__item:last-child {
  margin-bottom: 0;
}

.c-recommend-point-list__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 10px 10px 10px 72px;
  background-color: #FEF7EC;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-recommend-point-list__inner {
    justify-content: center;
    height: 100%;
    padding: 105px 10px 14px;
    font-size: 1.8rem;
    text-align: center;
    border-radius: 12px;
  }
}

.c-recommend-point-list__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 48px;
  height: 48px;
  margin: auto;
  background-color: #FEF7EC;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-recommend-point-list__inner::before {
    top: 20px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 68px;
    height: 68px;
  }
}

.c-recommend-point-list__inner.woman::before {
  background-image: url("../image/common/img/img_icon_woman_01.jpg");
}

.c-recommend-point-list__item[data-ico="1"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_01@2x.png");
}

.c-recommend-point-list__item[data-ico="2"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_02@2x.png");
}

.c-recommend-point-list__item[data-ico="3"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_03@2x.png");
}

.c-recommend-point-list__item[data-ico="4"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_04@2x.png");
}

.c-recommend-point-list__item[data-ico="5"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_05@2x.png");
}

.c-recommend-point-list__item[data-ico="6"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_06@2x.png");
}

.c-recommend-point-list__item[data-ico="7"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_07@2x.png");
}

.c-recommend-point-list__item[data-ico="8"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_08@2x.png");
}

.c-recommend-point-list__item[data-ico="9"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_09@2x.png");
}

.c-recommend-point-list__item[data-ico="10"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_10@2x.png");
}

.c-recommend-point-list__item[data-ico="11"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_11@2x.png");
}

.c-recommend-point-list__item[data-ico="12"] .c-recommend-point-list__inner::before {
  background-image: url("../image/common/ico/ico_recommend_point_12@2x.png");
}

.c-recommend-point-comment {
  position: relative;
  padding: 16px 0 20px;
}

@media all and (min-width: 768px) {
  .c-recommend-point-comment {
    display: flex;
    padding: 22px 0 22px;
    max-width: 860px;
    margin: 0 auto;
  }
}

.c-recommend-point-comment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.c-recommend-point-comment::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.c-recommend-point-comment__title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding-left: 90px;
  min-height: 56px;
  color: #00B6FC;
  font-weight: bold;
  font-size: 2.0rem;
}

@media all and (min-width: 768px) {
  .c-recommend-point-comment__title {
    display: block;
    padding: 0 24px 80px;
    text-align: center;
  }
}

.c-recommend-point-comment__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 56px;
  height: 56px;
  margin: auto;
  background: url(../image/common/img/img_car_details_comment_user_01@2x.png) top left repeat-x;
  background-size: contain;
  border-radius: 50%;
}

@media all and (min-width: 768px) {
  .c-recommend-point-comment__title::before {
    top: auto;
    left: 0;
    right: 0;
  }
}

@media all and (min-width: 768px) {
  .c-recommend-point-comment__content {
    flex: 1 1;
    padding-right: 24px;
  }
}

.c-recommend-point-comment__text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-recommend-point-comment__text {
    font-size: 1.6rem;
  }
}

.c-details-car::after {
  display: block;
  clear: both;
  content: "";
}

.c-details-car__title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .c-details-car__title {
    float: right;
    width: 50%;
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

.c-details-car__title .name {
  display: block;
  font-size: 2.8rem;
}

@media all and (min-width: 768px) {
  .c-details-car__title .name {
    font-size: 3.6rem;
  }
}

.c-details-car-visual {
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .c-details-car-visual {
    float: left;
    width: 50%;
    margin-bottom: 0;
  }
}

.c-details-car-visual-link {
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-details-car-visual-link {
    font-size: 1.6rem;
  }
}

.c-details-car-visual-link__item {
  float: left;
  margin-right: 16px;
}

@media all and (min-width: 768px) {
  .c-details-car-visual-link__item {
    margin-right: 24px;
  }
}

.c-details-car-visual-link__item:last-child {
  margin-right: 0;
}

.c-details-car-visual-link a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 18px;
}

@media all and (min-width: 768px) {
  .c-details-car-visual-link a {
    padding-right: 24px;
  }
}

.c-details-car-visual-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-details-car-visual-link a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}

.c-details-car-visual-link a[target="_blank"]::after {
  background: url(../image/common/ico/ico_blank_02@2x.png) top left no-repeat;
  background-size: contain;
}

.c-details-car-visual-link a:hover {
  opacity: 0.75;
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media all and (min-width: 768px) {
  .c-details-car-details {
    float: right;
    width: 50%;
  }
}

.c-details-car-details__text {
  position: relative;
  margin-bottom: 40px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-details-car-details__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.c-details-car-details__estimate {
  padding: 0 16px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-details-car-details__estimate {
    padding: 0 32px 0 0;
  }
}

@media all and (min-width: 992px) {
  .c-details-car-details__estimate {
    padding: 0 32px;
  }
}

.c-details-car-details-not-estimate-text {
  margin-bottom: 15px;
  color: #0045AD;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-details-car-details-not-estimate-text {
    font-size: 3.5rem;
  }
}

.c-details-car-details-amount {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.c-details-car-details-amount__pack {
  margin-right: 22px;
  font-size: 1.2rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-details-car-details-amount__pack {
    font-size: 1.6rem;
  }
}

.c-details-car-details-amount__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.c-details-car-details-amount__price__month {
  display: block;
  margin-right: 4px;
  line-height: 1.1;
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 0.25em;
}

@media all and (min-width: 768px) {
  .c-details-car-details-amount__price__month {
    font-size: 1.6rem;
  }
}

.c-details-car-details-amount__price__month > span {
  display: block;
}

.c-details-car-details-amount__price__amount {
  color: #0045AD;
  font-size: 4.4rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-details-car-details-amount__price__amount {
    font-size: 5.6rem;
  }
}

.c-details-car-details-amount__price__unit {
  display: inline-block;
  margin-left: 4px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-details-car-details-amount__price__unit {
    font-size: 2.4rem;
  }
}

@media all and (min-width: 768px) {
  .c-details-car-details-button .c-button-red {
    max-width: 100%;
  }
}

.c-estimate-result-navi-set {
  display: flex;
  margin: 20px -7px 20px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-navi-set {
    margin: 0 -20px 25px;
  }
}

.c-estimate-result-navi-set__item {
  width: 50%;
  padding: 0 7px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-navi-set__item {
    padding: 0 20px;
  }
}

.c-estimate-prev-button {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .c-estimate-prev-button:hover .c-estimate-prev-button__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-estimate-prev-button:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-estimate-prev-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-prev-button {
    max-width: 100%;
  }
}

.c-estimate-prev-button__inner {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-estimate-prev-button__inner {
    font-size: 2.4rem;
  }
}

.c-estimate-prev-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .c-estimate-prev-button__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-estimate-prev-button__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-estimate-prev-button__inner > span {
    padding: 21px 56px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-estimate-prev-button__inner > span {
    padding: 24px 56px 18px;
  }
}

.c-estimate-change-button {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .c-estimate-change-button:hover .c-estimate-change-button__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-estimate-change-button:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-estimate-change-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-change-button {
    max-width: 100%;
  }
}

.c-estimate-change-button__inner {
  position: relative;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-estimate-change-button__inner {
    font-size: 2.4rem;
  }
}

.c-estimate-change-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}

@media all and (min-width: 768px) {
  .c-estimate-change-button__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-estimate-change-button__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-estimate-change-button__inner > span {
    padding: 21px 56px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-estimate-change-button__inner > span {
    padding: 24px 56px 18px;
  }
}

.c-estimate-result-car-list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -8px 0;
  padding: 0 0 4px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-car-list {
    margin: 0 -20px 0;
  }
}

.c-estimate-result-car-list__item {
  width: 50%;
  margin-top: 20px;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-car-list__item {
    margin-top: 40px;
    padding: 0 20px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-estimate-result-car-list__item {
    width: 33.33%;
  }
  .c-estimate-result-car-list__item:nth-child(3n-2) {
    width: 33.34%;
  }
}

@media all and (min-width: 992px) {
  .c-estimate-result-car-list__item {
    width: 25%;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-search {
    padding: 40px 40px;
  }
}

.c-estimate-search-heading {
  position: relative;
  padding: 30px 16px;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading {
    padding: 0;
  }
}

.c-estimate-search-heading__title {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading__title {
    font-size: 2.4rem;
    text-align: left;
  }
}

.c-estimate-search-heading__close {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background-color: red;
  background: url("../image/common/ico/ico_close_blue_01.svg") center center no-repeat;
  background-size: 15px 15px;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading__close {
    display: none;
  }
}

.c-estimate-search-heading__accordion-button {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  padding-right: 20px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: -0.55em;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading__accordion-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-search-heading__accordion-button .close {
  display: none;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading__accordion-button {
    display: block;
  }
}

.c-estimate-search-heading__accordion-button::before, .c-estimate-search-heading__accordion-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 3px;
  margin-top: -2px;
  border-radius: 4px;
  background-color: #0045AD;
}

.c-estimate-search-heading__accordion-button::after {
  transform: rotate(90deg);
}

.c-estimate-search-heading__accordion-button.is-open::after {
  display: none;
}

.c-estimate-search-heading__accordion-button.is-open .close {
  display: block;
}

.c-estimate-search-heading__accordion-button.is-open .open {
  display: none;
}

.c-estimate-search-body {
  padding: 0 16px 0;
}

@media all and (max-width: 767px) {
  .c-estimate-search-body {
    display: block !important;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-search-body {
    display: none;
    padding: 40px 0 0;
  }
  .c-estimate-search-body.is-open {
    display: block;
  }
}

.c-estimate-search-clear {
  padding: 10px 0 40px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-search-clear {
    padding: 0;
    text-align: right;
  }
}

.c-estimate-search-foot {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 8px 16px;
  background-color: #fff;
  z-index: 999;
}

@media all and (min-width: 768px) {
  .c-estimate-search-foot {
    display: none;
  }
}

.c-estimate-search-foot__result {
  font-size: 1.4rem;
  font-weight: bold;
}

.c-estimate-search-foot__result em {
  font-style: normal;
  font-weight: bold;
  color: #0045AD;
  font-size: 2.8rem;
  font-family: 'Barlow', sans-serif;
}

.c-estimate-search-foot__button {
  position: relative;
  display: block;
  width: 190px;
  height: 48px;
  padding: 0 30px;
  background-color: #0045AD;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1.4rem;
}

.c-estimate-search-foot__button .inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 20px;
}

.c-estimate-search-foot__button .inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_search_grass_white_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-estimate-search-items {
  position: relative;
  /* 20241210 */
  /* margin-bottom: 15px; */
  /* padding-bottom: 15px; */
  margin-bottom: 5px;
  padding-bottom: 5px;
}

@media all and (min-width: 768px) {
  .c-estimate-search-items {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}

.c-estimate-search-items:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.c-estimate-search-items__title {
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .c-estimate-search-items__title {
    width: 140px;
    padding-top: 12px;
    margin-right: 12px;
  }
}

.c-estimate-search-items__title .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
}

.c-estimate-search-items__title .inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 3px solid #00B6FC;
  border-radius: 50%;
  box-sizing: border-box;
}

@media all and (min-width: 768px) {
  .c-estimate-search-items__content {
    flex: 1 1;
  }
}

.c-estimate-search-items--car-name {
  padding-bottom: 17px;
}

.c-estimate-search-items--car-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_02@2x.png) top left repeat-x;
  background-size: contain;
}

.c-estimate-search-reset-button {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #0045AD;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-estimate-search-reset-button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    max-width: 155px;
  }
}

.c-estimate-search-reset-button__inner {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #fff;
  border-radius: 6px;
  border: none;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .c-estimate-search-reset-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-modal {
  opacity: 0;
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
  }
}

.c-estimate-result-modal.is-show {
  opacity: 1.0;
}

.c-estimate-result-modal__close {
  position: absolute;
  top: -37px;
  right: 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal__close {
    width: 24px;
    height: 24px;
  }
  .c-estimate-result-modal__close:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-modal__close:before, .c-estimate-result-modal__close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 8px;
  width: 4px;
  height: 23px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal__close:before, .c-estimate-result-modal__close:after {
    top: -2px;
    left: 10px;
    width: 4px;
    height: 29px;
  }
}

.c-estimate-result-modal__close:before {
  transform: rotate(-45deg);
}

.c-estimate-result-modal__close:after {
  transform: rotate(45deg);
}

.c-estimate-result-modal__close span {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.c-estimate-result-modal__inner {
  overflow: hidden;
  height: 100%;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal__inner {
    border-radius: 12px;
  }
}

.c-estimate-result-modal-content {
  height: 100%;
  overflow-y: auto;
  padding: 16px 16px;
  -webkit-overflow-scrolling: touch;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-content {
    padding: 8px 40px 40px;
  }
}

.c-estimate-result-modal-content__inner {
  background-color: #fff;
}

.c-estimate-result-modal__foot {
  position: absolute;
  left: 0;
  bottom: -38px;
  width: 100%;
  color: #FF6670;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal__foot {
    display: none;
  }
}

.c-estimate-result-modal__title {
  margin-bottom: 16px;
  padding: 8px 16px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal__title {
    margin: 0 -32px 40px;
    padding: 6px 16px;
    font-size: 2.4rem;
    border-radius: 8px;
  }
}

.c-modal-wrap {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 52px 16px 68px;
  z-index: 9999;
}

@media all and (min-width: 768px) {
  .c-modal-wrap {
    padding: 72px 40px 40px;
  }
}

.c-modal-wrap.is-show {
  display: block;
}

body.is-modalNoScroll {
  overflow: hidden;
}

@media all and (min-width: 768px) {
  body.is-modalNoScroll {
    padding-right: 15px;
  }
}

.c-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  box-sizing: border-box;
  background: rgba(22, 40, 60, 0.9);
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.4s ease-in-out;
}

.c-modal-overlay.is-show {
  opacity: 1.0;
}

.c-estimate-result-modal-list__item {
  margin-bottom: 8px;
}

.c-estimate-result-modal-list__item:last-child {
  margin-bottom: 0;
}

.c-estimate-result-check-table {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-check-table__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.c-estimate-result-check-table__checkbox:checked + .c-estimate-result-check-table__inner::before {
  display: block;
}

.c-estimate-result-check-table__checkbox:checked + .c-estimate-result-check-table__inner .c-estimate-result-check-table__heading {
  background-color: #00B6FC;
}

.c-estimate-result-check-table__checkbox:checked + .c-estimate-result-check-table__inner .c-estimate-result-check-table__heading .c-estimate-result-check-table__check::before {
  display: block;
}

.c-estimate-result-check-table__inner {
  position: relative;
}

#school_list .c-estimate-result-check-table__inner table {
  margin-top: -1px;
}

.c-estimate-result-check-table__inner::before {
  display: none;
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  box-sizing: border-box;
  border: 3px solid rgba(0, 182, 252, 0.5);
  border-radius: 6px;
}

.c-estimate-result-check-table__label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.c-estimate-result-check-table__heading {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: -1px;
  padding: 4px 10px 4px 32px;
  background-color: #8A939D;
  color: #fff;
  border: 1px solid #C4C9CE;
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__heading {
    padding: 4px 8px 4px 40px;
  }
}

.c-estimate-result-check-table__check {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 13px;
  height: 13px;
  margin-top: -7px;
  background-color: #fff;
  border-radius: 2px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__check {
    left: 12px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 3px;
  }
}

.c-estimate-result-check-table__check::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 9px;
  height: 7px;
  background: url("../image/common/ico/ico_checkbox_checked_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-estimate-result-check-table__number {
  width: 55px;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__number {
    font-size: 1.2rem;
  }
}

.c-estimate-result-check-table__name {
  flex: 1 1;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-estimate-result-check-table__recommend {
  display: inline-block;
  vertical-align: middle;
  min-width: 65px;
  padding: 5px 9px;
  background-color: #FF6670;
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 30px;
}

.c-estimate-result-check-table__body {
  width: 100%;
  border: 1px solid #C4C9CE;
}

.c-estimate-result-check-table__body thead th {
  padding: 3px 5px;
  background-color: #F3F4F5;
  text-align: center;
  font-size: 1.1rem;
  font-weight: normal;
  border: 1px solid #C4C9CE;
}

.c-estimate-result-check-table__body thead th.displacement, .c-estimate-result-check-table__body thead th.drive, .c-estimate-result-check-table__body thead th.fuel {
  width: 33.3%;
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__body thead th.displacement, .c-estimate-result-check-table__body thead th.drive, .c-estimate-result-check-table__body thead th.fuel {
    width: 25%;
  }
}

@media all and (max-width: 767px) {
  .c-estimate-result-check-table__body thead th.price {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__body thead th.price {
    width: 25%;
  }
}

.c-estimate-result-check-table__body tbody td {
  padding: 3px 5px;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #C4C9CE;
}

@media all and (max-width: 767px) {
  .c-estimate-result-check-table__body tbody td.price {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .c-estimate-result-check-table__body tfoot {
    display: none;
  }
}

.c-estimate-result-check-table__body td .car-price {
  display: flex;
  justify-content: space-between;
  padding: 8px 25px 8px 14px;
}

.c-estimate-result-check-table__body td .car-price .title {
  font-size: 1.2rem;
}

.c-estimate-result-check-table__body td .car-price .price {
  font-size: 1.4rem;
  font-weight: bold;
}

.c-estimate-result-check-table__body td .car-color {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0 1px 10px;
}

.c-estimate-result-check-table__body td .car-color .title {
  font-size: 1.2rem;
}

.c-estimate-result-check-table__body td .car-color .color {
  overflow: hidden;
  position: relative;
  width: 48px;
  height: 48px;
}

.c-estimate-result-check-table__body td .car-color .color img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  height: 100%;
}

.c-estimate-result-check-table__body td.car-option__image {
  width: 102px;
  padding: 10px 5px;
  border-right: 2px solid #C4C9CE;
  font-size: 1.2rem;
}

.c-estimate-result-check-table__body td.car-option__image .link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-top: 4px;
  padding-right: 16px;
  font-weight: bold;
  z-index: 666;
}

.c-estimate-result-check-table__body td.car-option__image .link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 9px;
  margin-top: -5px;
  background: url("../image/common/ico/ico_blank_02@2x.png") top left no-repeat;
  background-size: contain;
}

.c-estimate-result-check-table__body td.car-option__description {
  padding: 8px 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: left;
}

.c-estimate-result-modal-refine {
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine {
    /*margin-bottom: 15px;*/
  }
}

.c-estimate-result-modal-refine__heading {
  position: relative;
  padding: 12px 40px 12px 16px;
  background-color: #16283C;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine__heading {
    display: none;
  }
}

.c-estimate-result-modal-refine__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 12px;
  height: 10px;
  margin-top: -5px;
  background: url(../image/common/ico/ico_triangle_white_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

.c-estimate-result-modal-refine__heading.is-open {
  border-radius: 4px 4px 0 0;
}

.c-estimate-result-modal-refine__heading.is-open::after {
  transform: rotate(180deg);
}

.c-estimate-result-modal-refine__content {
  display: none;
  background-color: #F3F4F5;
  padding: 20px 16px 16px;
  border-radius: 0 0 4px 4px;
}

.c-estimate-result-modal-refine__content.is-mankuru {
  flex-flow: row nowrap;
  align-items: flex-end;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine__content {
    display: flex !important;
    justify-content: space-between;
    background-color: transparent;
    padding: 0;
    border-radius: 0px;
  }
}

.c-estimate-result-modal-refine__content.is-open {
  display: block;
}

.c-estimate-result-modal-refine-items {
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine-items {
    display: flex;
    align-items: center;
    flex: 1 1;
    /*margin: 0 16px 0 0;*/
    margin: 0 0 0 0;
  }
  
  .c-estimate-result-modal-refine-items.is-mankuru {
    justify-content: flex-end;
  }
}

.c-estimate-result-modal-refine-items__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine-items__item {
    display: block;
    width: 100%;
    margin: 0 8px 0 0;
  }
}

.c-estimate-result-modal-refine-items__item:last-child {
  margin: 0;
}

.c-estimate-result-modal-refine-items__title {
  width: 100px;
  padding-top: 3px;
  color: #0045AD;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-refine-items__title {
    display: none;
  }
}

.c-estimate-result-modal-selectbox-refine {
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 26px;
  flex: 1 1;
  text-align: right;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-selectbox-refine {
    width: 100%;
    min-height: 48px;
    background-color: #1F2933;
    border-radius: 8px;
  }
  .c-estimate-result-modal-selectbox-refine:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-modal-selectbox-refine::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url(../image/common/ico/ico_triangle_blue_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-selectbox-refine::after {
    background: url(../image/common/ico/ico_triangle_white_under_01@2x.png) top left no-repeat;
    background-size: contain;
    right: 16px;
  }
}

.c-estimate-result-modal-selectbox-refine__input {
  width: 123.07692%;
  height: 32px;
  padding: 5px 30px 5px 10px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #0045AD;
  font-size: 16px;
  font-weight: bold;
  transform: scale(0.8);
  transform-origin: left center;
  cursor: pointer;
}

.c-estimate-result-modal-selectbox-refine__input option {
  color: #000000;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-selectbox-refine__input {
    width: 100%;
    height: 48px;
    padding: 5px 30px 5px 16px;
    color: #fff;
    font-size: 1.3rem;
    transform: none;
  }
}

.c-estimate-result-modal-reset {
  display: block;
  margin: 0 auto;
  max-width: 280px;
  padding: 13px 10px;
  background-color: #fff;
  color: #0045AD;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-reset {
    width: 128px;
    height: 48px;
    padding: 13px 5px;
    border: 2px solid #0045AD;
    border-radius: 8px;
  }
  .c-estimate-result-modal-reset:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-modal-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*margin-bottom: 15px;*/
}

.c-estimate-result-modal-sort__number {
  width: 100px;
  font-size: 1.3rem;
  font-weight: bold;
  white-space: nowrap;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-sort__number {
    font-size: 1.4rem;
  }
}

.c-estimate-result-modal-sort-selectbox {
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 26px;
  flex: 1 1;
  text-align: right;
}

.c-estimate-result-modal-sort-selectbox::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url(../image/common/ico/ico_triangle_blue_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

.c-estimate-result-modal-sort-selectbox:hover {
  opacity: 0.75;
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.c-estimate-result-modal-sort-selectbox__input {
  width: 123.07692%;
  height: 32px;
  padding: 5px 20px 5px 10px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #0045AD;
  font-size: 16px;
  font-weight: bold;
  transform: scale(0.8);
  transform-origin: left center;
  line-height: 1.0;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .c-estimate-result-modal-sort-selectbox__input {
    width: 100%;
    height: 26px;
    font-size: 1.4rem;
    transform: none;
  }
}

.c-estimate-result-modal__mod-date {
  text-align: right;
}

#leaseFlowModal .c-estimate-result-modal {
  max-width:100%;
}


.c-small-note-box {
  padding: 14px 16px;
  border: 2px solid #F3F4F5;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-small-note-box {
    padding: 16px 20px;
  }
}

.c-small-note-box__text {
  position: relative;
  padding-left: 1.25em;
  color: #8A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-small-note-box__text {
    font-size: 1.4rem;
  }
}

.c-small-note-box__text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* 即納車 */
.c-quickdelivery-car-list {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .c-quickdelivery-car-list {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px 80px;
  }
}

.c-quickdelivery-car-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-quickdelivery-car-list__item {
    width: 50%;
    padding: 0 20px;
    margin: 40px 0 0;
  }
}

.c-quickdelivery-car-list__item:last-child {
  margin-bottom: 0;
}

.c-car-quickdelivery-card {
  position: relative;
  display: block;
  padding: 0 4px 4px 0;
  color: #16283C;
}

.c-car-quickdelivery-card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: url(../image/common/bg/bg_stripe_45deg_red_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card:hover .c-car-quickdelivery-card-content,
  .c-car-quickdelivery-card:hover .c-car-quickdelivery-card-button {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-car-quickdelivery-card:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-car-quickdelivery-card-content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #FEF7EC;
  padding: 16px 16px 16px 16px;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-content {
    border-radius: 12px 12px 0 0;
    padding: 24px 24px 24px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card-content {
    padding: 24px 24px 13px;
  }
}

.c-car-quickdelivery-card-button {
  position: relative;
  padding: 12px 12px;
  background-color: #FF6670;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-button {
    padding: 8px 12px;
    font-size: 1.6rem;
    border-radius: 0 0 12px 12px;
  }
}

.c-car-quickdelivery-card-button__inner {
  position: relative;
  display: block;
  padding: 0 16px 0 0;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-button__inner {
    padding-right: 20px;
  }
}

.c-car-quickdelivery-card-button__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-button__inner::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-car-quickdelivery-card__visual {
  max-width: 40%;
  padding-right: 20px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card__visual {
    flex: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media all and (min-width: 992px) {
  .c-car-quickdelivery-card__visual {
    max-width: 100%;
  }
}

.c-car-quickdelivery-card__title {
  margin-bottom: 8px;
  font-size: 1.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__title {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}

.c-car-quickdelivery-card__title em {
  display: block;
  margin-top: 4px;
  font-size: 1.6rem;
  font-style: normal;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__title em {
    margin-top: 8px;
    font-size: 2.0rem;
  }
}

.c-car-quickdelivery-card__image {
  overflow: hidden;
  padding: 7px 0;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__image {
    padding: 12px 0 7px;
    max-width: 185px;
    border-radius: 8px;
  }
}

.c-car-quickdelivery-card__image img {
  width: 100%;
  height: auto;
}

.c-car-quickdelivery-card__info {
  flex: 1 1;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card__info {
    width: 100%;
    flex: auto;
  }
}

.c-car-quickdelivery-card__remaining {
  position: absolute;
  top: -12px;
  right: -8px;
  padding: 4px 0 0;
  width: 40px;
  height: 40px;
  background-color: #00B6FC;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__remaining {
    width: auto;
    min-width: 96px;
    height: 48px;
    border-radius: 8px;
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card__remaining {
    top: -16px;
    right: -16px;
  }
}

@media all and (min-width: 992px) {
  .c-car-quickdelivery-card__remaining {
    top: -25px;
  }
}

.c-car-quickdelivery-card__remaining .number {
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__remaining .number {
    display: inline-block;
    font-size: 1.8rem;
  }
}

.c-car-quickdelivery-card__remaining .number em {
  margin-right: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__remaining .number em {
    font-size: 3.0rem;
  }
}

.c-car-quickdelivery-card__remaining::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 14px;
  margin-left: -4px;
  background: url("../image/common/ico/ico_triangle_lightblue_baloon_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__remaining::after {
    left: auto;
    right: 20px;
    margin-left: 0;
    bottom: -11px;
    width: 20px;
    height: 18px;
  }
}

.c-car-quickdelivery-card__category {
  padding-right: 16px;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__category {
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card__category {
    text-align: center;
  }
}

.c-car-quickdelivery-card__id {
  margin-bottom: 5px;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card__id {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card__id {
    text-align: center;
  }
}

.c-car-quickdelivery-card-info-table,
.c-car-quickdelivery-card-performance-table {
  width: 100%;
  border: 1px solid #D8D8D8;
  background-color: #fff;
}

.c-car-quickdelivery-card-info-table th,
.c-car-quickdelivery-card-info-table td,
.c-car-quickdelivery-card-performance-table th,
.c-car-quickdelivery-card-performance-table td {
  padding: 4px 4px;
  border: 1px solid #D8D8D8;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-info-table th,
  .c-car-quickdelivery-card-info-table td,
  .c-car-quickdelivery-card-performance-table th,
  .c-car-quickdelivery-card-performance-table td {
    padding: 6px 8px;
    font-size: 1.2rem;
  }
}

.c-car-quickdelivery-card-info-table th,
.c-car-quickdelivery-card-performance-table th {
  background-color: #f3f4f5;
  font-weight: bold;
  text-align: center;
}

.c-car-quickdelivery-card-info-table td.td-fwb,
.c-car-quickdelivery-card-performance-table td.td-fwb {
  font-weight: bold;
}

.c-car-quickdelivery-card-info-table th {
  width: 50px;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-info-table th {
    min-width: 70px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-car-quickdelivery-card-info-table th {
    width: 29%;
  }
}

.c-car-quickdelivery-card-performance-table tbody td {
  width: 33.3%;
  padding: 5px 2px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-performance-table tbody td {
    padding: 6px 8px;
  }
}

.c-car-quickdelivery-card-color {
  display: flex;
  align-items: center;
}

.c-car-quickdelivery-card-color__image {
  overflow: hidden;
  width: 16px;
  height: 12px;
  margin-right: 4px;
}

.c-car-quickdelivery-card-color__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

.c-car-quickdelivery-card-color__text {
  flex: 1 1;
}

.c-car-quickdelivery-card-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-price {
    font-size: 1.6rem;
  }
}

.c-car-quickdelivery-card-price__month {
  margin-right: 3px;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-price__month {
    margin-right: 5px;
  }
}

.c-car-quickdelivery-card-price__month > span {
  display: block;
}

.c-car-quickdelivery-card-price__amount {
  margin-bottom: -0.1em;
  color: #0045AD;
  font-size: 3.0rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-price__amount {
    font-size: 4.4rem;
  }
}

.c-car-quickdelivery-card-price__unit {
  display: block;
  margin-left: 3px;
}

@media all and (min-width: 768px) {
  .c-car-quickdelivery-card-price__unit {
    margin-left: 5px;
  }
}

.c-fukidashi {
  display: flex;
  justify-content: center;
}

.c-fukidashi__inner, .c-fukidashi__inner--right {
  position: relative;
  max-width: 122px;
  padding: 5px 7px;
  background: #fff;
  border-radius: 4px;
  box-shadow: rgba(250, 239, 225, 0.5) 3px 3px 12px;
  letter-spacing: 1px;
}

@media all and (min-width: 768px) {
  .c-fukidashi__inner, .c-fukidashi__inner--right {
    max-width: 240px;
    padding: 10px 12px;
    letter-spacing: 1.5px;
    border-radius: 8px;
  }
}

.c-fukidashi__inner:after, .c-fukidashi__inner--right:after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 27px;
  width: 40px;
  height: 32px;
  background: url(../image/menkuru/img_menkuru_mainvisual_fukidashi_01.png) no-repeat center/40px;
}

@media all and (max-width: 767px) {
  .c-fukidashi__inner:after, .c-fukidashi__inner--right:after {
    bottom: -14px;
    left: 12px;
    width: 24px;
    height: 16px;
    background-size: 24px;
  }
}

.c-fukidashi__inner--right:after, .c-fukidashi__inner--right--right:after {
  left: unset;
  right: 27px;
  background: url(../image/menkuru/img_menkuru_mainvisual_fukidashi_02.png) no-repeat center/40px;
}

.c-fukidashi__comment {
  font-size: 11px;
  font-weight: 700;
  color: #455363;
  padding-left: 0.1em;
}

@media all and (min-width: 768px) {
  .c-fukidashi__comment {
    font-size: 15px;
  }
}

.c-fukidashi__user {
  font-size: 9px;
  font-weight: 700;
  color: #a2a9b1;
  text-align: right;
}

@media all and (min-width: 768px) {
  .c-fukidashi__user {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 13px;
  }
}

@media all and (min-width: 768px) {
  .c-model-case {
    display: flex;
  }
}

.c-model-case__image {
  width: 36%;
  max-width: 320px;
  margin-right: 24px;
}

@media all and (max-width: 767px) {
  .c-model-case__image {
    width: 32%;
    margin-right: 16px;
    float: left;
  }
}

.c-model-case__content {
  flex: 1 1;
}

@media all and (min-width: 768px) {
  .c-model-case__content {
    padding-top: 5px;
  }
}

.c-model-case__example {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .01em;
}

@media all and (max-width: 767px) {
  .c-model-case__example {
    margin-bottom: 18px;
    padding-left: 50px;
    letter-spacing: .1em;
  }
}

@media all and (min-width: 768px) {
  .c-model-case__example {
    margin-bottom: 5px;
  }
}

@media all and (max-width: 767px) {
  .c-model-case__example.pc {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .c-model-case__example.sp {
    display: none;
  }
}

.c-model-case__title {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0045AD;
  letter-spacing: .04em;
}

@media all and (min-width: 768px) {
  .c-model-case__title {
    font-size: 3.2rem;
    margin-bottom: 45px;
  }
  .c-model-case__title:before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 80px;
    height: 8px;
    background: url(../image/common/img/img_model_case_title_01@2x.png) no-repeat center/80px;
  }
}

.c-model-case__text {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .c-model-case__text {
    padding-top: 16px;
    font-size: 1.4rem;
    clear: both;
  }
}

.c-recommended-car {
  position: relative;
  margin-top: 38px;
  padding: 26px 24px;
  background: #F3F4F5;
  border-radius: 8px;
}

@media all and (max-width: 767px) {
  .c-recommended-car {
    margin-top: 24px;
    padding: 28px 16px 16px;
    border-radius: 4px;
  }
}

.c-recommended-car__title {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  text-align: center;
}

@media all and (max-width: 767px) {
  .c-recommended-car__title {
    top: -10px;
  }
}

.c-recommended-car__title__inner {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.6rem;
  background: #00B6FC;
  color: #fff;
}

@media all and (max-width: 767px) {
  .c-recommended-car__title__inner {
    padding: 6px 8px;
    font-size: 1.4rem;
    letter-spacing: .05em;
    border-radius: 4px;
  }
}

.c-recommended-car__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 42% 28%;
  grid-template-columns: 30% 42% 28%;
}

@media all and (max-width: 767px) {
  .c-recommended-car__inner {
    -ms-grid-columns: 52% 48%;
    grid-template-columns: 52% 48%;
  }
}

.c-recommended-car__image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  align-self: flex-start;
  padding: 24px 4px 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

@media all and (max-width: 767px) {
  .c-recommended-car__image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding: 12px 2px 8px;
  }
}

.c-recommended-car__carname {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding-left: 24px;
  padding-top: 5px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
}

.c-recommended-car__carname__maker {
  display: block;
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .c-recommended-car__carname {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    margin-bottom: 16px;
    padding: 0;
    font-size: 21px;
    text-align: center;
  }
}

.c-recommended-car__description {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  padding-left: 24px;
  padding-right: 16px;
  padding-top: 5px;
  font-size: 1.6rem;
}

@media all and (max-width: 767px) {
  .c-recommended-car__description {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding: 0;
    padding-left: 16px;
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.c-recommended-car__caution {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  padding-left: 24px;
  padding-right: 16px;
  padding-top: 12px;
  font-size: 1.2rem;
  color: #8A939D;
}

@media all and (max-width: 767px) {
  .c-recommended-car__caution {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
    margin-top: 12px;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
  }
}

.c-recommended-car__estimate {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

@media all and (min-width: 768px) {
  .c-recommended-car__estimate {
    padding-right: 15px;
  }
}

@media all and (max-width: 767px) {
  .c-recommended-car__estimate {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
    margin-top: 10px;
  }
  .c-recommended-car__estimate .c-special-car-card-estimate-button__inner {
    padding-right: 0;
  }
}

.c-before-after {
  display: flex;
  margin-top: 72px;
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .c-before-after {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}

.c-before-after__before {
  position: relative;
  padding: 40px 35px;
  background: #FEF7EC;
  border-radius: 12px;
}

.c-before-after__before:before {
  content: "";
  position: absolute;
  width: 40px;
  background: url(../image/common/img/img_before-after-h_01@2x.png) no-repeat center/40px;
}

@media all and (min-width: 768px) {
  .c-before-after__before {
    flex: 1 1;
    margin-right: 20px;
  }
  .c-before-after__before:before {
    top: 0;
    bottom: 0;
    right: -40px;
    width: 40px;
  }
}

@media all and (max-width: 767px) {
  .c-before-after__before {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 24px 28px;
    border-radius: 8px;
  }
  .c-before-after__before:before {
    left: 0;
    right: 0;
    bottom: -24px;
    width: auto;
    height: 24px;
    background-size: 24px;
    transform: rotateZ(90deg);
    transform: rotateZ(90deg);
  }
}

.c-before-after__after {
  padding: 40px 35px;
  background: #FEF7EC;
  border-radius: 12px;
}

@media all and (min-width: 768px) {
  .c-before-after__after {
    flex: 1 1;
    margin-left: 20px;
  }
  .c-before-after__after:before {
    top: 0;
    bottom: 0;
    right: -40px;
    width: 40px;
  }
}

@media all and (max-width: 767px) {
  .c-before-after__after {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 24px 28px;
    border-radius: 8px;
  }
}

.c-before-after__title {
  margin-bottom: 1em;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0045AD;
}

@media all and (max-width: 767px) {
  .c-before-after__title {
    font-size: 1.8rem;
  }
}

.c-accordion {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
  border-radius: 12px;
  overflow: hidden;
}

@media all and (max-width: 767px) {
  .c-accordion {
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
  }
}

.c-accordion__title {
  position: relative;
  background: #0045AD;
  color: #fff;
  padding: 18px;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
}

.c-accordion__title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 24px;
  background: url(../image/common/img/img_accordion_arrowwhite_01@2x.png) no-repeat center/24px;
  transition: ease transform .4s;
}

@media all and (max-width: 767px) {
  .c-accordion__title {
    font-size: 2rem;
  }
  .c-accordion__title:before {
    width: 20px;
    background-size: 20px;
  }
}

.c-accordion.close .c-accordion__title:before {
  transform: rotateZ(180deg);
}

.c-accordion__inner {
  padding: 21px 40px;
  background: #FEF7EC;
}

.c-accordion__inner p {
  margin-bottom: 2em;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.c-accordion__inner p:last-child {
  margin-bottom: 1em;
}

@media all and (max-width: 767px) {
  .c-accordion__inner {
    padding: 20px 16px 10px;
  }
  .c-accordion__inner p {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .c-accordion__inner p:last-child {
    margin-bottom: 0;
  }
}

.c-intro-pack-list {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-list {
    margin-bottom: 40px;
  }
}

.c-intro-pack-list__item {
  margin-bottom: 40px;
}

.c-intro-pack-list__item:last-child {
  margin-bottom: 0;
}

/* c-intro-pack common */
.c-intro-pack {
  overflow: hidden;
  border-radius: 8px;
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .c-intro-pack {
    border-radius: 12px;
  }
}

.c-intro-pack__heading {
  position: relative;
}

.c-intro-pack__title {
  position: relative;
  margin-bottom: 10px;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.1;
  word-break: keep-all;
}

@media all and (min-width: 768px) {
  .c-intro-pack__title {
    margin-bottom: 0;
    font-size: 3.2rem;
  }
}

.c-intro-pack__subtitle {
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-intro-pack__subtitle {
    font-size: 2.0rem;
  }
}

.c-intro-pack__content {
  padding: 16px 16px 24px;
}

@media all and (min-width: 768px) {
  .c-intro-pack__content {
    padding: 40px 40px 40px;
  }
}

.c-intro-pack__description {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-intro-pack__description {
    margin-bottom: 40px;
    font-size: 1.6rem;
    text-align: center;
  }
}

.c-intro-pack-check-list {
  margin-bottom: 30px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-check-list {
    margin-bottom: 40px;
  }
}

.c-intro-pack-check-list__item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #505E6D;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-intro-pack-check-list__item {
    margin-bottom: 15px;
    padding-left: 44px;
    font-size: 2.4rem;
  }
}

.c-intro-pack-check-list__item::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 18px;
  height: 16px;
  background: url("../image/common/ico/ico_check_blue_red_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-intro-pack-check-list__item::before {
    width: 27px;
    height: 24px;
  }
}

.c-intro-pack-check-list__item:last-child {
  margin-bottom: 0;
}

.c-intro-pack--gold .c-intro-pack__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 96px;
  padding: 16px 13px 16px 105px;
  background: url(../image/common/bg/bg_maintenance_pack_gold.png) top left no-repeat;
  background-size: cover;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-intro-pack--gold .c-intro-pack__heading {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 104px;
    padding: 16px 16px 16px 150px;
  }
}

.c-intro-pack--gold .c-intro-pack__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  border-radius: 50%;
  background: url(../image/common/ico/ico_maintenance_pack_gold.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-intro-pack--gold .c-intro-pack__heading::before {
    left: 40px;
    width: 72px;
    height: 72px;
    margin-top: -36px;
  }
}

.c-intro-pack--gold .c-intro-pack__title {
  padding: 0 21px;
}

@media all and (min-width: 768px) {
  .c-intro-pack--gold .c-intro-pack__title {
    margin-right: 40px;
  }
}

.c-intro-pack--gold .c-intro-pack__title::before, .c-intro-pack--gold .c-intro-pack__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 24px;
  background: url(../image/common/ico/ico_leaf_01.svg) top left no-repeat;
  background-size: contain;
}

.c-intro-pack--gold .c-intro-pack__title::before {
  left: 0;
}

.c-intro-pack--gold .c-intro-pack__title::after {
  right: 0;
  transform: scale(-1, 1);
}

.c-intro-pack--silver .c-intro-pack__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 96px;
  padding: 16px 13px 16px 105px;
  background: url(../image/common/bg/bg_maintenance_pack_silver.png) top left no-repeat;
  background-size: cover;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-intro-pack--silver .c-intro-pack__heading {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 104px;
    padding: 16px 16px 16px 150px;
  }
}

.c-intro-pack--silver .c-intro-pack__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 64px;
  height: 64px;
  margin-top: -32px;
  border-radius: 50%;
  background: url(../image/common/ico/ico_maintenance_pack_silver.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-intro-pack--silver .c-intro-pack__heading::before {
    left: 40px;
    width: 72px;
    height: 72px;
    margin-top: -36px;
  }
}

.c-intro-pack--silver .c-intro-pack__title {
  padding: 0 21px;
}

@media all and (min-width: 768px) {
  .c-intro-pack--silver .c-intro-pack__title {
    margin-right: 40px;
  }
}

.c-intro-pack--silver .c-intro-pack__title::before, .c-intro-pack--silver .c-intro-pack__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 24px;
  background: url(../image/common/ico/ico_leaf_01.svg) top left no-repeat;
  background-size: contain;
}

.c-intro-pack--silver .c-intro-pack__title::before {
  left: 0;
}

.c-intro-pack--silver .c-intro-pack__title::after {
  right: 0;
  transform: scale(-1, 1);
}

.c-intro-pack--white .c-intro-pack__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 96px;
  background-color: #EAEAEA;
}

@media all and (min-width: 768px) {
  .c-intro-pack--white .c-intro-pack__heading {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 104px;
    padding: 30px 40px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack--white .c-intro-pack__title {
    margin-right: 40px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-intro-pack--gold .c-intro-pack__heading {
    padding: 20px 16px 12px 150px;
    min-height: 64px;
  }
  *::-ms-backdrop, .c-intro-pack--gold .c-intro-pack__heading::after {
    content: '';
    min-height: inherit;
    font-size: 0;
  }
  *::-ms-backdrop, .c-intro-pack--silver .c-intro-pack__heading {
    padding: 20px 16px 12px 150px;
    min-height: 64px;
  }
  *::-ms-backdrop, .c-intro-pack--silver .c-intro-pack__heading::after {
    content: '';
    min-height: inherit;
    font-size: 0;
  }
  *::-ms-backdrop, .c-intro-pack--white .c-intro-pack__heading {
    padding: 40px 40px 20px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -15px 0;
  }
}

.c-intro-pack-figure-gold__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold__item {
    width: 33.33%;
    margin: 30px 0 0;
    padding: 0 15px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold__item:first-child {
    width: 100%;
  }
}

.c-intro-pack-figure-gold__item:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold__item .sp {
    display: none;
  }
}

.c-intro-pack-figure-gold__item .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold__item .pc {
    display: block;
  }
}

.c-intro-pack-figure-gold__item img {
  overflow: hidden;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-gold__item img {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -15px 0;
  }
}

.c-intro-pack-figure-silver__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver__item {
    width: 33.33%;
    margin: 30px 0 0;
    padding: 0 15px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver__item:first-child {
    width: 100%;
  }
}

.c-intro-pack-figure-silver__item:last-child {
  margin-bottom: 0;
}

.c-intro-pack-figure-silver__item.description {
  display: none;
  width: calc(100% - 33.33%);
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver__item.description {
    display: block;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver__item .sp {
    display: none;
  }
}

.c-intro-pack-figure-silver__item .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-silver__item .pc {
    display: block;
  }
}

.c-intro-pack-figure-silver__item img {
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
}

.c-intro-pack-figure-silver-description,
.c-intro-pack-figure-white-description {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C4C9CE;
  padding: 10px 16px;
  height: 100%;
  color: #fff;
  border-radius: 12px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.75;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white {
    display: flex;
    flex-wrap: wrap;
    margin: -30px -15px 0;
  }
}

.c-intro-pack-figure-white__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white__item {
    width: 33.33%;
    margin: 30px 0 0;
    padding: 0 15px;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white__item:first-child {
    width: 100%;
  }
}

.c-intro-pack-figure-white__item:last-child {
  margin-bottom: 0;
}

.c-intro-pack-figure-white__item.description {
  display: none;
  width: calc(100% - 33.33%);
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white__item.description {
    display: block;
  }
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white__item .sp {
    display: none;
  }
}

.c-intro-pack-figure-white__item .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .c-intro-pack-figure-white__item .pc {
    display: block;
  }
}

.c-intro-pack-figure-white__item img {
  overflow: hidden;
  background-color: #fff;
  border-radius: 8px;
}

.c-intro-pack-rate-box {
  padding: 8px 8px 16px;
  background-color: #FEF7EC;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box {
    padding: 40px 40px;
    border-radius: 12px;
  }
}

.c-intro-pack-rate-box__title {
  margin-bottom: 30px;
  padding: 8px 40px;
  background-color: #0045AD;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 3px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box__title {
    font-size: 2.3rem;
    border-radius: 8px;
    margin-bottom: 40px;
  }
}

.c-intro-pack-rate-box__note {
  padding: 0 8px;
  color: #8A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box__note {
    padding: 0;
    font-size: 1.2rem;
    text-align: center;
  }
}

.c-intro-pack-rate-box-figure {
  overflow: hidden;
  padding: 0 8px;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box-figure {
    padding: 0;
    max-width: 500px;
    margin: 0 auto 35px;
  }
}

.c-intro-pack-rate-box-figure__image {
  float: left;
  width: 150px;
  margin-right: 20px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box-figure__image {
    width: 240px;
    margin-right: 80px;
  }
}

.c-intro-pack-rate-box-figure-list {
  overflow: hidden;
}

.c-intro-pack-rate-box-figure-list__item {
  position: relative;
  padding-left: 24px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box-figure-list__item {
    margin-bottom: 10px;
    padding-left: 28px;
    font-size: 2.0rem;
  }
  .c-intro-pack-rate-box-figure-list__item:last-child {
    margin-bottom: 0;
  }
}

.c-intro-pack-rate-box-figure-list__item::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 2px;
}

@media all and (min-width: 768px) {
  .c-intro-pack-rate-box-figure-list__item::before {
    top: 0.25em;
    width: 20px;
    height: 20px;
    border-radius: 3px;
  }
}

.c-intro-pack-rate-box-figure-list__item.gold::before {
  background-color: #D6BE32;
}

.c-intro-pack-rate-box-figure-list__item.silver::before {
  background-color: #A3A3A3;
}

.c-intro-pack-rate-box-figure-list__item.white::before {
  background-color: #EAEAEA;
}

.c-pack-compare-table {
  width: 100%;
}

.c-pack-compare-table th,
.c-pack-compare-table td {
  padding: 8px 10px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table th,
  .c-pack-compare-table td {
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}

.c-pack-compare-table .th-main {
  width: 2.5em;
  padding: 8px 0.5em;
  background-color: #8A939D;
  color: #fff;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table .th-main {
    padding: 15px 0.5em;
  }
}

.c-pack-compare-table .th-main .hyphen {
  display: inline-block;
  vertical-align: middle;
  transform: rotate(90deg);
  transform-origin: center center;
}

.c-pack-compare-table th {
  background-color: #F3F4F5;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
}

.c-pack-compare-table th.none {
  background-color: transparent;
  border-top: none;
  border-left: none;
}

.c-pack-compare-table th.gold {
  width: 70px;
  background-color: #D6BE32;
  text-align: center;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table th.gold {
    width: 140px;
  }
}

.c-pack-compare-table th.silver {
  width: 70px;
  background-color: #A3A3A3;
  text-align: center;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table th.silver {
    width: 140px;
  }
}

.c-pack-compare-table th.white {
  width: 70px;
  background-color: #EAEAEA;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table th.white {
    width: 140px;
  }
}

.c-pack-compare-table td {
  background-color: #fff;
  text-align: center;
}

.c-pack-compare-table td span {
  display: inline-block;
  vertical-align: middle;
}

.c-pack-compare-table td img {
  width: 20px;
  height: auto;
}

@media all and (min-width: 768px) {
  .c-pack-compare-table td img {
    width: 30px;
  }
}

.c-pack-compare-table + .c-text-gray-small {
  margin-top: 0.5em;
}

@supports (-ms-ime-align: auto) {
  /* Edge */
  .c-pack-compare-table td .maru {
    background: url("../image/common/ico/ico_face01@2x.png") top left no-repeat;
    background-size: 30px 30px;
  }
  .c-pack-compare-table td .maru img {
    opacity: 0;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-pack-compare-table .th-main .hyphen {
    margin-top: -0.15em;
    margin-left: -0.25em;
  }
}

/* plugin
---------------------------------------------------------- */
/* slick.js
---------------------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  /*display: block;*/
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  right: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li:first-child:last-child {
  display: none;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '" ';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 820px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

@media all and (min-width: 768px) {
  .modaal-container {
    border-radius: 12px;
  }
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: absolute;
  top: -37px;
  right: 0;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
  .modaal-close {
    top: -49px;
    width: 24px;
    height: 24px;
  }
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 8px;
  width: 4px;
  height: 23px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

@media all and (min-width: 768px) {
  .modaal-close:before, .modaal-close:after {
    left: 10px;
    height: 28px;
  }
}

.modaal-close:before {
  transform: rotate(-45deg);
}

.modaal-close:after {
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 0;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}

@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}

@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}

@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}

@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}

@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}

@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: .1;
    transform: scale(1);
  }
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: .87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* ==========================================================
 Object / Project
========================================================== */
/* header
---------------------------------------------------------- */
/* サイトロゴ */
.p-header-logo {
  margin: 0 15px 0 16px;
  width: 100%;
  max-width: 208px;
}

@media all and (min-width: 768px) {
  .p-header-logo {
    width: 200px;
    max-width: 100%;
    margin: 0 15px 0 0;
  }
}

@media all and (min-width: 1200px) {
  .p-header-logo {
    width: 218px;
  }
}

.p-header-logo__inner {
  display: block;
}

@media all and (min-width: 768px) {
  .p-header-logo__inner:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-header-functions {
  width: 120px;
  min-width: 120px;
}

@media all and (min-width: 768px) {
  .p-header-functions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    flex: 1 1;
  }
}

.p-header-links {
  display: none;
}

@media all and (min-width: 768px) {
  .p-header-links {
    display: flex;
    align-items: center;
    margin-right: 24px;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .p-header-links {
    margin-right: 32px;
  }
}

@media all and (min-width: 1200px) {
  .p-header-links {
    margin-right: 40px;
  }
}

.p-header-links__item {
  margin-right: 10px;
}

@media all and (min-width: 992px) {
  .p-header-links__item {
    margin-right: 15px;
  }
}

.p-header-links__item:last-child {
  margin-right: 0;
}

.p-header-links__link {
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-header-links__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

@media all and (min-width: 992px) {
  .p-header-links__link {
    font-size: 1.4rem;
  }
}

/* メール問い合わせボタン */
.p-header-contact-button {
  display: none;
}

@media all and (min-width: 768px) {
  .p-header-contact-button {
    display: block;
    background: url("../image/common/btn/btn_header_contact_mail_pc.svg") top left no-repeat;
    background-size: contain;
  }
  .p-header-contact-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-header-contact-button {
    width: 48px;
    height: 48px;
    margin-right: 12px;
  }
}

@media all and (min-width: 992px) {
  .p-header-contact-button {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }
}

.p-header-form-contact-button {
  display: block;
  width: 112px;
  height: 48px;
  background: url("../image/common/btn/btn_header_form_contact_mail_sp@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-header-form-contact-button {
    width: 240px;
    height: 56px;
    background: url("../image/common/btn/btn_header_form_contact_mail_pc@2x.png") top left no-repeat;
    background-size: contain;
  }
}

.p-header-form-contact-button:hover {
  opacity: 0.75;
  transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/* 見積・申込みボタン */
.p-header-estimate-button {
  display: block;
  position: absolute;
  top: 0;
  right: 56px;
  width: 64px;
  height: 60px;
  background: url("../image/common/btn/btn_header_estimate_sp.svg") top left no-repeat;
  background-size: contain;
  color: #fff;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-header-estimate-button {
    position: relative;
    right: 0;
    width: 100%;
    background-image: none;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-header-estimate-button {
    max-width: 170px;
    height: 48px;
  }
}

@media all and (min-width: 992px) {
  .p-header-estimate-button {
    max-width: 200px;
    height: 56px;
  }
}

.p-header-estimate-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 7px;
}

@media all and (max-width: 767px) {
  .p-header-estimate-button::after {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .p-header-estimate-button:hover .p-header-estimate-button__inner {
    transform: translate3d(-1px, -1px, 0);
  }
  .p-header-estimate-button:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

@media all and (max-width: 767px) {
  .p-header-estimate-button__inner {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .p-header-estimate-button__inner {
    display: block;
    position: relative;
    height: 100%;
    background-color: #FF6670;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid #0045AD;
    z-index: 1;
  }
}

@media all and (min-width: 992px) {
  .p-header-estimate-button__inner {
    font-size: 1.8rem;
  }
}

.p-header-estimate-button__inner > span {
  display: block;
  padding: 14px 20px;
  text-align: center;
  line-height: 1.2;
  word-break: keep-all;
}

/* ヘッダーメニューボタン */
.p-header-menu-button {
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
  width: 48px;
  height: 48px;
  margin: auto 0;
}

@media all and (min-width: 768px) {
  .p-header-menu-button {
    display: none;
  }
}

.p-header-menu-button__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 24px;
  height: 4px;
  background-color: #0045AD;
  border-radius: 4px;
}

.p-header-menu-button__inner::before, .p-header-menu-button__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 24px;
  height: 4px;
  background-color: #0045AD;
  border-radius: 4px;
}

.p-header-menu-button__inner::before {
  top: -10px;
}

.p-header-menu-button__inner::after {
  bottom: -10px;
}

/* メニューコンテンツ */
.p-menu-hamburger {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FEF7EC;
  z-index: 999;
  overflow-y: auto;
}

@media all and (min-width: 768px) {
  .p-menu-hamburger {
    display: none;
  }
}

.p-menu-hamburger__inner {
  position: relative;
  padding: 0 16px 48px;
  min-height: 100%;
}

.p-menu-hamburger__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  margin-bottom: 20px;
}

.p-menu-hamburger__content {
  padding: 0 0 30px;
}

.p-menu-hamburger__close {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0045AD;
}

.p-menu-hamburger__close span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 30px;
}

.p-menu-hamburger__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: url("../image/common/ico/ico_close_blue_01.svg") top left no-repeat;
  background-size: contain;
}

.p-menu-hamburger-logo {
  display: block;
  margin: 0 15px 0 0;
  width: 100%;
  max-width: 208px;
  flex: 1 1;
}

.p-menu-hamburger-estimate-button {
  display: block;
  width: 108px;
  height: 52px;
  margin-right: -4px;
  background: url("../image/common/btn/btn_menu_estimate_button_sp_01.svg") top left no-repeat;
  background-size: contain;
}

.p-menu-contact-links {
  display: flex;
  max-width: 391px;
  margin: 0 auto 24px;
}

.p-menu-contact-links__item {
  margin: 0 8px;
}

.p-menu-hamburger-navi {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.p-menu-hamburger-navi__item {
  border-bottom: 1px solid #FEF7EC;
}

.p-menu-hamburger-navi__item:last-child {
  border-bottom: none;
}

.p-menu-hamburger-navi__link {
  position: relative;
  display: block;
  padding: 16px 47px 16px 24px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-menu-hamburger-navi__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_arrow_right_white_02@2x.png) top left no-repeat;
  background-size: contain;
}

.p-menu-hamburger-links {
  display: flex;
  flex-wrap: wrap;
  padding: 0 14px;
  margin: -15px 0 0;
}

.p-menu-hamburger-links__item {
  width: 50%;
  padding: 0 14px;
  margin-top: 15px;
}

.p-menu-hamburger-links__link {
  position: relative;
  display: block;
  padding: 0 19px 0 0;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
}

.p-menu-hamburger-links__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 12px;
  margin-top: -6px;
  background: url(../image/common/ico/ico_arrow_right_blue_01@2x.png) top left no-repeat;
  background-size: contain;
}

/* header fixed */
@media all and (min-width: 768px) {
  #wrapper.is-header-fixed .l-contents {
    padding-top: 72px;
  }
  .l-header.is-fixed {
    position: fixed;
  }
  .l-header.is-fixed .p-header-links,
  .l-header.is-fixed .p-header-contact-button {
    display: none;
  }
  .l-header.is-fixed .l-header__inner {
    height: 72px;
  }
  .l-header.is-fixed .p-header-estimate-button {
    height: 48px;
  }
  .l-header.is-fixed .p-global-navi {
    display: none;
  }
  .l-header.is-fixed .p-fixed-global-navi {
    display: flex;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .l-header.is-fixed .l-header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-header.is-fixed .p-header-logo {
    width: 150px;
    margin-right: 35px;
  }
  .l-header.is-fixed .p-header-estimate-button {
    width: 64px;
  }
  .l-header.is-fixed .p-header-estimate-button__inner {
    font-size: 1.3rem;
  }
  .l-header.is-fixed .p-header-estimate-button__inner > span {
    padding: 6px 5px;
  }
  .l-header.is-fixed .p-header-estimate-button__inner .rear {
    display: block;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .l-header.is-fixed .p-header-logo {
    width: 150px;
    margin-right: 80px;
  }
  .l-header.is-fixed .p-header-estimate-button {
    width: 64px;
  }
  .l-header.is-fixed .p-header-estimate-button__inner {
    font-size: 1.3rem;
  }
  .l-header.is-fixed .p-header-estimate-button__inner > span {
    padding: 6px 5px;
  }
  .l-header.is-fixed .p-header-estimate-button__inner .rear {
    display: block;
  }
}

@media all and (min-width: 1200px) {
  .l-header.is-fixed .p-header-logo {
    width: 185px;
  }
  .l-header.is-fixed .p-header-estimate-button {
    width: 136px;
  }
  .l-header.is-fixed .p-header-estimate-button__inner {
    font-size: 1.6rem;
  }
  .l-header.is-fixed .p-header-estimate-button__inner > span {
    padding: 12px 5px;
  }
}

/* footer
---------------------------------------------------------- */
/* フッターバナーエリア */
.p-footer-banner-list::after {
  display: block;
  clear: both;
  content: "";
}

.p-footer-banner-list__item {
  float: left;
  margin: 0 8px;
}

.p-footer-banner-list__link {
  display: block;
}

@media all and (min-width: 768px) {
  .p-footer-banner-list__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-footer-banner-list__link img {
  width: 100%;
  height: auto;
}

.p-footer-banner-list .slick-dots {
  bottom: -32px;
}

.p-footer-banner-list .slick-dots li {
  width: 12px;
  height: 12px;
}

.p-footer-banner-list .slick-dots li::before {
  display: none;
}

.p-footer-banner-list .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.p-footer-banner-list .slick-dots li button::before {
  display: none;
}

.p-footer-banner-list .slick-dots li.slick-active button {
  background: #0045AD;
}

.p-footer-banner-contents {
  padding: 0 16px;
}

@media all and (min-width: 768px) {
  .p-footer-banner-contents {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 -20px;
  }
}

.p-footer-banner-contents__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-footer-banner-contents__item {
    margin: 0 20px;
  }
}

.p-footer-banner-contents__item:last-child {
  margin-bottom: 0;
}

.p-footer-banner-contents__link {
  display: block;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-footer-banner-contents__link:hover .inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-footer-banner-contents__link:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-footer-banner-contents__link::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-footer-banner-contents__link::after {
    border-radius: 12px;
  }
}

.p-footer-banner-contents__link .inner {
  overflow: hidden;
  position: relative;
  display: block;
  border: 2px solid #0045AD;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-footer-banner-contents__link .inner {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-footer-menu__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi {
    display: flex;
    flex-wrap: wrap;
    margin: -30px 0 0;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-footer-menu-navi {
    width: 100%;
  }
}

@media all and (min-width: 992px) {
  .p-footer-menu-navi {
    width: calc(100% - 320px);
  }
}

.p-footer-menu-navi__item {
  border-bottom: 1px solid #fff;
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi__item {
    width: 50%;
    margin-top: 30px;
    border: none;
  }
}

.p-footer-menu-navi__link {
  position: relative;
  display: block;
  padding: 20px 50px 20px 24px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi__link {
    padding: 0 0 0 17px;
    font-size: 2.0rem;
  }
  .p-footer-menu-navi__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-footer-menu-navi__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_arrow_right_white_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi__link::after {
    left: 0;
    right: auto;
    width: 8px;
    height: 10px;
    margin-top: -5px;
  }
}

.p-footer-menu-navi__item--beginner .p-footer-menu-navi__link {
  padding-left: 52px;
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi__item--beginner .p-footer-menu-navi__link {
    padding-left: 43px;
  }
}

.p-footer-menu-navi__item--beginner .p-footer-menu-navi__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_beginner_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-footer-menu-navi__item--beginner .p-footer-menu-navi__link::before {
    left: 17px;
  }
}

.p-footer-menu-child {
  display: none;
}

@media all and (min-width: 768px) {
  .p-footer-menu-child {
    display: block;
    margin-top: 15px;
  }
}

.p-footer-menu-child__link {
  color: #fff;
  font-size: 1.4rem;
}

.p-footer-menu-child__link:hover {
  text-decoration: underline;
}

.p-footer-menu-grandchild__item {
  position: relative;
  padding-left: 19px;
}

.p-footer-menu-grandchild__link {
  position: relative;
  color: #fff;
  font-size: 1.4rem;
}

.p-footer-menu-grandchild__link:hover {
  text-decoration: underline;
}

.p-footer-menu-grandchild__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -19px;
  width: 12px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* p-footer-menu-links */
.p-footer-menu-links {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 15px;
  margin: -15px 0 0;
}

@media all and (min-width: 768px) {
  .p-footer-menu-links {
    display: block;
    min-width: 320px;
    padding: 40px 40px 45px;
    margin: 0;
    background-color: #09397F;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-footer-menu-links {
    width: 100%;
    margin-top: 60px;
    padding: 5px 40px 40px;
  }
}

.p-footer-menu-links__item {
  width: 50%;
  margin-top: 15px;
  padding: 0 32px 0 24px;
}

@media all and (min-width: 768px) {
  .p-footer-menu-links__item {
    width: auto;
    padding: 0;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-footer-menu-links__item {
    float: left;
    margin: 35px 38px 0 0;
  }
}

@media all and (min-width: 992px) {
  .p-footer-menu-links__item {
    margin: 0 0 30px 0;
  }
}

.p-footer-menu-links__item:nth-child(5) {
  clear: both;
}

.p-footer-menu-links__link {
  position: relative;
  display: block;
  padding: 3px 20px 3px 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-footer-menu-links__link {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 17px;
  }
  .p-footer-menu-links__link:hover {
    text-decoration: underline;
  }
}

.p-footer-menu-links__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_arrow_right_white_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-footer-menu-links__link::after {
    left: 0;
    right: auto;
    width: 8px;
    height: 10px;
    margin-top: -5px;
  }
}

/* footer logo */
.p-footer-logo {
  display: block;
  width: 100%;
  max-width: 227px;
  margin: 0 auto 20px;
}

@media all and (min-width: 768px) {
  .p-footer-logo {
    max-width: 340px;
    margin-bottom: 40px;
  }
  .p-footer-logo:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/* footer-contact links */
.p-footer-contact-links {
  display: flex;
  justify-content: center;
}

.p-footer-contact-links__item {
  margin-right: 15px;
}

.p-footer-contact-links__item:last-child {
  margin-right: 0;
}

.p-footer-contact-links__item a {
  display: block;
}

@media all and (min-width: 768px) {
  .p-footer-contact-links__item a:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

@media all and (min-width: 768px) {
  .p-footer-contact-links__item .sp {
    display: none;
  }
}

.p-footer-contact-links__item .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-footer-contact-links__item .pc {
    display: block;
  }
}

.p-footer-contact-links__item img {
  width: 100%;
}

.p-footer-contact-links__mail {
  max-width: 64px;
}

@media all and (min-width: 768px) {
  .p-footer-contact-links__mail {
    max-width: inherit;
  }
}

.p-footer-contact-links__tel {
  max-width: 248px;
}

@media all and (min-width: 768px) {
  .p-footer-contact-links__tel {
    max-width: inherit;
  }
}

@media all and (min-width: 992px) {
  .p-footer-contact-links__tel {
    pointer-events: none;
    cursor: default;
  }
  .p-footer-contact-links__tel:hover {
    opacity: 1.0;
  }
}

/* footer-bottom links */
.p-footer-bottom-links {
  max-width: 375px;
  margin: -15px auto 30px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-footer-bottom-links {
    max-width: inherit;
    margin-bottom: 40px;
  }
}

.p-footer-bottom-links__item {
  display: inline-block;
  margin: 15px 0 0;
  padding: 0 16px 0;
}

@media all and (min-width: 768px) {
  .p-footer-bottom-links__item {
    border-right: 1px solid #0045AD;
  }
}

.p-footer-bottom-links__item:nth-child(2n-1) {
  border-right: 1px solid #0045AD;
}

.p-footer-bottom-links__item:last-child {
  border-right: none;
}

.p-footer-bottom-links__link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.2rem;
  line-height: 1.1;
}

@media all and (min-width: 768px) {
  .p-footer-bottom-links__link {
    display: block;
  }
  .p-footer-bottom-links__link:hover {
    text-decoration: underline;
  }
}

.p-footer-bottom-links__link[target="_blank"] {
  padding-right: 16px;
}

.p-footer-bottom-links__link[target="_blank"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_blank_02@2x.png") top left no-repeat;
  background-size: contain;
}

/* footer copyriht */
.p-footer-copyright {
  font-family: 'Barlow', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #0045AD;
  text-align: center;
  letter-spacing: 0.05em;
}

/* footer pagetop button */
.p-pagetop-button {
  opacity: 0;
  position: fixed;
  z-index: 990;
  right: 8px;
  bottom: 72px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(22, 40, 60, 0.28);
  transition: opacity 0.4s ease;
}

.p-pagetop-button.is-show {
  opacity: 1.0;
}

@media all and (min-width: 768px) {
  .p-pagetop-button {
    right: 40px;
    bottom: 40px;
  }
  .p-pagetop-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/* 固定メニュー */
.p-fixedbar {
  opacity: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-top: 3px solid #0045AD;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.p-fixedbar.is-show {
  opacity: 1.0;
}

@media all and (min-width: 768px) {
  .p-fixedbar {
    display: none;
  }
}

.p-fixedbar-estimate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1;
  background-color: #FF6670;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.p-fixedbar-contact-button {
  position: relative;
  display: block;
  width: 70px;
  height: 100%;
  border-left: 3px solid #0045AD;
  border-right: 3px solid #0045AD;
}

.p-fixedbar-contact-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  width: 18px;
  height: 15px;
  margin: 0 auto;
  background: url("../image/common/ico/ico_mail_blue_01@2x.png") top left no-repeat;
  background-size: contain;
}

.p-fixedbar-contact-button__inner {
  display: block;
  padding: 5px 5px 5px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.p-fixedbar-menu-button {
  position: relative;
  display: block;
  width: 64px;
  height: 100%;
}

.p-fixedbar-menu-button__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 24px;
  height: 4px;
  background-color: #0045AD;
  border-radius: 4px;
}

.p-fixedbar-menu-button__inner::before, .p-fixedbar-menu-button__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 24px;
  height: 4px;
  background-color: #0045AD;
  border-radius: 4px;
}

.p-fixedbar-menu-button__inner::before {
  top: -10px;
}

.p-fixedbar-menu-button__inner::after {
  bottom: -10px;
}

/* globalNavi
---------------------------------------------------------- */
.p-global-navi {
  display: none;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .p-global-navi {
    display: block;
    padding: 0 40px;
  }
}

.p-global-navi__inner {
  display: none;
}

@media all and (min-width: 768px) {
  .p-global-navi__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    padding: 3px 0 0;
    background: url("../image/common/bg/bg_header_line_dot_01.svg") top left 3px repeat-x;
    background-size: 10px 3px;
  }
}

@media all and (min-width: 992px) {
  .p-global-navi__inner {
    max-width: 1082px;
  }
}

.p-global-navi__item {
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-global-navi__item {
/*  font-size: 1.5rem; */ 
    font-size: 1.2rem;
  }
}

@media all and (min-width: 992px) {
  .p-global-navi__item {
/*  font-size: 1.8rem; */ 
    font-size: 1.6rem;
  }
}

.p-global-navi__link {
  display: block;
  text-decoration: none;
  color: #0045AD;
  text-align: center;
  line-height: 1.1;
}

@media all and (min-width: 768px) {
  .p-global-navi__link {
    padding: 7px 1px;
  }
}

@media all and (min-width: 992px) {
  .p-global-navi__link {
    padding: 12px 10px;
  }
}

@media all and (min-width: 1200px) {
  .p-global-navi__link {
/*  padding: 12px 20px; */ 
    padding: 10px 16px;
  }
}

.p-global-navi__link span {
  display: block;
  position: relative;
}

@media all and (min-width: 768px) {
  .p-global-navi__link span {
    padding: 10px 4px;
  }
}

.p-global-navi__link span::after {
  opacity: 0;
  overflow: hidden;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #FF6670;
  border-radius: 2px;
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media all and (min-width: 768px) {
  .p-global-navi__link:hover span::after {
    opacity: 1.0;
  }
}

body.l-g01 .p-global-navi__item:nth-child(1) .p-global-navi__link span::after,
body.l-g02 .p-global-navi__item:nth-child(2) .p-global-navi__link span::after,
body.l-g03 .p-global-navi__item:nth-child(3) .p-global-navi__link span::after,
body.l-g04 .p-global-navi__item:nth-child(4) .p-global-navi__link span::after,
body.l-g05 .p-global-navi__item:nth-child(5) .p-global-navi__link span::after,
body.l-g06 .p-global-navi__item:nth-child(6) .p-global-navi__link span::after,
body.l-g07 .p-global-navi__item:nth-child(7) .p-global-navi__link span::after,
body.l-g08 .p-global-navi__item:nth-child(8) .p-global-navi__link span::after {
  opacity: 1.0;
}

.p-fixed-global-navi {
  display: none;
  flex: 1 1;
  height: 100%;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-fixed-global-navi {
    margin-right: 15px;
  }
}

@media all and (min-width: 992px) {
  .p-fixed-global-navi {
    margin-right: 35px;
  }
}

.p-fixed-global-navi__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.p-fixed-global-navi__item {
  height: 100%;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-fixed-global-navi__item {
    margin-right: 10px;
  }
}

@media all and (min-width: 992px) {
  .p-fixed-global-navi__item {
    margin-right: 15px;
  }
}

@media all and (min-width: 1200px) {
  .p-fixed-global-navi__item {
    margin-right: 15px;
  }
}

.p-fixed-global-navi__item:last-child {
  margin-right: 0;
}

.p-fixed-global-navi__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 1px;
  font-weight: bold;
  text-align: center;
  line-height: 1.15;
  word-break: keep-all;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-fixed-global-navi__link {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .p-fixed-global-navi__link {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 1200px) {
  .p-fixed-global-navi__link {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 1200px) {
  .p-fixed-global-navi__link br {
    display: none;
  }
}

.p-fixed-global-navi__link span {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 4px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-fixed-global-navi__link span {
    padding: 10px 3px;
  }
}

.p-fixed-global-navi__link span::after {
  opacity: 0;
  overflow: hidden;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #FF6670;
  border-radius: 2px;
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media all and (min-width: 768px) {
  .p-fixed-global-navi__link:hover span::after {
    opacity: 1.0;
  }
}

body.l-g01 .p-fixed-global-navi__item:nth-child(1) .p-fixed-global-navi__link span::after,
body.l-g02 .p-fixed-global-navi__item:nth-child(2) .p-fixed-global-navi__link span::after,
body.l-g03 .p-fixed-global-navi__item:nth-child(3) .p-fixed-global-navi__link span::after,
body.l-g04 .p-fixed-global-navi__item:nth-child(4) .p-fixed-global-navi__link span::after,
body.l-g05 .p-fixed-global-navi__item:nth-child(5) .p-fixed-global-navi__link span::after,
body.l-g06 .p-fixed-global-navi__item:nth-child(6) .p-fixed-global-navi__link span::after,
body.l-g07 .p-fixed-global-navi__item:nth-child(7) .p-fixed-global-navi__link span::after,
body.l-g08 .p-fixed-global-navi__item:nth-child(8) .p-fixed-global-navi__link span::after {
  opacity: 1.0;
}

/* 個別CSS設定
========================================================== */
/* toppage
---------------------------------------------------------- */
/* key visual */
.p-toppage-keyvisual {
  position: relative;
  background-color: #FEF7EC;
  padding: 0 0 50px;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual {
    padding-bottom: 80px;
  }
}

.p-toppage-keyvisual__inner {
  position: relative;
}

.p-toppage-keyvisual__inner::after {
  display: block;
  clear: both;
  content: "";
}

.p-toppage-keyvisual__inner.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.p-toppage-keyvisual__item {
  float: left;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__item {
    opacity: 0.5;
  }
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__item .sp {
    display: none;
  }
}

.p-toppage-keyvisual__item .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__item .pc {
    display: block;
  }
}

.p-toppage-keyvisual__item img {
  width: 100%;
  height: auto;
}

.p-toppage-keyvisual__item.slick-active {
  opacity: 1.0;
}

.p-toppage-keyvisual__link {
  position: relative;
  display: block;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-toppage-keyvisual__button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-block;
  vertical-align: middle;
  padding: 7px 24px 7px 12px;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid #0045AD;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__button {
    right: 16px;
    bottom: 16px;
    padding: 8px 36px 8px 16px;
    font-size: 1.6rem;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 12px;
  }
}

.p-toppage-keyvisual__button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual__button::before {
    right: 12px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}

.p-toppage-keyvisual .slick-dots {
  bottom: -20px;
}

@media all and (min-width: 768px) {
  .p-toppage-keyvisual .slick-dots {
    bottom: -35px;
  }
}

.p-toppage-keyvisual .slick-dots li {
  width: 12px;
  height: 12px;
}

.p-toppage-keyvisual .slick-dots li::before {
  display: none;
}

.p-toppage-keyvisual .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.p-toppage-keyvisual .slick-dots li button::before {
  display: none;
}

.p-toppage-keyvisual .slick-dots li.slick-active button {
  background: #0045AD;
}

/* check */
.p-toppage-check-items-area {
  background-color: #FEF7EC;
}

.p-toppage-check-items-area__inner {
  padding: 0 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items-area__inner {
    padding: 0 40px 80px;
    max-width: 1120px;
  }
}

.p-toppage-check-items-area__button {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items-area__button {
    margin-bottom: 40px;
  }
}

.p-toppage-check-items {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -8px 0;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items {
    margin: 0 -20px 0;
  }
}

.p-toppage-check-items__item {
  width: 50%;
  margin-top: 16px;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item {
    margin-top: 0;
    width: 25%;
    padding: 0 20px;
  }
}

.p-toppage-check-items__link {
  position: relative;
  display: block;
  height: 100%;
}

.p-toppage-check-items__link::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__link:hover .p-toppage-check-items__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-toppage-check-items__link:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-toppage-check-items__inner {
  display: block;
  position: relative;
  min-height: 116px;
  height: 100%;
  padding: 10px 5px 20px;
  background-color: #fff;
  border: 3px solid #0045AD;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__inner {
    min-height: 152px;
  }
}

.p-toppage-check-items__inner::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 16px;
  height: 16px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__inner::before {
    width: 20px;
    height: 20px;
  }
}

.p-toppage-check-items__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-toppage-check-items__sub {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__sub {
    font-size: 1.4rem;
  }
}

.p-toppage-check-items__main {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__main {
    font-size: 2.0rem;
  }
}

.p-toppage-check-items__item.items1 .p-toppage-check-items__inner::after {
  bottom: 12px;
  width: 26px;
  height: 38px;
  background-image: url("../image/top/ico_top_items_wakaba.svg");
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items1 .p-toppage-check-items__inner::after {
    width: 34px;
    height: 48px;
    bottom: 8px;
  }
}

.p-toppage-check-items__item.items1 .p-toppage-check-items__sub {
  margin-bottom: 6px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items1 .p-toppage-check-items__sub {
    margin-bottom: 15px;
  }
}

.p-toppage-check-items__item.items2 .p-toppage-check-items__inner::after {
  bottom: 10px;
  width: 33px;
  height: 37px;
  background-image: url("../image/top/ico_top_items_document.svg");
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items2 .p-toppage-check-items__inner::after {
    width: 43px;
    height: 47px;
    bottom: 8px;
  }
}

.p-toppage-check-items__item.items2 .p-toppage-check-items__sub {
  margin-bottom: 3px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items2 .p-toppage-check-items__sub {
    margin-bottom: 15px;
  }
}

.p-toppage-check-items__item.items3 .p-toppage-check-items__inner {
  padding-top: 5px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items3 .p-toppage-check-items__inner {
    padding-top: 10px;
  }
}

.p-toppage-check-items__item.items3 .p-toppage-check-items__inner::after {
  bottom: 8px;
  width: 36px;
  height: 38px;
  background-image: url("../image/top/ico_top_items_family.svg");
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items3 .p-toppage-check-items__inner::after {
    width: 46px;
    height: 49px;
  }
}

.p-toppage-check-items__item.items3 .p-toppage-check-items__sub {
  margin-bottom: 3px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items3 .p-toppage-check-items__sub {
    margin-bottom: 6px;
  }
}

.p-toppage-check-items__item.items4 .p-toppage-check-items__inner::after {
  bottom: 10px;
  width: 44px;
  height: 35px;
  background-image: url("../image/top/ico_top_items_car.svg");
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items4 .p-toppage-check-items__inner::after {
    width: 56px;
    height: 42px;
  }
}

.p-toppage-check-items__item.items4 .p-toppage-check-items__sub {
  padding-top: 4px;
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-check-items__item.items4 .p-toppage-check-items__sub {
    padding-top: 0;
    margin-bottom: 15px;
  }
}

/* whats */
.p-toppage-whats-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-toppage-whats-heading {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading {
    margin-bottom: 80px;
  }
}

.p-toppage-whats-heading__inner {
  color: #0045AD;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__inner {
    text-align: left;
  }
}

.p-toppage-whats-heading__subtitle {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
  letter-spacing: 0.1em;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__subtitle {
    margin-bottom: 12px;
    font-size: 2.0rem;
  }
}

.p-toppage-whats-heading__subtitle span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 58px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__subtitle span {
    padding: 0 110px 0 0;
  }
}

.p-toppage-whats-heading__subtitle span::before, .p-toppage-whats-heading__subtitle span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 40px;
  height: 4px;
  background: url(../image/common/ico/ico_heading_line_blue_red_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__subtitle span::before, .p-toppage-whats-heading__subtitle span::after {
    width: 80px;
    height: 8px;
  }
}

.p-toppage-whats-heading__subtitle span::before {
  left: 0;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__subtitle span::before {
    display: none;
  }
}

.p-toppage-whats-heading__subtitle span::after {
  right: 0;
}

.p-toppage-whats-heading__title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.1;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-heading__title {
    font-size: 3.6rem;
  }
}

.p-toppage-whats-read {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-read {
    font-size: 2.4rem;
    text-align: left;
  }
}

.p-toppage-whats-read em {
  color: #FF6670;
  font-weight: bold;
  font-style: normal;
}

.p-toppage-whats-text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-text {
    font-size: 1.6rem;
  }
}

.p-toppage-whats-main {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-main {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}

.p-toppage-whats-main__description {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-main__description {
    width: 50%;
    padding: 80px 20px 0 0;
  }
}

@media all and (min-width: 768px) {
  .p-toppage-whats-main__graph {
    width: 50%;
    padding-left: 20px;
  }
}

.p-toppage-whats-figure {
  background-color: #FEF7EC;
  padding: 24px 16px 16px 16px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-figure {
    padding: 35px 24px 24px;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-toppage-whats-figure .sp {
    display: none;
  }
}

.p-toppage-whats-figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-figure .pc {
    display: block;
  }
}

.p-toppage-whats-figure img {
  width: 100%;
  height: auto;
}

.p-toppage-whats-figure-note {
  position: relative;
  margin-top: 5px;
  padding-left: 1.2em;
  color: rgba(25, 36, 42, 0.5);
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-figure-note {
    font-size: 1.2rem;
  }
}

.p-toppage-whats-figure-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-toppage-whats-structure {
  margin: 0 auto 50px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure {
    margin-bottom: 80px;
    max-width: 860px;
  }
}

.p-toppage-whats-structure__heading {
  position: relative;
  padding: 14px 44px;
  background-color: #0045AD;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__heading {
    padding: 19px 50px;
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.p-toppage-whats-structure__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__heading::after {
    right: 20px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__heading:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-toppage-whats-structure__heading.is-open {
  border-radius: 8px 8px 0 0;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__heading.is-open {
    border-radius: 12px 12px 0 0;
  }
}

.p-toppage-whats-structure__heading.is-open::after {
  transform: rotate(-90deg);
}

.p-toppage-whats-structure__content {
  display: none;
  background-color: #FEF7EC;
  padding: 20px 16px 20px;
  border-radius: 0 0 8px 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__content {
    padding: 40px 40px 40px;
    border-radius: 0 0 12px 12px;
  }
}

.p-toppage-whats-structure__content.is-open {
  display: block;
}

.p-toppage-whats-structure__figure {
  margin-bottom: 25px;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__figure {
    margin-bottom: 50px;
  }
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__figure .sp {
    display: none;
  }
}

.p-toppage-whats-structure__figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__figure .pc {
    display: block;
  }
}

.p-toppage-whats-structure__text {
  font-size: 1.4rem;
  line-height: 1.65;
}

@media all and (min-width: 768px) {
  .p-toppage-whats-structure__text {
    font-size: 1.6rem;
  }
}

.p-toppage-whats-structure__text em {
  font-style: normal;
  font-weight: bold;
}

/* flow */
.p-toppage-flow-section {
  background-color: #FEF7EC;
}

.p-toppage-flow-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-flow-section__inner {
    max-width: 940px;
    padding: 80px 40px 80px;
  }
}

/* voice */
.p-toppage-voice-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-voice-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-toppage-voice-heading {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-toppage-voice-heading {
    margin-bottom: 40px;
  }
}

.p-toppage-voice-read {
  margin-bottom: 40px;
  font-size: 1.4rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-toppage-voice-read {
    margin-bottom: 80px;
    font-size: 1.6rem;
  }
}

/* CM */
.p-toppage-cm-section {
  background-color: #FEF7EC;
}

.p-toppage-cm-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-toppage-cm-list {
  padding: 0 32px;
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 80px;
  }
}

.p-toppage-cm-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__item {
    width: 50%;
    padding: 0 20px;
    margin: 0;
  }
}

.p-toppage-cm-list__item:last-child {
  margin-bottom: 0;
}

.p-toppage-cm-list__link {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__link:hover .p-toppage-cm-list__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-toppage-cm-list__link:hover .p-toppage-cm-list__figure::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-toppage-cm-list__figure {
  position: relative;
}

.p-toppage-cm-list__figure::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__figure::after {
    border-radius: 12px;
  }
}

.p-toppage-cm-list__figure img {
  width: 100%;
  height: auto;
}

.p-toppage-cm-list__button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 8px;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__button {
    right: 17px;
    bottom: 17px;
    width: 46px;
    height: 46px;
  }
}

.p-toppage-cm-list__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 14px;
  margin: auto;
  background: url("../image/common/ico/ico_arrow_triangle_blue_tright_01.svg") center center no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__button::after {
    width: 15px;
    height: 18px;
  }
}

.p-toppage-cm-list__inner {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__inner {
    border-radius: 12px;
  }
}

.p-toppage-cm-list__title {
  margin-top: 12px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-toppage-cm-list__title {
    font-size: 2.0rem;
  }
}

/* news */
.p-toppage-news-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-toppage-news-section__inner {
    padding: 80px 40px 80px;
    max-width: 940px;
  }
}

.p-toppage-news-list {
  position: relative;
  padding-top: 10px;
}

@media all and (min-width: 768px) {
  .p-toppage-news-list {
    padding-top: 20px;
  }
}

.p-toppage-news-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

/* search
---------------------------------------------------------- */
/* ranking
---------------------------------------------------------- */
.p-ranking-section {
  background-color: #FEF7EC;
}

.p-ranking-section__inner {
  padding: 52px 16px 40px;
  max-width: 940px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-ranking-section__inner {
    padding: 80px 40px 80px;
  }
}

/* special
---------------------------------------------------------- */
.p-special-section-main__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-special-section-main__inner {
    max-width: 940px;
    padding: 80px 40px 80px;
  }
}

.p-special-heading {
  margin-bottom: 15px;
  color: #0045AD;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-special-heading {
    margin-bottom: 35px;
  }
}

.p-special-heading__name {
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-special-heading__name {
    font-size: 1.5rem;
  }
}

.p-special-heading__title {
  font-size: 2.8rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-special-heading__title {
    font-size: 3.5rem;
  }
}

.p-special-heading__title .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 768px) {
  .p-special-heading__title .inner {
    padding: 0 120px;
  }
  .p-special-heading__title .inner::before, .p-special-heading__title .inner::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
  }
  .p-special-heading__title .inner::before {
    top: 8px;
    left: 0;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .p-special-heading__title .inner::after {
    right: 0;
    bottom: 8px;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
  }
}

.p-special-raeding-text {
  margin-bottom: 35px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-special-raeding-text {
    margin-bottom: 75px;
    font-size: 2.4rem;
  }
}

.p-special-commentator-box {
  position: relative;
  padding: 16px 0 12px;
}

.p-special-commentator-box::after {
  display: block;
  clear: both;
  content: "";
}

@media all and (min-width: 768px) {
  .p-special-commentator-box {
    padding: 30px 0 30px;
  }
}

.p-special-commentator-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../image/common/bg/bg_dotted_gray_01.svg") top left repeat-x;
  background-size: contain;
}

.p-special-commentator-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url("../image/common/bg/bg_dotted_gray_01.svg") top left repeat-x;
  background-size: contain;
}

.p-special-commentator-box__image {
  overflow: hidden;
  float: left;
  width: 80px;
  margin-right: 18px;
  border-radius: 5px;
}

@media all and (min-width: 768px) {
  .p-special-commentator-box__image {
    width: 200px;
    margin-right: 30px;
    border-radius: 10px;
  }
}

.p-special-commentator-box__image img {
  width: 100%;
}

.p-special-commentator-box-info {
  overflow: hidden;
}

.p-special-commentator-box-info__title {
  margin-bottom: 0.25em;
  color: #00B6FC;
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-special-commentator-box-info__title {
    font-size: 1.8rem;
  }
}

.p-special-commentator-box-info__post {
  margin-bottom: 0.25em;
  color: #8A939D;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-special-commentator-box-info__post {
    font-size: 1.4rem;
  }
}

.p-special-commentator-box-info__name {
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-special-commentator-box-info__name {
    font-size: 1.6rem;
  }
}

.p-special-commentator-box-info__name em {
  font-style: normal;
}

.p-special-commentator-box__comment {
  clear: both;
  padding-top: 16px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-special-commentator-box__comment {
    clear: right;
    padding-top: 20px;
  }
}

.p-special-section {
  position: relative;
  background-color: #FEF7EC;
}

.p-special-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-special-section__inner {
    padding: 80px 0;
  }
}

.p-special-recommend-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  transform: translate3d(0, -50%, 0);
}

.p-special-recommend-heading__title {
  display: inline-block;
  vertical-align: middle;
  background-color: #FF6670;
  padding: 6px 6px 4px 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-heading__title {
    padding: 8px 14px 8px 18px;
    font-size: 2.8rem;
    border-radius: 8px;
  }
}

.p-special-recommend-heading__title .month {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 0.05em;
  font-size: 2.8rem;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-special-recommend-heading__title .month {
    font-size: 4.8rem;
  }
}

.p-special-recommend-heading__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  width: 20px;
  height: 19px;
  margin: 0 auto;
  background: url(../image/common/ico/ico_triangle_red_under_01@2x.png) top left no-repeat;
  background-size: contain;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .p-special-recommend-heading__title::after {
    bottom: -15px;
    width: 30px;
    height: 28px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-special-recommend-heading__title .month {
    line-height: 1.25em;
    margin: -0.15em 0 0;
  }
  *::-ms-backdrop, .p-special-recommend-heading__title {
    padding-bottom: 2px;
  }
}

.p-special-recommend-car {
  position: relative;
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car {
    background-color: #fff;
    max-width: 1040px;
    padding: 80px 40px 56px;
    margin: 0 auto 105px;
    border-radius: 12px;
  }
  .p-special-recommend-car::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 95.4%;
    height: 100%;
    margin: 0 auto;
    background: url("../image/common/bg/bg_special_car_02@2x.png") top 20px center no-repeat;
    background-size: contain;
    z-index: 1;
  }
}

.p-special-list {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-special-list {
    max-width: 940px;
    padding: 0 40px;
  }
}

.p-special-list__item {
  padding-top: 20px;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-special-list__item {
    padding-top: 25px;
    margin-bottom: 40px;
  }
}

.p-special-list__item:last-child {
  margin-bottom: 0;
}

/* p-special-recommend-car-primary */
.p-special-recommend-car-primary {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
  color: #16283C;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary {
    max-width: 490px;
    margin-bottom: 56px;
    text-align: left;
  }
  .p-special-recommend-car-primary:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-special-recommend-car-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 329px;
  height: 177px;
  margin: 0 auto;
  background: url("../image/common/bg/bg_special_car_01@2x.png") top center no-repeat;
  background-size: contain;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary::before {
    display: none;
  }
}

.p-special-recommend-car-primary__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 0.5em;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary__heading {
    float: left;
    width: 50%;
  }
}

.p-special-recommend-car-primary__title {
  margin-bottom: 0.25em;
  font-size: 1.0rem;
  font-weight: bold;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary__title {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary__title {
    margin-bottom: 0.75em;
    font-size: 1.4rem;
  }
}

.p-special-recommend-car-primary__title em {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary__title em {
    font-size: 1.4rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary__title em {
    font-size: 2.0rem;
  }
}

.p-special-recommend-car-primary__description {
  font-size: 1.2rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary__description {
    font-size: 1.0rem;
  }
}

@media all and (max-width: 767px) {
  .p-special-recommend-car-primary__description {
    max-width: 180px;
    margin: 0 auto;
  }
}

.p-special-recommend-car-primary__image {
  overflow: hidden;
  max-width: 160px;
  margin: 0 auto 7px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary__image {
    float: right;
    width: 50%;
    max-width: 100%;
  }
  .p-special-recommend-car-primary__image img {
    max-width: 120%;
    margin: 0 -10%;
  }
}

.p-special-recommend-car-primary-amount {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-right: 30px;
  color: #0045AD;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount {
    padding-right: 20px;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount {
    clear: left;
    padding-right: 25px;
  }
}

.p-special-recommend-car-primary-amount::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount::after {
    width: 16px;
    height: 16px;
    margin-top: -6px;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}

.p-special-recommend-car-primary-amount__month {
  margin-right: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount__month {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount__month {
    margin-right: 10px;
    font-size: 1.8rem;
  }
}

.p-special-recommend-car-primary-amount__month span {
  display: block;
}

.p-special-recommend-car-primary-amount__amount {
  margin-bottom: -0.1em;
  font-size: 3.0rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount__amount {
    font-size: 2.6rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount__amount {
    font-size: 4.4rem;
  }
}

.p-special-recommend-car-primary-amount__unit {
  margin-left: 4px;
  font-weight: bold;
  line-height: 1.2;
}

.p-special-recommend-car-primary-amount__unit .tax {
  display: block;
  font-size: 1.0rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount__unit .tax {
    font-size: 10px;
    transform: scale(0.7);
    transform-origin: left center;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount__unit .tax {
    font-size: 1.2rem;
  }
}

.p-special-recommend-car-primary-amount__unit .yen {
  display: block;
  font-size: 1.1rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-primary-amount__unit .yen {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-primary-amount__unit .yen {
    font-size: 1.8rem;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-special-recommend-car-primary-amount {
    margin-top: -0.75em;
  }
  *::-ms-backdrop, .p-special-recommend-car-primary-amount__amount {
    line-height: 1.25em;
  }
}

/* p-special-recommend-car-secondary */
.p-special-recommend-car-secondary {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px 20px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary {
    margin-bottom: 56px;
  }
}

.p-special-recommend-car-secondary__item {
  display: block;
  position: relative;
  width: 50%;
  padding: 0 7px;
  text-align: center;
  color: #16283C;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary__item {
    text-align: left;
  }
  .p-special-recommend-car-secondary__item:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-special-recommend-car-secondary__heading {
  margin-bottom: 0.5em;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary__heading {
    float: left;
    width: 50%;
  }
}

.p-special-recommend-car-secondary__title {
  margin-bottom: 0.25em;
  font-size: 1.0rem;
  font-weight: bold;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary__title {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary__title {
    margin-bottom: 0.5em;
    font-size: 1.4rem;
  }
}

.p-special-recommend-car-secondary__title em {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary__title em {
    font-size: 1.4rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary__title em {
    font-size: 2.0rem;
  }
}

.p-special-recommend-car-secondary__description {
  font-size: 1.2rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary__description {
    font-size: 1.0rem;
  }
}

.p-special-recommend-car-secondary__image {
  max-width: 160px;
  margin: 0 auto 7px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary__image {
    float: right;
    width: 50%;
    max-width: 100%;
  }
}

.p-special-recommend-car-secondary-amount {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-right: 30px;
  color: #0045AD;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount {
    padding-right: 18px;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount {
    clear: left;
    float: left;
    padding-right: 25px;
  }
  .p-special-recommend-car-secondary-amount:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-special-recommend-car-secondary-amount::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount::after {
    width: 16px;
    height: 16px;
    margin-top: -6px;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
}

.p-special-recommend-car-secondary-amount__month {
  margin-right: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount__month {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount__month {
    margin-right: 10px;
    font-size: 1.8rem;
  }
}

.p-special-recommend-car-secondary-amount__month span {
  display: block;
}

.p-special-recommend-car-secondary-amount__amount {
  margin-bottom: -0.1em;
  font-size: 3.0rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount__amount {
    font-size: 2.6rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount__amount {
    font-size: 4.5rem;
  }
}

.p-special-recommend-car-secondary-amount__unit {
  margin-left: 4px;
  font-weight: bold;
  line-height: 1.2;
}

.p-special-recommend-car-secondary-amount__unit .tax {
  display: block;
  font-size: 1.0rem;
  word-break: keep-all;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount__unit .tax {
    font-size: 10px;
    transform: scale(0.7);
    transform-origin: left center;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount__unit .tax {
    font-size: 1.2rem;
  }
}

.p-special-recommend-car-secondary-amount__unit .yen {
  display: block;
  font-size: 1.1rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-secondary-amount__unit .yen {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-secondary-amount__unit .yen {
    font-size: 1.8rem;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-special-recommend-car-secondary-amount {
    margin-top: -0.75em;
  }
  *::-ms-backdrop, .p-special-recommend-car-secondary-amount__amount {
    line-height: 1.25em;
  }
}

.p-special-recommend-car-tertiary {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3px 0;
}

.p-special-recommend-car-tertiary__item {
  overflow: hidden;
  position: relative;
  display: block;
  width: 33.3%;
  padding: 0 3px;
  text-align: center;
  z-index: 2;
  color: #16283C;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary__item:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

@media all and (min-width: 992px) {
  .p-special-recommend-car-tertiary__item {
    text-align: left;
  }
}

.p-special-recommend-car-tertiary__item:nth-child(3n-2) {
  width: 33.4%;
}

.p-special-recommend-car-tertiary__title {
  margin-bottom: 0.25em;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary__title {
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: center;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary__title {
    margin-bottom: 0.5em;
    font-size: 1.0rem;
  }
}

@media all and (min-width: 992px) {
  .p-special-recommend-car-tertiary__title {
    text-align: left;
  }
}

.p-special-recommend-car-tertiary__title em {
  display: block;
  font-size: 1.1rem;
  font-style: normal;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary__title em {
    font-size: 10px;
    transform: scale(1.2);
    transform-origin: center;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary__title em {
    font-size: 1.6rem;
  }
}

.p-special-recommend-car-tertiary__image {
  max-width: 110px;
  margin: 0 auto 7px;
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary__image {
    margin-bottom: 0;
    max-width: 100%;
    padding-right: 8px;
  }
}

@media all and (min-width: 992px) {
  .p-special-recommend-car-tertiary__image {
    float: right;
    width: 50%;
    max-width: 100%;
  }
}

.p-special-recommend-car-tertiary__details {
  overflow: hidden;
}

.p-special-recommend-car-tertiary-amount {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 24px;
  color: #0045AD;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount {
    padding-bottom: 18px;
    margin: 0 -0.5em 0 0;
    flex-wrap: nowrap;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount {
    clear: left;
    padding: 0 25px 0 0;
  }
}

.p-special-recommend-car-tertiary-amount::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount::after {
    width: 16px;
    height: 16px;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount::after {
    width: 16px;
    height: 16px;
    top: 50%;
    left: auto;
    bottom: auto;
    margin-top: -8px;
  }
}

.p-special-recommend-car-tertiary-amount__month {
  margin-right: 2px;
  font-weight: bold;
  font-size: 1.0rem;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount__month {
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: center;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount__month {
    margin-right: 2px;
    font-size: 1.1rem;
  }
}

.p-special-recommend-car-tertiary-amount__month span {
  display: block;
}

.p-special-recommend-car-tertiary-amount__amount {
  margin-bottom: -0.1em;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount__amount {
    margin-bottom: 0;
    font-size: 2.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount__amount {
    font-size: 3.0rem;
  }
}

.p-special-recommend-car-tertiary-amount__unit {
  margin-left: 2px;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount__unit {
    display: inline-block;
  }
}

.p-special-recommend-car-tertiary-amount__unit .tax {
  display: block;
  font-size: 1.0rem;
  width: 130%;
  transform: scale(0.7);
  transform-origin: left center;
  word-break: keep-all;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount__unit .tax {
    width: 100%;
    font-size: 10px;
    transform: scale(0.5);
    transform-origin: 0.25em bottom;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount__unit .tax {
    width: 120%;
    transform: scale(0.8);
    font-size: 1.0rem;
  }
}

.p-special-recommend-car-tertiary-amount__unit .yen {
  display: block;
  font-size: 1.0rem;
}

@media all and (max-width: 359px) {
  .p-special-recommend-car-tertiary-amount__unit .yen {
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: left bottom;
  }
}

@media all and (min-width: 768px) {
  .p-special-recommend-car-tertiary-amount__unit .yen {
    font-size: 1.1rem;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-special-recommend-car-tertiary-amount {
    margin-top: -0.75em;
  }
  *::-ms-backdrop, .p-special-recommend-car-tertiary-amount__amount {
    line-height: 1.25em;
  }
}

.p-special-note-box {
  max-width: 940px;
  margin: 20px auto 0;
}

@media all and (min-width: 768px) {
  .p-special-note-box {
    padding: 0 40px;
  }
}

.p-special-note-box__inner {
  border: 2px solid #fff;
  padding: 16px 16px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-special-note-box__inner {
    padding: 20px 20px;
    margin: 40px auto 0;
  }
}

.p-special-note-box__note {
  position: relative;
  padding-left: 1.25em;
  color: #8A939D;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .p-special-note-box__note {
    font-size: 1.4rem;
  }
}

.p-special-note-box__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-special-section-white {
  background-color: #fff;
}

.p-special-section-white__inner {
  padding: 40px 32px;
}

@media all and (min-width: 768px) {
  .p-special-section-white__inner {
    padding: 80px 0;
  }
}

.c-special-car-button-special {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .c-special-car-button-special {
    margin-top: 80px;
  }
}

.p-special-middle-button-area {
  margin: 40px 0 40px;
}

@media all and (min-width: 768px) {
  .p-special-middle-button-area {
    margin: 105px 0 105px;
  }
}

/* cardetails
---------------------------------------------------------- */
.p-car-details-section--beige {
  background-color: #FEF7EC;
}

.p-car-details-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-car-details-section__inner {
    padding: 80px 40px;
    max-width: 1120px;
  }
}

.p-car-details-flow-use-title {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-car-details-flow-use-title {
    margin-bottom: 40px;
  }
}

.p-car-details-flow-use-text {
  margin-bottom: 35px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
}

@media all and (min-width: 768px) {
  .p-car-details-flow-use-text {
    margin-bottom: 75px;
    font-size: 1.6rem;
  }
}

.p-car-details-flow-use-text em {
  font-weight: bold;
  font-style: normal;
}

.p-flow-use-step {
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .p-flow-use-step {
    margin-bottom: 80px;
  }
}

.p-maintenance-pack {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-maintenance-pack {
    margin-bottom: 80px;
  }
}

.p-car-details-heading {
  margin-bottom: 40px;
  color: #0045AD;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-car-details-heading {
    margin-bottom: 80px;
  }
}

.p-car-details-heading__name {
  font-size: 1.2rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-car-details-heading__name {
    font-size: 1.5rem;
  }
}

.p-car-details-heading__title {
  font-size: 2.8rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-car-details-heading__title {
    font-size: 3.5rem;
  }
}

.p-car-details-heading__title .inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

@media all and (min-width: 768px) {
  .p-car-details-heading__title .inner {
    padding: 0 120px;
  }
  .p-car-details-heading__title .inner::before, .p-car-details-heading__title .inner::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 8px;
  }
  .p-car-details-heading__title .inner::before {
    top: 8px;
    left: 0;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .p-car-details-heading__title .inner::after {
    right: 0;
    bottom: 8px;
    background: url("../image/common/ico/ico_heading_line_blue_red_01.svg") top left no-repeat;
    background-size: contain;
  }
}

.p-choose-reason-list {
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .p-choose-reason-list {
    margin-bottom: 80px;
  }
}

.p-car-details-section-main__inner {
  margin: 0 auto;
  padding: 20px 16px 80px;
}

@media all and (min-width: 768px) {
  .p-car-details-section-main__inner {
    padding: 40px 40px 90px;
    max-width: 1120px;
  }
}

.p-car-details-section-primary__inner {
  margin: 0 auto;
  padding: 0 16px 40px;
}

@media all and (min-width: 768px) {
  .p-car-details-section-primary__inner {
    padding: 0 40px 80px;
    max-width: 1120px;
  }
}

/* maker
---------------------------------------------------------- */
.p-popular-car-section-ranking {
  background-color: #FEF7EC;
}

.p-popular-car-section-ranking__inner {
  margin: 0 auto;
  padding: 40px 16px 40px;
  max-width: 1120px;
}

@media all and (min-width: 768px) {
  .p-popular-car-section-ranking__inner {
    padding: 80px 40px 80px;
  }
}

.p-popular-car-tab {
  margin-bottom: 67px;
}

@media all and (min-width: 768px) {
  .p-popular-car-tab {
    margin-bottom: 85px;
  }
}

.p-popular-car-tab-buttons {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-popular-car-tab-buttons {
    margin-bottom: 55px;
  }
}

.p-popular-car-tab-buttons__button {
  position: relative;
  width: 50%;
  padding: 10px 10px;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .p-popular-car-tab-buttons__button {
    padding: 15px 10px;
    font-size: 2.0rem;
  }
}

@media all and (min-width: 768px) {
  .p-popular-car-tab-buttons__button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-popular-car-tab-buttons__button.is-active {
  display: block;
  background-color: #0045AD;
  color: #fff;
}

.p-popular-car-tab-buttons__button.is-active::after {
  display: block;
}

.p-popular-car-tab-buttons__button:nth-child(1) {
  border-radius: 8px 0 0 0;
}

@media all and (min-width: 768px) {
  .p-popular-car-tab-buttons__button:nth-child(1) {
    border-radius: 12px 0 0 0;
  }
}

.p-popular-car-tab-buttons__button:nth-child(2) {
  border-radius: 0 8px 0 0;
}

@media all and (min-width: 768px) {
  .p-popular-car-tab-buttons__button:nth-child(2) {
    border-radius: 0 12px 0 0;
  }
}

.p-popular-car-tab-buttons__button::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  width: 19px;
  height: 19px;
  margin: 0 auto;
  background: url(../image/common/ico/ico_triangle_blue_under_01@2x.png) top left no-repeat;
  background-size: contain;
}

.p-popular-car-tab-contents__content {
  display: none;
}

.p-popular-car-tab-contents__content.is-active {
  display: block;
}

.p-popular-car-button-special {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-popular-car-button-special {
    margin-top: 80px;
  }
}

.p-popular-car-section-details__inner {
  margin: 0 auto;
  padding: 40px 16px 40px;
  max-width: 1120px;
}

@media all and (min-width: 768px) {
  .p-popular-car-section-details__inner {
    padding: 40px 40px 80px;
  }
}

.p-popular-car-details-text {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-popular-car-details-text {
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-popular-car-details-list {
  display: flex;
  flex-wrap: wrap;
  margin: -24px -8px 40px;
}

@media all and (min-width: 768px) {
  .p-popular-car-details-list {
    margin: -40px -20px 80px;
  }
}

.p-popular-car-details-list__item {
  width: 50%;
  padding: 0 8px;
  margin-top: 24px;
}

@media all and (min-width: 768px) {
  .p-popular-car-details-list__item {
    width: 25%;
    margin-top: 40px;
    padding: 0 20px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-popular-car-details-list__item {
    width: 33.33%;
  }
  .p-popular-car-details-list__item:nth-child(3n-2) {
    width: 33.34%;
  }
}

@media all and (min-width: 992px) {
  .p-popular-car-details-list__item {
    width: 25%;
  }
}

.p-popular-car-details-button-special {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-popular-car-details-button-special {
    margin-top: 80px;
  }
}

/* form
---------------------------------------------------------- */
/* form heading
---------------------------------------------------------- */
.p-heading-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  padding: 0 0 0 12px;
  line-height: 1.4;
}

.p-heading-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #F3F4F5;
  border-radius: 2px;
}

.p-heading-form__title {
  margin-right: 8px;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-heading-form__title-timezone {
  padding-bottom: 10px;
}

.p-heading-form__required {
  display: block;
  padding: 2px 4px;
  margin-right: 8px;
  background-color: #FF6670;
  color: #fff;
  /* 20241210 */
  /* font-size: 1.1rem; */
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 4px;
}

.p-heading-form__note {
  /* 20241210 */
  /* color: #8A939D; */
  color: #555;
  font-size: 1.2rem;
}

.p-heading-form__ok {
  display: none;
  position: relative;
  margin-left: 6px;
  padding-left: 20px;
  color: #00B6FC;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.0;
}

.p-heading-form__ok::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url("../image/common/ico/ico_check_ok_01@2x.png") top left no-repeat;
  background-size: contain;
}

.p-heading-form__link {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-heading-form__link {
    font-size: 1.2rem;
  }
}

.p-heading-form__link a {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .p-heading-form__link a:hover {
    text-decoration: none;
  }
}

.c-form-note + .p-heading-form {
  margin-top: 15px;
}

.p-form-section-items__item.is-ok .p-heading-form__ok
,.p-form-section-confirm__item.is-ok .p-heading-form__ok {
  display: block;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-heading-form__title {
    margin-top: 0.25em;
  }
  /*
  *::-ms-backdrop, .p-heading-form__required {
    padding: 4px 4px 0;
  }
  */
  *::-ms-backdrop, .p-heading-form__ok {
    padding-top: 0.35em;
  }
  *::-ms-backdrop, .p-heading-form__ok::before {
    margin-top: -6px;
  }
  *::-ms-backdrop, .p-heading-form__note {
    margin-top: 0.25em;
  }
}

/* form section
---------------------------------------------------------- */
/* 見積もり */
.p-estimate-section-main {
  padding: 20px 16px 40px;
  max-width: 1080px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-estimate-section-main {
    padding: 40px 20px 80px;
  }
}

.p-estimate-section-content {
  position: relative;
}

@media all and (min-width: 768px) {
  .p-estimate-section-content {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.p-estimate-section-content__inner {
  padding: 30px 16px 20px;
}

@media all and (min-width: 768px) {
  .p-estimate-section-content__inner {
    padding: 60px 0 40px;
  }
}

.p-estimate-section-content.p-estimate-section-content--with-navi-set .p-estimate-section-content__inner {
  padding-bottom: 110px;
}

.p-estimate-section-result {
  background-color: #FEF7EC;
}

.p-estimate-section-result__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-estimate-section-result__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-estimate-section-car {
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-estimate-section-car {
    padding-bottom: 80px;
  }
}

.p-estimate-section-car:last-child {
  padding-bottom: 0;
}

.p-estimate-index-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-estimate-index-section__inner {
    max-width: 1120px;
    padding: 40px 40px 80px;
  }
}

/* 見積もり　NG */
.p-estimate-ng-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-estimate-ng-section__inner {
    max-width: 940px;
    padding: 80px 40px 80px;
    text-align: center;
  }
  .p-estimate-ng-section__inner .c-form-note {
    display: inline-block;
  }
}

.p-estimate-ng-heading {
  margin-bottom: 35px;
  color: #00B6FC;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-estimate-ng-heading {
    font-size: 2.4rem;
  }
}

.p-estimate-ng-description {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-estimate-ng-description {
    margin-bottom: 40px;
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-estimate-ng-description a {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .p-estimate-ng-description a:hover {
    text-decoration: none;
  }
}

@media all and (min-width: 768px) {
  .p-estimate-ng-description a.tel {
    pointer-events: none;
  }
}

/* 見積もりチェックボックス メーカー */
.p-check-maker--toyota .c-form-input-check__label,
.p-check-maker--nissan .c-form-input-check__label,
.p-check-maker--honda .c-form-input-check__label,
.p-check-maker--mitsubishi .c-form-input-check__label,
.p-check-maker--mazda .c-form-input-check__label,
.p-check-maker--suzuki .c-form-input-check__label,
.p-check-maker--subaru .c-form-input-check__label,
.p-check-maker--daihatsu .c-form-input-check__label,
.p-check-maker--asf .c-form-input-check__label,
.p-check-maker--byd .c-form-input-check__label {
  position: relative;
  /* 20241210 */
  /* padding-left: 82px; */
  padding-left: 77px;
/* 202303 三菱対応 */
/* padding-left: 89px; */
}

@media all and (max-width: 359px) {
  .p-check-maker--toyota .c-form-input-check__label,
  .p-check-maker--nissan .c-form-input-check__label,
  .p-check-maker--honda .c-form-input-check__label,
  .p-check-maker--mitsubishi .c-form-input-check__label,
  .p-check-maker--mazda .c-form-input-check__label,
  .p-check-maker--suzuki .c-form-input-check__label,
  .p-check-maker--subaru .c-form-input-check__label,
  .p-check-maker--daihatsu .c-form-input-check__label,
  .p-check-maker--asf .c-form-input-check__label,
  .p-check-maker--byd .c-form-input-check__label {
    padding-left: 80px;
  }
}

.p-check-maker--toyota .c-form-input-check__label::after,
.p-check-maker--nissan .c-form-input-check__label::after,
.p-check-maker--honda .c-form-input-check__label::after,
.p-check-maker--mitsubishi .c-form-input-check__label::after,
.p-check-maker--mazda .c-form-input-check__label::after,
.p-check-maker--suzuki .c-form-input-check__label::after,
.p-check-maker--subaru .c-form-input-check__label::after,
.p-check-maker--daihatsu .c-form-input-check__label::after,
.p-check-maker--asf .c-form-input-check__label::after,
.p-check-maker--byd .c-form-input-check__label::after {
  content: "";
  position: absolute;
  top: 50%;
  /* 20241210 */
  /* left: 44px; */
  left: 34px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background-color: #fff;
  z-index: 2;
  border-radius: 3px;
}

@media all and (max-width: 359px) {
  .p-check-maker--toyota .c-form-input-check__label::after,
  .p-check-maker--nissan .c-form-input-check__label::after,
  .p-check-maker--honda .c-form-input-check__label::after,
  .p-check-maker--mitsubishi .c-form-input-check__label::after,
  .p-check-maker--mazda .c-form-input-check__label::after,
  .p-check-maker--suzuki .c-form-input-check__label::after,
  .p-check-maker--subaru .c-form-input-check__label::after,
  .p-check-maker--daihatsu .c-form-input-check__label::after,
  .p-check-maker--asf .c-form-input-check__label::after,
  .p-check-maker--byd .c-form-input-check__label::after {
    left: 39px;
  }
}

@media all and (min-width: 768px) {
  .p-check-maker--toyota .c-form-input-check__label::after,
  .p-check-maker--nissan .c-form-input-check__label::after,
  .p-check-maker--honda .c-form-input-check__label::after,
  .p-check-maker--mitsubishi .c-form-input-check__label::after,
  .p-check-maker--mazda .c-form-input-check__label::after,
  .p-check-maker--suzuki .c-form-input-check__label::after,
  .p-check-maker--subaru .c-form-input-check__label::after,
  .p-check-maker--daihatsu .c-form-input-check__label::after,
  .p-check-maker--asf .c-form-input-check__label::after,
  .p-check-maker--byd .c-form-input-check__label::after {
    border-radius: 4px;
    width: 38px;
    height: 38px;
  }
}

.p-check-maker--toyota .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_toyota@2x.png");
}

.p-check-maker--nissan .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_nissan@2x.png");
}

.p-check-maker--honda .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_honda@2x.png");
}

.p-check-maker--mitsubishi .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_mitsubishi@2x.png");
}

.p-check-maker--mazda .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_mazda@2x.png");
}

.p-check-maker--suzuki .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_suzuki@2x.png");
}

.p-check-maker--subaru .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_subaru@2x.png");
}

.p-check-maker--daihatsu .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_daihatsu@2x.png");
}

.p-check-maker--asf .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_asf@2x.png");
}

.p-check-maker--byd .c-form-input-check__label::after {
  background-image: url("../image/common/logo/logo_byd@2x.png");
}

.p-check-maker--toyota .c-form-input-check__label::after,
.p-check-maker--nissan .c-form-input-check__label::after,
.p-check-maker--honda .c-form-input-check__label::after,
.p-check-maker--mitsubishi .c-form-input-check__label::after,
.p-check-maker--mazda .c-form-input-check__label::after,
.p-check-maker--suzuki .c-form-input-check__label::after,
.p-check-maker--subaru .c-form-input-check__label::after,
.p-check-maker--daihatsu .c-form-input-check__label::after,
.p-check-maker--asf .c-form-input-check__label::after,
.p-check-maker--byd .c-form-input-check__label::after {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
}

/* お申し込み */
.p-form-section-reading {
 /* 20241210 */
 /* padding: 20px 16px 0; */
  padding: 20px 12px 0;
}

@media all and (min-width: 768px) {
  .p-form-section-reading {
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 40px 0;
  }
}

.p-form-section-reading.p-form-section-reading--step1 {
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-form-section-reading.p-form-section-reading--step1 {
    padding-bottom: 80px;
  }
}

.p-form-section-reading.p-form-section-reading--step2 {
  padding-bottom: 0;
}

@media all and (min-width: 768px) {
  .p-form-section-reading.p-form-section-reading--step3 {
    padding-bottom: 0;
  }
}

.p-form-section-reading.p-form-section-reading--step4 {
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-form-section-reading.p-form-section-reading--step4 {
    padding-bottom: 80px;
  }
}

.p-form-section-reading.p-form-section-reading--step4 .c-form-step-navi {
  margin-bottom: 0;
}

.p-form-section-items {
  position: relative;
}

@media all and (min-width: 768px) {
  .p-form-section-items {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.p-form-section-items__inner {
  padding: 40px 16px 240px;
}

@media all and (min-width: 768px) {
  .p-form-section-items__inner {
    padding: 40px 0 80px;
  }
}

.p-form-section-items__item {
  margin-bottom: 32px;
}

@media all and (min-width: 768px) {
  .p-form-section-items__item {
    margin-bottom: 40px;
  }
}

.p-form-section-items__item:last-child {
  margin-bottom: 0;
}

.p-form-section-items--with-note .p-form-section-items__inner {
  padding-top: 20px;
}

.p-form-section-items--last .p-form-section-items__inner {
  padding-bottom: 120px;
}

.p-form-section-items--narrow .p-form-section-items__inner {
  padding: 40px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-form-section-items--narrow .p-form-section-items__inner {
    padding: 40px 0 40px;
  }
}

.p-form-section-nextstep__inner {
  padding: 0 16px 120px;
}

@media all and (min-width: 768px) {
  .p-form-section-nextstep__inner {
    padding: 0 40px 160px;
  }
}

.p-form-section-nextstep.p-form-section-nextstep--step3 .p-form-section-nextstep__inner {
  padding: 0 16px 30px;
}

@media all and (min-width: 768px) {
  .p-form-section-nextstep.p-form-section-nextstep--step3 .p-form-section-nextstep__inner {
    padding: 0 40px 80px;
  }
}

.p-form-section-nextstep--narrow .p-form-section-nextstep__inner {
  padding: 0 16px 40px;
}

@media all and (min-width: 768px) {
  .p-form-section-nextstep--narrow .p-form-section-nextstep__inner {
    padding: 0 40px 40px;
  }
}

@media all and (min-width: 768px) {
  .p-form-section-confirm {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.p-form-section-confirm__inner {
  padding: 40px 16px 130px;
}

@media all and (min-width: 768px) {
  .p-form-section-confirm__inner {
    padding: 40px 0 50px;
  }
}

.p-form-section-confirm__item {
  margin-bottom: 32px;
}

@media all and (min-width: 768px) {
  .p-form-section-confirm__item {
    margin-bottom: 40px;
  }
}

.p-form-section-confirm__item:last-child {
  margin-bottom: 0;
}

.p-form-section-confirm--narrow .p-form-section-confirm__inner {
  padding: 40px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-form-section-confirm--narrow .p-form-section-confirm__inner {
    padding: 40px 0 40px;
  }
}

.p-form-section-finish {
  padding: 0 16px 65px;
}

@media all and (min-width: 768px) {
  .p-form-section-finish {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 40px 80px;
    text-align: center;
  }
}

/* comb */
.c-form-note + .p-form-section-items__item {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-form-section-items__item + .c-button-scroll {
    margin-top: 200px;
  }
}

.c-form-choice-list + .c-form-note,
.c-form-set + .c-form-note {
  margin-top: 1.0em;
}

.c-form-choice-list + .c-form-textarea {
  margin-top: 20px;
}

/* お申込み後の注意事項 */
.p-form-section-note__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-form-section-note__inner {
    max-width: 940px;
    padding: 80px 40px 80px;
  }
}

/* form parts
---------------------------------------------------------- */
/* 見積もり */
.p-estimate-car-heading {
  background-color: #0045AD;
  margin-bottom: 30px;
  padding: 8px 16px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  border-radius: 4px;
}

.p-estimate-result-area {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-estimate-result-area {
    margin-bottom: 80px;
  }
}

@media all and (min-width: 768px) {
  .p-estimate-result-area__inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}

.p-estimate-result-area__info  {
  position: relative;
}

@media all and (min-width: 768px) {
  .p-estimate-result-area__info {
    width: 50%;
    padding-right: 20px;
  }
}

.p-estimate-result-area__button {
  position: relative;
}

@media all and (min-width: 768px) {
  .p-estimate-result-area__button {
    width: 50%;
    padding-left: 20px;
  }
}

.p-estimate-car-list {
  margin: 0 -16px 0;
  padding-left: 16px;
}

.p-estimate-car-list::after {
  display: block;
  clear: both;
  content: "";
}

@media all and (min-width: 768px) {
  .p-estimate-car-list {
    margin: 0 -20px 0;
    padding-left: 0;
  }
}

.p-estimate-car-list__item {
  float: left;
  margin-right: 8px;
}

@media all and (min-width: 768px) {
  .p-estimate-car-list__item {
    margin: 0 20px;
    padding: 4px 4px 4px 0;
  }
}

.p-estimate-car-list .slick-list {
  padding-right: 16px;
}

@media all and (min-width: 768px) {
  .p-estimate-car-list .slick-list {
    padding-right: 0;
  }
}

.p-estimate-car-list .slick-dots {
  bottom: -32px;
}

.p-estimate-car-list .slick-dots li {
  width: 12px;
  height: 12px;
}

.p-estimate-car-list .slick-dots li::before {
  display: none;
}

.p-estimate-car-list .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.p-estimate-car-list .slick-dots li button::before {
  display: none;
}

.p-estimate-car-list .slick-dots li.slick-active button {
  background: #0045AD;
}

.p-estimate-car-list .slick-arrow {
  top: 165px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #16283C;
  opacity: 1.0;
  z-index: 2;
}

.p-estimate-car-list .slick-arrow.slick-disabled {
  background-color: #c4c9ce;
  opacity: 1.0;
  cursor: default;
}

.p-estimate-car-list .slick-arrow.slick-disabled:hover {
  background-color: #c4c9ce;
  opacity: 1.0;
}

.p-estimate-car-list .slick-arrow:hover {
  opacity: 0.75;
  background-color: #16283C;
}

.p-estimate-car-list .slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 10px;
  margin: auto;
  background: url(../image/common/ico/ico_triangle_white_under_01@2x.png) top left no-repeat;
  background-size: contain;
  z-index: -1;
}

.p-estimate-car-list .slick-prev {
  left: -8px;
}

.p-estimate-car-list .slick-prev::before {
  transform: rotate(90deg);
}

.p-estimate-car-list .slick-next {
  right: -8px;
}

.p-estimate-car-list .slick-next::before {
  transform: rotate(-90deg);
}

.p-estimate-index-history-list {
  margin: 0 -16px 0;
  padding-left: 16px;
}

.p-estimate-index-history-list::after {
  display: block;
  clear: both;
  content: "";
}

@media all and (min-width: 768px) {
  .p-estimate-index-history-list {
    margin: 0 -20px 0;
    padding-left: 0;
  }
}

.p-estimate-index-history-list__item {
  float: left;
  margin-right: 8px;
  padding-top: 20px
}

@media all and (min-width: 768px) {
  .p-estimate-index-history-list__item {
    margin: 0 20px;
    padding-bottom: 8px;
  }
}

.p-estimate-index-history-list .slick-list {
  padding-right: 16px;
}

@media all and (min-width: 768px) {
  .p-estimate-index-history-list .slick-list {
    padding-right: 0;
  }
}

.p-estimate-index-history-list .slick-dots {
  bottom: -32px;
}

.p-estimate-index-history-list .slick-dots li {
  width: 12px;
  height: 12px;
}

.p-estimate-index-history-list .slick-dots li::before {
  display: none;
}

.p-estimate-index-history-list .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 2px solid #0045AD;
  border-radius: 50%;
}

.p-estimate-index-history-list .slick-dots li button::before {
  display: none;
}

.p-estimate-index-history-list .slick-dots li.slick-active button {
  background: #0045AD;
}

.p-estimate-index-history-list .slick-arrow {
  top: 165px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #16283C;
  opacity: 1.0;
  z-index: 2;
}

.p-estimate-index-history-list .slick-arrow.slick-disabled {
  background-color: #c4c9ce;
  opacity: 1.0;
  cursor: default;
}

.p-estimate-index-history-list .slick-arrow.slick-disabled:hover {
  background-color: #c4c9ce;
  opacity: 1.0;
}

.p-estimate-index-history-list .slick-arrow:hover {
  opacity: 0.75;
  background-color: #16283C;
}

.p-estimate-index-history-list .slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 10px;
  margin: auto;
  background: url(../image/common/ico/ico_triangle_white_under_01@2x.png) top left no-repeat;
  background-size: contain;
  z-index: -1;
}

.p-estimate-index-history-list .slick-prev {
  left: -8px;
}

.p-estimate-index-history-list .slick-prev::before {
  transform: rotate(90deg);
}

.p-estimate-index-history-list .slick-next {
  right: -8px;
}

.p-estimate-index-history-list .slick-next::before {
  transform: rotate(-90deg);
}

.p-estimate-index-heading {
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .p-estimate-index-heading {
    margin-bottom: 40px;
  }
}

.p-pager-estimate-index {
  margin: 40px 0;
}

@media all and (min-width: 768px) {
  .p-pager-estimate-index {
    margin: 80px 0;
  }
}

.p-form-flow-content {
  min-height: calc(100vh - 240px);
}

@media all and (min-width: 768px) {
  .p-form-flow-content__button {
    margin-top: 80px;
  }
}


.p-form-flow-content.p-form-flow-content--last {
  min-height: auto;
}


/* お申し込み */
.p-form-box-reading {
  margin-bottom: 20px;
  padding: 16px 20px;
  background-color: #F3F4F5;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-form-box-reading {
    margin-bottom: 50px;
    padding: 30px 40px 25px;
    font-size: 1.6rem;
  }
}

.p-form-box-reading__text {
  margin-bottom: 1.0em;
}

.p-form-box-reading__text em {
  font-style: normal;
  font-weight: bold;
}

.p-form-box-reading__link a {
  display: inline-block;
  text-decoration: underline;
}

.p-form-box-reading__link a:hover {
  text-decoration: none;
}

.p-form-preparation {
  text-align: center;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .p-form-preparation {
    margin-bottom: 50px;
    line-height: 1.65;
  }
}

.p-form-preparation__text {
 /* 20241210 */
 /* margin-bottom: 0.5em;  */
  margin-bottom: 1.5em;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-form-preparation__text {
    margin-bottom: 0.75em;
    font-size: 1.6rem;
  }
}

.p-form-preparation__text em {
  font-style: normal;
  font-weight: bold;
}

.p-form-preparation__image {
  width: 135px;
  margin: 0.75em auto 20px;
}

@media all and (min-width: 768px) {
  .p-form-preparation__image {
    margin: 20px auto 20px;
  }
}

.p-form-preparation__image2 {
  margin: 20px auto;
  color: #16283c;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.p-form-preparation__image2 img {
  width: 30px;
}

.p-form-preparation__image2 span {
  font-size: 20px;
  color: #ff6670;
}

.p-form-section-confirm .p-form-preparation__image2 {
  margin: 40px auto 0;
}

.p-form-preparation__image3 {
  margin: 20px auto;
  width: 200px;
}

.p-form-preparation__image3 .pc {
  display: none;
}

@media all and (min-width: 768px) {
	.p-form-preparation__image2 {
	  margin: 30px auto;
      color: #16283c;
      font-size: 2.2rem;
      line-height: 6.6rem;
	}

	.p-form-preparation__image2 img {
	  width: 50px;
	}

	.p-form-preparation__image2 span {
	  font-size: 3.3rem;
	  color: #ff6670;
	}
	
	.p-form-preparation__image3 {
	  margin: 20px auto;
	  width: 400px;
	  height: auto;
	}
	
	.p-form-preparation__image3 .pc {
	  display: block;
	}
	
	.p-form-preparation__image3 .sp {
		display: none;
	}
}

.p-form-preparation__yahoo-login {
  display: inline-block;
  vertical-align: middle;
  width: 215px;
  margin: 0 auto 0;
}

@media all and (min-width: 768px) {
  .p-form-preparation__yahoo-login {
    margin: 1.5em auto 0;
  }
  .p-form-preparation__yahoo-login:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-form-finish-title {
  margin-bottom: 1.5em;
  font-weight: bold;
  /* 20241210 */
  /* font-size: 2.4rem; */
  font-size: 2.2rem;
  text-align: center;
}

.p-form-finish-text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-form-finish-text {
    font-size: 1.6rem;
    /*text-align: center;*/
  }
}

.p-form-finish-text + .p-form-finish-text {
  margin-top: 1.0em;
}

@media all and (min-width: 768px) {
  .p-form-finish-text + .p-form-finish-text {
    margin-top: 1.5em;
  }
}

.p-form-finish-note {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0.25em;
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-form-finish-note {
    margin-top: 0.75em;
    margin-bottom: 80px;
    text-align: center;
  }
}

/* お申込み後の注意事項 */
.p-form-application-number {
  margin-bottom: 40px;
  padding: 15px 15px;
  border: 2px solid #FF6670;
  color: #FF6670;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-form-application-number {
    max-width: 620px;
    margin: 0 auto 80px;
  }
}

.p-flow-contract-step {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-flow-contract-step {
    margin-bottom: 40px;
  }
}

/* 即納車情報 */
.p-narrow-down-quickdelivery .c-narrow-down-body {
  padding: 20px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-narrow-down-quickdelivery .c-narrow-down-body {
    padding: 80px 40px 80px;
  }
}

.p-concierge-section-reading {
  padding: 20px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-concierge-section-reading {
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 40px 40px;
  }
}

/* 見積もり結果 審査お申し込み0ご納車までの流れを確認 */
.p-estimate-flow-section {
  background-color: #FEF7EC;
  min-height: 100vh;
  height: 100%;
}

/* 資料請求 完了画面の資料請求番号の表示用 */
.p-form-application-number-docreq {
/*  margin-bottom: 40px;*/
  padding: 15px 15px;
  border: 2px solid #FF6670;
  color: #FF6670;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-form-application-number-docreq {
    max-width: 620px;
    margin: 0 auto 80px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-form-application-number-docreq {
    padding: 18px 15px 12px;
  }
}
/* news
---------------------------------------------------------- */
.p-news-top-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-news-top-section__inner {
    padding: 60px 40px 80px;
    max-width: 940px;
  }
}

.p-news-list {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-news-list {
    margin-bottom: 80px;
  }
}

.p-news-list__item {
  position: relative;
  padding: 0 8px 10px 8px;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .p-news-list__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 16px 20px 16px;
  }
}

.p-news-list__item:last-child {
  margin-bottom: 0;
}

.p-news-list__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.p-news-list__date {
  margin-bottom: 0.25em;
  color: #00B6FC;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .p-news-list__date {
    margin: 0 24px 0 0;
    font-size: 2.0rem;
    line-height: 1.2;
  }
}

.p-news-list__link {
  display: inline-block;
  color: #0045AD;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .p-news-list__link {
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  .p-news-list__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-news-details-section__inner {
  padding: 20px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-news-details-section__inner {
    padding: 40px 40px 80px;
    max-width: 940px;
  }
}

.p-news-article__heading {
  position: relative;
  padding-bottom: 20px;
}

.p-news-article__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.p-news-article__date {
  display: block;
  color: #0045AD;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.05em;
}

@media all and (min-width: 768px) {
  .p-news-article__date {
    margin-bottom: 0.5em;
    font-size: 2.0rem;
  }
}

.p-news-article__title {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .p-news-article__title {
    font-size: 3.2rem;
  }
}

.p-news-article__content {
  padding: 25px 0 40px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-news-article__content {
    padding: 40px 0 80px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-news-article__content p + p {
  margin-top: 1.5em;
}

@media all and (min-width: 768px) {
  .p-news-article__content p + p {
    margin-top: 2.0em;
  }
}

.p-link-arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 17px;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-link-arrow:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/* faq
---------------------------------------------------------- */
.p-faq-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-faq-section__inner {
    padding: 80px 40px 80px;
    max-width: 1120px;
  }
}

.p-faq-section--beige {
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .p-faq-section--narrow .p-faq-section__inner {
    max-width: 940px;
  }
}

.p-faq-contact-section__inner {
  margin: 0 auto;
  padding: 24px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-faq-contact-section__inner {
    padding: 75px 40px 80px;
    max-width: 1120px;
  }
}

.p-faq-navi {
  padding: 0;
}

.p-faq-read-text {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-faq-read-text {
    margin-bottom: 80px;
    text-align: center;
  }
}

.p-faq-set__heading {
  margin-bottom: 30px;
}

@media all and (min-width: 768px) {
  .p-faq-set__heading {
    margin-bottom: 40px;
  }
}

.p-faq-set__item {
  margin-bottom: 48px;
}

@media all and (min-width: 768px) {
  .p-faq-set__item {
    margin-bottom: 80px;
  }
}

.p-faq-set__item:last-child {
  margin-bottom: 0;
}

.p-faq-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-faq-list__item {
    margin-bottom: 40px;
  }
}

.p-faq-list__item:last-child {
  margin-bottom: 0;
}

.p-faq-list__heading {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .p-faq-list__heading {
    margin-bottom: 24px;
  }
}

.p-faq-list__heading .p-faq-list__icon {
  color: #FF6670;
  font-size: 2.8rem;
}

@media all and (min-width: 768px) {
  .p-faq-list__heading .p-faq-list__icon {
    font-size: 4.0rem;
  }
}

.p-faq-list__icon {
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

.p-faq-list__content {
  display: flex;
  align-items: flex-start;
}

.p-faq-list__content .p-faq-list__icon {
  color: #8A939D;
  font-size: 2.4rem;
}

@media all and (min-width: 768px) {
  .p-faq-list__content .p-faq-list__icon {
    font-size: 4.0rem;
  }
}

.p-faq-list__question {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 14px;
  margin-left: 8px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  min-height: 40px;
}

@media all and (min-width: 768px) {
  .p-faq-list__question {
    margin-left: 16px;
    padding-left: 24px;
    font-size: 2.4rem;
    min-height: 56px;
  }
}

.p-faq-list__question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #C4C9CE;
  border-radius: 2px;
}

@media all and (min-width: 768px) {
  .p-faq-list__question::before {
    width: 6px;
    border-radius: 4px;
  }
}

.p-faq-list__answer {
  background-color: #fff;
  margin-left: 8px;
  padding: 12px 16px;
  font-size: 1.2rem;
  border-radius: 8px;
  flex: 1 1;
}

@media all and (min-width: 768px) {
  .p-faq-list__answer {
    margin-left: 12px;
    padding: 20px 24px;
    font-size: 1.6rem;
    border-radius: 12px;
  }
}

.p-faq-list__answer a {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .p-faq-list__answer a:hover {
    text-decoration: none;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-faq-list__question::after {
    content: '';
    min-height: inherit;
    font-size: 0;
  }
}

.p-faq-contact-set {
  margin-bottom: 50px;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}

.p-faq-contact-set__heading {
  margin-bottom: 16px;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__heading {
    margin: 0 40px 0 0;
    flex: 1 1;
  }
}

.p-faq-contact-set__title {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__title {
    margin-bottom: 0.75em;
    text-align: left;
  }
}

.p-faq-contact-set__title em {
  color: #FF6670;
  font-style: normal;
}

.p-faq-contact-set__read {
  font-size: 1.2rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__read {
    font-size: 1.6rem;
    line-height: 1.75;
    text-align: left;
  }
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__tel {
    flex: 1 1;
    max-width: 500px;
  }
}

.p-faq-contact-set__tel img {
  width: 100%;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__tel .sp {
    display: none;
  }
}

.p-faq-contact-set__tel .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-faq-contact-set__tel .pc {
    display: block;
  }
}

/* voice
---------------------------------------------------------- */
.p-voice-section__inner {
  margin: 0 auto;
  padding: 40px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-voice-section__inner {
    max-width: 1120px;
    padding: 40px 40px 80px;
  }
}

.p-voice-read-text {
  margin-bottom: 40px;
  font-size: 1.4rem;
  line-height: 1.57;
}

@media all and (min-width: 768px) {
  .p-voice-read-text {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.75;
  }
}

.p-voice-list {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-voice-list {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px 80px;
  }
}

.p-voice-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-voice-list__item {
    width: 33.3%;
    padding: 0 20px;
    margin: 40px 0 0;
  }
  .p-voice-list__item:nth-child(3n-2) {
    width: 33.4%;
  }
}

.p-voice-list__item:last-child {
  margin-bottom: 0;
}

.p-voice-card {
  position: relative;
  display: block;
  height: 100%;
  color: #16283C;
}

@media all and (min-width: 768px) {
  .p-voice-card:hover .p-voice-card__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-voice-card:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-voice-card::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-voice-card::after {
    border-radius: 12px;
  }
}

.p-voice-card__inner {
  display: flex;
  position: relative;
  background-color: #FEF7EC;
  padding: 12px 35px 8px 12px;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-voice-card__inner {
    display: block;
    height: 100%;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-voice-card__inner {
    padding: 16px 16px 16px;
  }
}

@media all and (min-width: 992px) {
  .p-voice-card__inner {
    padding: 24px 24px 24px;
  }
}

.p-voice-card__inner::before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-voice-card__inner::before {
    width: 20px;
    height: 20px;
  }
}

.p-voice-card__heading {
  position: relative;
  width: 120px;
  margin-right: 16px;
}

@media all and (min-width: 768px) {
  .p-voice-card__heading {
    width: 100%;
    margin: 0 0 12px;
  }
}

.p-voice-card__content {
  flex: 1 1;
}

.p-voice-card__image {
  overflow: hidden;
  position: relative;
  border-radius: 4px 4px 0 0;
}

@media all and (min-width: 768px) {
  .p-voice-card__image {
    padding-bottom: 66.9%;
    border-radius: 0;
  }
  .p-voice-card__image img {
    position: absolute;
  }
}

.p-voice-card__pack {
  margin-top: 4px;
  padding: 5px 12px;
  border-radius: 0 0 4px 4px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-voice-card__pack {
    position: absolute;
    left: -32px;
    bottom: 8px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 6px 12px;
    border-radius: 4px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-voice-card__pack {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 992px) {
  .p-voice-card__pack {
    font-size: 1.4rem;
  }
}

.p-voice-card__pack.packGold {
  background-color: #D6BE32;
  color: #fff;
}

.p-voice-card__pack.packSilver {
  background-color: #A3A3A3;
  color: #fff;
}

.p-voice-card__pack.packWhite {
  background-color: #EAEAEA;
}

.p-voice-card__title {
  color: #0045AD;
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-voice-card__title {
    font-size: 1.3rem;
  }
}

@media all and (min-width: 992px) {
  .p-voice-card__title {
    font-size: 2.0rem;
  }
}

.p-voice-card__name, .p-voice-card__contract, .p-voice-card__car, .p-voice-card__term {
  font-size: 1.2rem;
  line-height: 1.3;
}

@media all and (min-width: 768px) {
  .p-voice-card__name, .p-voice-card__contract, .p-voice-card__car, .p-voice-card__term {
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-voice-card__name, .p-voice-card__contract, .p-voice-card__car, .p-voice-card__term {
    font-size: 1.0rem;
  }
}

@media all and (min-width: 992px) {
  .p-voice-card__name, .p-voice-card__contract, .p-voice-card__car, .p-voice-card__term {
    font-size: 1.4rem;
  }
}

.p-voice-card__name {
  float: left;
}

.p-voice-card__contract {
  float: left;
  margin-left: 0.25em;
}

.p-voice-card__car {
  clear: both;
}

.p-news-detail-section__inner {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-news-detail-section__inner {
    max-width: 1160px;
    padding: 0 40px;
  }
}

@media all and (min-width: 768px) {
  .p-news-detail-set__heading {
    padding: 40px 0 0;
    margin-bottom: 80px;
  }
}

.p-news-detail-set__content {
  padding: 40px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-news-detail-set__content {
    padding: 0 0 80px;
  }
}

.p-news-detail-set__prev {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-news-detail-set__prev {
    margin-top: 80px;
  }
}

.p-news-detail-set__check {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-news-detail-set__check {
    margin-top: 80px;
  }
}

.p-news-detail-set__car-estimate {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-news-detail-set__car-estimate {
    margin-top: 40px;
  }
}

.p-news-detail-main {
  position: relative;
}

@media all and (min-width: 768px) {
  .p-news-detail-main {
    padding: 40px 0 0 40.8%;
  }
}

.p-news-detail-main__title {
  position: relative;
  margin-bottom: 20px;
  color: #0045AD;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.36364;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__title {
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 3.6rem;
  }
  .p-news-detail-main__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 8px;
    background: url(../image/common/ico/ico_heading_line_red_01.svg) top left no-repeat;
    background-size: contain;
  }
}

.p-news-detail-main__inner {
  background-color: #FEF7EC;
  padding: 20px 16px 20px;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__inner {
    min-height: 352px;
    padding: 45px 40px 40px 100px;
    border-radius: 12px;
  }
}

.p-news-detail-main__visual {
  display: flex;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__visual {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 46.3%;
    maw-width: 500px;
    margin-bottom: 0;
  }
}

.p-news-detail-main__image {
  overflow: hidden;
  max-width: 164px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__image {
    max-width: 100%;
    border-radius: 12px;
    max-height: 332px;
  }
}

.p-news-detail-main__image img {
  width: 100%;
}

.p-news-detail-main__info {
  padding: 0 0 0 12px;
  flex: 1 1;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__info {
    display: flex;
    align-items: center;
    margin-top: 24px;
    padding: 0 16px 0 0;
  }
}

@media all and (min-width: 768px) {
  .p-news-detail-main__user {
    flex: 1 1;
  }
}

.p-news-detail-main__name {
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__name {
    font-size: 2.0rem;
  }
}

.p-news-detail-main__contract {
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__contract {
    padding-bottom: 0.1em;
    font-size: 1.4rem;
  }
}

.p-news-detail-main__car {
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__car {
    margin-right: 10px;
    font-size: 1.4rem;
  }
}

.p-news-detail-main__term {
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__term {
    font-size: 1.4rem;
    word-break: keep-all;
  }
}

@media all and (min-width: 768px) {
  .p-news-detail-main__name-set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 0.25em;
  }
}

@media all and (min-width: 768px) {
  .p-news-detail-main__car-set {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

.p-news-detail-main__pack {
  display: inline-block;
  vertical-align: middle;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__pack {
    display: flex;
    width: 160px;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1.6rem;
    border-radius: 8px;
  }
}

.p-news-detail-main__pack.packGold {
  background-color: #D6BE32;
  color: #fff;
}

.p-news-detail-main__pack.packSilver {
  background-color: #A3A3A3;
  color: #fff;
}

.p-news-detail-main__pack.packWhite {
  background-color: #EAEAEA;
}

.p-news-detail-main__text {
  font-size: 1.4rem;
  line-height: 1.75;
}

@media all and (min-width: 768px) {
  .p-news-detail-main__text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-news-detail-main__contract {
    padding-bottom: 0.2em;
  }
  *::-ms-backdrop, .p-news-detail-article-card__title::after {
    content: '';
    min-height: inherit;
    font-size: 0;
  }
}

.p-news-detail-article p {
  font-size: 1.4rem;
  line-height: 1.57143;
}

@media all and (min-width: 768px) {
  .p-news-detail-article p {
    font-size: 1.6rem;
  }
}

.p-news-detail-article-section {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-section {
    margin-bottom: 80px;
  }
}

.p-news-detail-article-section:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-section:nth-child(odd) .p-news-detail-article-card__title,
  .p-news-detail-article-section:nth-child(odd) .p-news-detail-article-card__content {
    float: left;
    padding-right: 40px;
  }
  .p-news-detail-article-section:nth-child(odd) .p-news-detail-article-card__image {
    float: right;
  }
  .p-news-detail-article-section:nth-child(even) .p-news-detail-article-card__title {
    float: right;
    padding-left: 120px;
  }
  .p-news-detail-article-section:nth-child(even) .p-news-detail-article-card__title::before {
    left: 40px;
  }
  .p-news-detail-article-section:nth-child(even) .p-news-detail-article-card__content {
    float: right;
    padding-left: 40px;
  }
  .p-news-detail-article-section:nth-child(even) .p-news-detail-article-card__image {
    float: left;
  }
}

.p-news-detail-article-card {
  overflow: hidden;
}

.p-news-detail-article-card__title {
  position: relative;
  min-height: 49px;
  padding-left: 65px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.36364;
  letter-spacing: 0.045em;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-card__title {
    display: flex;
    align-items: center;
    width: 53.7%;
    min-height: 62px;
    padding-left: 80px;
    font-size: 2.4rem;
  }
}

.p-news-detail-article-card__title::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 48px;
  height: 49px;
  background: url("../image/common/ico/ico_voice_comment_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-card__title::before {
    width: 64px;
    height: 62px;
  }
}

.p-news-detail-article-card__image {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-card__image {
    width: 46.3%;
    border-radius: 12px;
  }
}

.p-news-detail-article-card__content {
  font-size: 1.4rem;
  line-height: 1.57143;
}

@media all and (min-width: 768px) {
  .p-news-detail-article-card__content {
    width: 53.7%;
    font-size: 1.6rem;
  }
}

.p-news-detail-article-card__content em,
.p-news-detail-article-card__content strong {
  color: #FF6670;
  font-style: normal;
  font-weight: bold;
}

/* car-tenken
---------------------------------------------------------- */
.p-car-inspection-section__inner {
  margin: 0 auto;
  padding: 40px 16px 40px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-car-inspection-keyword-area {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-keyword-area {
    margin-bottom: 80px;
  }
}

.p-car-inspection-keyword-area__inner {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-car-inspection-keyword-area__inner {
    max-width: 860px;
  }
}

.p-car-inspection-search__heading {
  position: relative;
  padding: 17px 44px;
  background-color: #0045AD;
  color: #fff;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search__heading {
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.p-car-inspection-search__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
  border-radius: 50%;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .p-car-inspection-search__heading::after {
    width: 24px;
    height: 24px;
  }
}

.p-car-inspection-search__heading.is-open {
  border-radius: 8px 8px 0 0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search__heading.is-open {
    border-radius: 12px 12px 0 0;
  }
}

.p-car-inspection-search__heading.is-open::after {
  transform: rotate(-90deg);
}

.p-car-inspection-search__content {
  display: none;
  padding: 18px 16px 16px;
  background-color: #FEF7EC;
  border-radius: 0 0 8px 8px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search__content {
    padding: 32px 40px 32px;
    border-radius: 0 0 12px 12px;
  }
}

.p-car-inspection-search__content.is-open {
  display: block;
}

.p-car-inspection-search + .p-car-inspection-search {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search + .p-car-inspection-search {
    margin-top: 44px;
  }
}

.p-car-inspection-search-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -8px -4px 0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search-list {
    margin: -8px -4px 0;
  }
}

.p-car-inspection-search-list__item {
  margin: 8px 4px 0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search-list__item {
    margin: 8px 4px 0;
  }
}

.p-car-inspection-search-list__item .inner {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 14px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  color: #0045AD;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-search-list__item .inner {
    padding: 9px 20px;
    font-size: 1.4rem;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-search-list__item .inner:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-search-list__item.is-current .inner {
  background-color: #00B6FC;
  color: #fff;
}

.p-car-inspection-article-list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -7px 40px;
  padding: 0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-article-list {
    margin: -40px -20px 80px;
  }
}

.p-car-inspection-article-list .c-related-article-list__item {
  float: none;
  width: 50%;
  margin: 20px 0 0;
  padding: 0 7px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-article-list .c-related-article-list__item {
    width: 25%;
    margin: 40px 0 0;
    padding: 0 20px;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article {
    padding: 40px 0 0;
  }
}

.p-car-inspection-detail-article__heading {
  padding: 24px 16px 24px;
  margin-bottom: 20px;
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article__heading {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 80px;
    border-radius: 12px;
  }
}

.p-car-inspection-detail-article__content {
  position: relative;
  padding: 0 16px 40px;
  background: linear-gradient(to left, #FEF7EC, #FEF7EC) no-repeat 0px 95px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article__content {
    padding: 0 0 80px;
    background: linear-gradient(to left, #FEF7EC, #FEF7EC) no-repeat 0px 160px;
  }
}

.p-car-inspection-detail-article__date {
  display: block;
  margin-bottom: 15px;
  color: #00B6FC;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article__date {
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
}

.p-car-inspection-detail-article__title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article__title {
    font-size: 3.2rem;
  }
}

.p-car-inspection-detail-article__summary {
  padding: 16px 16px;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-article__summary {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.p-car-inspection-detail-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info {
    margin-bottom: 24px;
    justify-content: space-between;
  }
}

.p-car-inspection-detail-info-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-car-inspection-detail-info-category {
  overflow: hidden;
  margin-right: 10px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-category {
    margin-right: 14px;
  }
}

.p-car-inspection-detail-info-category__item {
  float: left;
  margin-right: 10px;
}

.p-car-inspection-detail-info-category__item .inner {
  display: inline-block;
  vertical-align: middle;
  padding: 6px 12px;
  background-color: #00B6FC;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.1;
  border-radius: 24px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-category__item .inner {
    padding: 10px 24px;
    font-size: 1.6rem;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-category__item .inner:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-detail-info-tag {
  flex: 1 1;
}

.p-car-inspection-detail-info-tag::after {
  display: block;
  clear: both;
  content: "";
}

.p-car-inspection-detail-info-tag__item {
  position: relative;
  float: left;
  display: inline-block;
  margin-right: 10px;
  padding-right: 12px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-tag__item {
    padding-right: 13px;
  }
}

.p-car-inspection-detail-info-tag__item:last-child {
  margin-right: 0;
  border-right: none;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-tag__item:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-detail-info-tag__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #fff;
  border-radius: 1px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-tag__item::after {
    width: 3px;
    border-radius: 4px;
  }
}

.p-car-inspection-detail-info-tag__item .inner {
  display: inline-block;
  vertical-align: middle;
  color: #0045AD;
  font-size: 1.2rem;
  font-weight: bold;
  word-break: keep-all;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-tag__item .inner {
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-info-sns {
  display: none;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-sns {
    display: flex;
    align-items: center;
    margin: 0 -6px;
    min-width: 168px;
  }
}

.p-car-inspection-detail-info-sns__item {
  width: 44px;
  margin: 0 6px;
}

.p-car-inspection-detail-info-sns__link {
  display: block;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-info-sns__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-detail-info-sns__link img {
  width: 100%;
  height: auto;
}

.p-car-inspection-detail-content-headline {
  background-color: #fff;
  padding: 16px 16px 24px;
  margin-bottom: 20px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline {
    padding: 40px 40px 60px;
    max-width: 860px;
    margin: 40px auto 40px;
    border-radius: 12px;
  }
}

.p-car-inspection-detail-content-headline__image {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__image {
    margin-bottom: 60px;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__contents {
    padding: 0 40px;
  }
}

.p-car-inspection-detail-content-headline__contents .title {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__contents .title {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}

.p-car-inspection-detail-content-headline__contents .title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.p-car-inspection-detail-content-headline__contents .title span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  padding-right: 20px;
  z-index: 2;
}

.p-car-inspection-detail-content-headline__contents .list,
.p-car-inspection-detail-content-headline__contents ol {
  position: relative;
  padding-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__contents .list,
  .p-car-inspection-detail-content-headline__contents ol {
    padding-bottom: 30px;
  }
}

.p-car-inspection-detail-content-headline__contents .list::after,
.p-car-inspection-detail-content-headline__contents ol::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: url(../image/common/bg/bg_dotted_gray_01.svg) top left repeat-x;
  background-size: contain;
}

.p-car-inspection-detail-content-headline__contents .list li,
.p-car-inspection-detail-content-headline__contents ol li {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__contents .list li,
  .p-car-inspection-detail-content-headline__contents ol li {
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-headline__contents .list li:last-child,
.p-car-inspection-detail-content-headline__contents ol li:last-child {
  margin-bottom: 0;
}

.p-car-inspection-detail-content-headline__contents .list li a,
.p-car-inspection-detail-content-headline__contents ol li a {
  color: #00B6FC;
  text-decoration: underline;
  font-weight: normal;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-headline__contents .list li a:hover,
  .p-car-inspection-detail-content-headline__contents ol li a:hover {
    text-decoration: none;
  }
}

.p-car-inspection-detail-content-article {
  padding: 24px 16px 24px;
  background-color: #fff;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article {
    padding: 80px 80px 60px;
    max-width: 860px;
    margin: 0 auto 80px;
    border-radius: 12px;
  }
}

.p-car-inspection-detail-content-article h2 {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article h2 {
    font-size: 3.2rem;
    line-height: 1.56;
  }
}

.p-car-inspection-detail-content-article h3 {
  position: relative;
  padding-left: 12px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-car-inspection-detail-content-article h3::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-image: linear-gradient(45deg, #FF6670 25%, transparent 25%, transparent 50%, #FF6670 50%, #FF6670 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 3px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article h3 {
    padding-left: 17px;
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}

.p-car-inspection-detail-content-article p {
  font-size: 1.4rem;
  line-height: 1.57;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article p {
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-article p b {
  font-weight: bold;
}

.p-car-inspection-detail-content-article p em {
  color: #FF6670;
  font-style: normal;
  font-weight: bold;
}

.p-car-inspection-detail-content-article p + h3,
.p-car-inspection-detail-content-article p + h4 {
  margin-top: 2.0em;
}

.p-car-inspection-detail-content-article img {
  overflow: hidden;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article img {
    border-radius: 8px;
  }
}

.p-car-inspection-detail-content-article a {
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article a:hover {
    text-decoration: none;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article .c-article-float {
    overflow: hidden;
    margin: 40px 0;
  }
}

.p-car-inspection-detail-content-article .c-article-float__image {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 4px;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article .c-article-float__image {
    float: left;
    width: 50%;
    margin: 0;
    border-radius: 8px;
  }
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article .c-article-float__content {
    overflow: hidden;
    padding-left: 40px;
  }
}

.p-car-inspection-detail-content-article table {
  width: 100%;
  margin: 20px 0;
  border: 1px solid #C4C9CE;
  word-break: break-all;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article table {
    margin: 40px 0;
  }
}

.p-car-inspection-detail-content-article table thead th {
  padding: 8px 10px;
  margin: 0 -1px;
  background-color: #8A939D;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article table thead th {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-article table tbody th,
.p-car-inspection-detail-content-article table tbody td {
  width: 25%;
  padding: 6px 8px;
  border: 1px solid #C4C9CE;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article table tbody th,
  .p-car-inspection-detail-content-article table tbody td {
    padding: 10px 10px;
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-article table tbody th {
  background-color: #F3F4F5;
  text-align: center;
  font-weight: normal;
}

.p-car-inspection-detail-content-article table tbody td {
  text-align: center;
}

.p-car-inspection-detail-content-article ul {
  margin: 1.25em 0;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ul {
    margin: 40px 0;
  }
}

.p-car-inspection-detail-content-article ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 0.75em;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ul li {
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-article ul li:last-child {
  margin-bottom: 0;
}

.p-car-inspection-detail-content-article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background-color: #0045AD;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ul li::before {
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}

.p-car-inspection-detail-content-article ol {
  margin: 1.25em 0;
  counter-reset: item;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ol {
    margin: 40px 0;
  }
}

.p-car-inspection-detail-content-article ol li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ol li {
    font-size: 1.6rem;
  }
}

.p-car-inspection-detail-content-article ol li:last-child {
  margin-bottom: 0;
}

.p-car-inspection-detail-content-article ol li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  background-color: #FEF7EC;
  border-radius: 4px;
  color: #0045AD;
  font-size: 1.6rem;
  font-family: 'Barlow', sans-serif;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article ol li::before {
    font-weight: bold;
  }
}

.p-car-inspection-detail-content-article blockquote {
  margin: 20px 0;
  padding: 12px 12px;
  border-radius: 4px;
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-content-article blockquote {
    margin: 40px 0;
    border-radius: 8px;
    padding: 14px 14px;
  }
}

.p-car-inspection-detail-content-article blockquote p {
  position: relative;
  padding: 26px 20px;
  font-size: 1.4rem;
}

.p-car-inspection-detail-content-article blockquote p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 15px;
  background: url("../image/common/ico/ico_blockquote_01.svg") top left no-repeat;
  background-size: contain;
}

.p-car-inspection-detail-content-article blockquote p::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 15px;
  background: url("../image/common/ico/ico_blockquote_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

.p-car-inspection-detail-prev {
  margin-top: 40px;
}

.p-car-inspection-detail-share {
  margin-top: 40px;
}

.p-car-inspection-detail-share__title {
  margin-bottom: 20px;
  color: #0045AD;
  font-size: 2.0rem;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
  text-align: center;
}

.p-car-inspection-detail-share-list {
  display: flex;
  justify-content: center;
  margin: 0 -8px;
}

.p-car-inspection-detail-share-list__item {
  width: 56px;
  margin: 0 8px;
}

.p-car-inspection-detail-share-list__link {
  display: block;
}

@media all and (min-width: 768px) {
  .p-car-inspection-detail-share-list__link:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-detail-share-list__link img {
  width: 100%;
  height: auto;
}

.p-car-inspection-detail-button-special {
  margin-top: 70px;
}

/* law
---------------------------------------------------------- */
.p-law-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-law-section__inner {
    padding: 80px 40px 80px;
    max-width: 940px;
  }
}

/* first-guide
---------------------------------------------------------- */
/* first-guide index はじめての方へ
---------------------------------------------------------- */
/* section */
@media all and (min-width: 768px) {
  .p-first-guide-section--index .p-first-guide-section__inner {
    max-width: 1120px;
    padding: 0 20px 104px;
  }
}

/* navigation */
.p-first-guide-navi {
  margin-top: 20px;
  padding: 40px 24px 20px;
  border: 3px solid #E6E8EA;
  border-radius: 8px;
  background: url("../image/first-guide/bg_index_01_sp.png") no-repeat bottom left;
  background-size: cover;
  overflow: hidden;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-navi {
    margin-top: 40px;
    padding: 37px 24px 15px;
    min-height: 360px;
    border-radius: 12px;
    background: url("../image/first-guide/bg_index_01_tb.png") no-repeat bottom right;
    background-size: cover;
  }
}

@media all and (min-width: 992px) {
  .p-first-guide-navi {
    margin-top: 40px;
    padding: 37px 24px 15px;
    min-height: 360px;
    border-radius: 12px;
    background: url("../image/first-guide/bg_index_01_pc.png") no-repeat bottom right;
    background-size: cover;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-navi__inner {
    max-width: 860px;
    margin: 0 auto;
  }
}

.p-first-guide-navi .p-special-heading {
  position: relative;
}

.p-first-guide-navi .p-special-heading > span {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .1em;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi .p-special-heading > span {
    font-size: 1.6rem;
    letter-spacing: .05em;
  }
}

.p-first-guide-navi .p-special-heading__title {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi .p-special-heading__title {
    font-size: 3.6rem;
    line-height: 1.4;
  }
}

.p-first-guide-navi .p-special-heading::before {
  position: absolute;
  top: -42px;
  left: 50%;
  margin-left: -168px;
  content: '';
  width: 112px;
  height: 80px;
  background: url("../image/first-guide/img_index_baloon_01_sp.png");
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi .p-special-heading::before {
    width: 224px;
    height: 77px;
    top: -38px;
    margin-left: -296px;
    background: url("../image/first-guide/img_index_baloon_01_pc.png");
    background-size: cover;
  }
}

.p-first-guide-navi__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  margin-top: 24px;
  width: 200px;
  height: 40px;
  padding-right: 13px;
  border-radius: 20px;
  background-color: #0045ad;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi__button {
    width: 208px;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

.p-first-guide-navi__button::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  right: 13px;
  top: 50%;
  margin-top: -7px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi__button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-first-guide-navi-main {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main {
    display: flex;
    margin: 40px -16px 0;
  }
}

.p-first-guide-navi-main__item {
  width: 100%;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main__item {
    width: 33.33%;
    padding: 0 16px;
  }
}

.p-first-guide-navi-main__item + .p-first-guide-navi-main__item {
  margin-top: 16px;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main__item + .p-first-guide-navi-main__item {
    margin-top: 0;
  }
}

.p-first-guide-navi-main__link {
  position: relative;
  display: block;
  height: 100%;
}

.p-first-guide-navi-main__link::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main__link::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main__link:hover .p-first-guide-navi-main__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-first-guide-navi-main__link:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-first-guide-navi-main__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 64px;
  padding-right: 22px;
  background-color: #fff;
  border: 3px solid #0045AD;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-first-guide-navi-main__inner {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-navi-main__inner {
    height: 88px;
    padding-right: 36px;
  }
}

@media all and (min-width: 992px) {
  .p-first-guide-navi-main__inner {
    height: 88px;
    padding-right: 40px;
  }
}

.p-first-guide-navi-main__inner::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-navi-main__inner::before {
    right: 16px;
  }
}

@media all and (min-width: 992px) {
  .p-first-guide-navi-main__inner::before {
    right: 20px;
  }
}

.p-first-guide-navi-main__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-first-guide-navi-main__main {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-navi-main__main {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

@media all and (min-width: 992px) {
  .p-first-guide-navi-main__main {
    font-size: 2rem;
  }
}

.p-special-heading__point {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

.p-special-heading__point span {
  font-family: Barlow;
}

.p-special-heading__point + .p-special-heading__title {
  margin-top: 6px;
  line-height: 1.29;
}

.p-first-guide-index-read {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-read {
    margin-bottom: 40px;
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: .05em;
    text-align: left;
  }
}

.p-first-guide-index-read em {
  color: #FF6670;
  font-weight: bold;
  font-style: normal;
}

.p-first-guide-index-text {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-text {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .05em;
  }
}

.p-special-heading + .p-first-guide-index-text {
  text-align: center;
}

.p-first-guide-index-text + .c-flow-use-step {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-text + .c-flow-use-step {
    margin: 80px auto 0;
    max-width: 860px;
    padding-bottom: 80px;
  }
}

.p-first-guide-index-main {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 80px 0;
  }
}

.p-first-guide-index-main__description {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-main__description {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-index-main__graph {
    width: 50%;
    padding-left: 20px;
  }
}

.p-first-guide-index-figure {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-figure {
    margin-top: 0;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-index-figure .sp {
    display: none;
  }
}

.p-first-guide-index-figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-figure .pc {
    display: block;
  }
}

.p-first-guide-index-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-figure img {
    border-radius: 12px;
  }
}

.p-first-guide-index-figure-note {
  position: relative;
  margin-top: 5px;
  padding-left: 1.5em;
  color: rgba(25, 36, 42, 0.5);
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-figure-note {
    font-size: 1.2rem;
  }
}

.p-first-guide-index-figure-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-first-guide-index-choice {
  padding: 0 0 54px;
  max-width: 1080px;
  margin: 40px auto 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice {
    margin-top: 80px;
    padding: 0 20px 84px;
  }
}

.p-first-guide-index-choice__inner {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -8px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__inner {
    margin: 0 -22px 0;
  }
}

.p-first-guide-index-choice__item {
  width: 100%;
  height: 106px;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__item {
    width: 33.33%;
    height: auto;
    padding: 0 22px;
  }
}

@media all and (max-width: 767px) {
  .p-first-guide-index-choice__item + .p-first-guide-index-choice__item {
    margin-top: 24px;
  }
}

.p-first-guide-index-choice__item:nth-child(1) div::after {
  background: url("../image/first-guide/ico_index_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__item:nth-child(1) div::after {
    background: url("../image/first-guide/ico_index_01_pc.png") no-repeat;
    background-size: contain;
  }
}

.p-first-guide-index-choice__item:nth-child(2) div::after {
  background: url("../image/first-guide/ico_index_02_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__item:nth-child(2) div::after {
    background: url("../image/first-guide/ico_index_02_pc.png") no-repeat;
    background-size: contain;
  }
}

.p-first-guide-index-choice__item:nth-child(3) div::after {
  background: url("../image/first-guide/ico_index_03_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__item:nth-child(3) div::after {
    background: url("../image/first-guide/ico_index_03_pc.png") no-repeat;
    background-size: contain;
  }
}

.p-first-guide-index-choice__link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 52px;
  color: #0045AD;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link {
    min-height: 312px;
  }
}

.p-first-guide-index-choice__link > div {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 20px 56px 0 108px;
  background-color: #FEF7EC;
  z-index: 1;
  border-radius: 8px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link > div {
    padding: 200px 24px 18px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-index-choice__link > div {
    padding-top: calc(120/768*100vw);
  }
}

.p-first-guide-index-choice__link > div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link > div::before {
    right: 12px;
    top: auto;
    bottom: 12px;
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
}

.p-first-guide-index-choice__link > div::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link > div::after {
    top: 24px;
    left: 50%;
    margin: 0 0 0 -75px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-first-guide-index-choice__link > div::after {
    width: calc(80/768*100vw);
    height: calc(80/768*100vw);
    margin-left: calc(-40/768*100vw);
  }
}

@media all and (min-width: 992px) {
  .p-first-guide-index-choice__link > div::after {
    width: 150px;
    height: 150px;
    left: 50%;
    margin-left: -75px;
  }
}

.p-first-guide-index-choice__link > div p {
  color: #16283c;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link > div p {
    font-size: 2rem;
  }
}

.p-first-guide-index-choice__link > div span {
  display: inline-block;
  margin-top: 8px;
  color: #16283c;
  font-size: 1.2rem;
  line-height: 1.33;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link > div span {
    font-size: 1.6rem;
    line-height: 1.38;
  }
}

.p-first-guide-index-choice__link::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-index-choice__link:hover > span {
    transform: translate3d(-1px, -1px, 0);
  }
  .p-first-guide-index-choice__link:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

/* first-guide about はじめての方へ
---------------------------------------------------------- */
.p-first-guide-about-description {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-description {
    font-size: 2.4rem;
    line-height: 1.4;
    letter-spacing: .05em;
  }
}

.p-first-guide-about-description span {
  color: #ff6670;
}

.p-first-guide-about-description + .p-first-guide-about-text {
  margin-top: 20px;
  letter-spacing: 0;
}

.p-first-guide-about-text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-text {
    margin: 30px auto 0;
    max-width: 960px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.p-special-heading + .p-first-guide-about-text {
  margin-top: 30px;
}

.p-first-guide-about-figure {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-figure {
    margin-top: 80px;
  }
}

.p-first-guide-about-figure + .c-text-note {
  margin-top: 10px;
}

.p-first-guide-about-structure {
  margin: 40px auto 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure {
    margin-top: 60px;
    max-width: 860px;
  }
}

.p-first-guide-about-structure__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background-color: #0045AD;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__heading {
    height: 72px;
    font-size: 2.4rem;
    border-radius: 12px;
  }
}

.close .p-first-guide-about-structure__heading {
  border-radius: 8px 8px 0 0;
}

@media all and (min-width: 768px) {
  .close .p-first-guide-about-structure__heading {
    border-radius: 12px 12px 0 0;
  }
}

.p-first-guide-about-structure__heading::before {
  display: none;
}

.p-first-guide-about-structure__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) no-repeat;
  background-size: cover;
  transform: rotate(90deg);
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__heading::after {
    right: 20px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
}

.close .p-first-guide-about-structure__heading::after {
  transform: rotate(-90deg);
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__heading:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-first-guide-about-structure__content {
  display: none;
  background-color: #fff;
  padding: 20px 16px 16px;
  border-radius: 0 0 8px 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__content {
    padding: 40px;
    border-radius: 0 0 12px 12px;
  }
}

.p-first-guide-about-structure__figure {
  margin-bottom: 25px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__figure {
    margin-bottom: 50px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__figure .sp {
    display: none;
  }
}

.p-first-guide-about-structure__figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__figure .pc {
    display: block;
  }
}

.p-first-guide-about-structure__text {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-structure__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.p-first-guide-about-structure__text em {
  font-style: normal;
  font-weight: bold;
}

.p-first-guide-about-flex {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-flex {
    display: flex;
    margin: 80px -20px 0;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-about-flex__item {
    width: 50%;
    padding: 0 20px;
  }
}

.p-first-guide-about-flex__item + .p-first-guide-about-flex__item {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-flex__item + .p-first-guide-about-flex__item {
    margin-top: 0;
  }
}

.p-first-guide-about-flex + .c-button-blue {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-flex + .c-button-blue {
    margin-top: 80px;
  }
}

.u-rl {
  -webkit-writing-mode: vertical-rl !important;
      -ms-writing-mode: tb-rl !important;
          writing-mode: vertical-rl !important;
}

.p-first-guide-about-table {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table {
    margin: 80px auto 0;
    max-width: 860px;
  }
}

.p-first-guide-about-table__title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__title {
    font-size: 2.4rem;
  }
}

.p-first-guide-about-table__table {
  margin-top: 20px;
  border-collapse: collapse;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table {
    margin-top: 30px;
  }
}

.p-first-guide-about-table__table th, .p-first-guide-about-table__table td {
  border: 1px solid #c4c9ce;
}

.p-first-guide-about-table__table thead td {
  border: none;
}

.p-first-guide-about-table__table thead th {
  width: 34.13333vw;
  height: 50px;
  background-color: #f3f4f5;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.17;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table thead th {
    width: 32.5%;
    height: 60px;
    font-size: 1.6rem;
  }
}

.p-first-guide-about-table__table tbody th {
  width: 16vw;
  padding: 0 10px;
  background-color: #f3f4f5;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.17;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table tbody th {
    width: 29%;
    padding: 0 20px;
    font-size: 1.6rem;
  }
}

.p-first-guide-about-table__table tbody th.p-first-guide-about-table__category {
  width: 8vw;
  padding: 0;
  color: #fff;
  background-color: #8a939d;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table tbody th.p-first-guide-about-table__category {
    width: auto;
  }
}

.p-first-guide-about-table__table tbody td {
  padding: 30px 7px 8px;
  height: 67px;
  font-size: 1.2rem;
  line-height: 1.17;
  text-align: center;
  vertical-align: top;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table tbody td {
    padding: 50px 5px 8px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.p-first-guide-about-table__table tbody td span {
  position: relative;
  display: inline-block;
}

.p-first-guide-about-table__table tbody td span::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-table__table tbody td span::before {
    top: -36px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
  }
}

.p-first-guide-about-table__table tbody td span.face01::before {
  background: url("../image/first-guide/ico_face_01.svg");
  background-size: cover;
}

.p-first-guide-about-table__table tbody td span.face02::before {
  background: url("../image/first-guide/ico_face_02.svg");
  background-size: cover;
}

.p-first-guide-about-table__table tbody td span.face03::before {
  background: url("../image/first-guide/ico_face_03.svg");
  background-size: cover;
}

.p-first-guide-about-table .c-text-note {
  margin-top: 10px;
}

.p-first-guide-about-choice {
  display: flex;
  flex-wrap: wrap;
  max-width: 860px;
  padding: 0 10px 20px;
  margin: 30px auto 0;
  border-radius: 8px;
  background-color: #fff;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-choice {
    margin-top: 60px;
    padding: 0 20px 40px;
  }
}

.p-first-guide-about-choice__item {
  width: 50%;
  margin-top: 20px;
  padding: 0 10px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-choice__item {
    margin-top: 40px;
    padding: 0 20px;
  }
}

.p-first-guide-about-choice__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.43;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-choice__text {
    padding-bottom: 20px;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: .05em;
  }
}

.p-first-guide-about-choice + .c-text-note {
  margin: 10px auto 0;
  max-width: 860px;
}

.p-faq-set--white {
  margin: 40px auto 0;
  max-width: 860px;
}

.p-faq-set--white + .c-button-blue {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-faq-set--white + .c-button-blue {
    margin-top: 80px;
  }
}

.p-faq-set--white .p-faq-list__question::before {
  background-color: #f3f4f5;
}

.p-faq-set--white .p-faq-list__answer {
  background-color: #f3f4f5;
}

@media all and (min-width: 768px) {
  .c-button-blue__navi {
    width: 100%;
    max-width: 680px;
  }
}

.c-button-blue__navi .c-button-blue__inner > span {
  font-size: 1.8rem;
}

@media all and (min-width: 768px) {
  .c-button-blue__navi .c-button-blue__inner > span {
    font-size: 2.4rem;
  }
}

.p-first-guide-section--beige + .c-button-blue__navi {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-section--beige + .c-button-blue__navi {
    margin-top: 80px;
  }
}

.c-button-blue__navi + .c-button-blue__navi {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .c-button-blue__navi + .c-button-blue__navi {
    margin-top: 80px;
  }
}

/* first-guide
---------------------------------------------------------- */
.p-sample-module-desc {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px 5px;
  background: greenyellow;
  margin: 30px auto;
}

.c-form-step-navi.p-first-guide-step-navi {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .c-form-step-navi.p-first-guide-step-navi {
    margin-top: 40px;
  }
}

.c-form-step-navi.p-first-guide-step-navi .c-form-step-navi__item {
  width: 33.33%;
}

/* sample section */
.p-first-guide-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-first-guide-section--first-sec .p-first-guide-section__inner {
  padding-top: 0;
}

.p-first-guide-section--beige {
  background-color: #FEF7EC;
}

/* first-guide/mycar ------------------------------------------- */
/* main heading */
.p-heading-content-first-guide-mycar {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-heading-content-first-guide-mycar {
    margin-bottom: 40px;
  }
}

/* read */
.p-first-guide-mycar-readtext {
  margin-bottom: 40px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-readtext {
    margin-bottom: 80px;
    font-size: 1.6rem;
    text-align: center;
  }
}

/* title */
.p-special-heading.p-first-guide-mycar-special-heading {
  position: relative;
}

.p-special-heading.p-first-guide-mycar-special-heading .p-special-heading__subtitle {
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-special-heading.p-first-guide-mycar-special-heading .p-special-heading__subtitle {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-heading-content-pattern01.p-first-guide-content-pattern01 {
  margin-bottom: 15px;
}

@media all and (min-width: 768px) {
  .c-heading-content-pattern01.p-first-guide-content-pattern01 {
    margin-bottom: 35px;
  }
}

/* text */
.p-first-guide-mycar-text {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-text {
    margin-bottom: 35px;
    font-size: 1.6rem;
  }
}

/* navi */
.c-anchor-navi.p-mycar-anchor-navi {
  margin-bottom: 0;
}

/* tab buttons */
.p-first-guide-mycar-tabs {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tabs {
    max-width: 860px;
    margin-top: 40px;
  }
}

.p-first-guide-mycar-tabs__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 -3px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tabs__inner {
    margin: 0 -5px;
  }
}

.p-first-guide-mycar-tabs__item {
  width: calc(20% - 6px);
  margin: 0 3px;
  border: 2px solid #0045AD;
  border-radius: 8px;
  color: #0045AD;
  cursor: pointer;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tabs__item {
    width: calc(20% - 10px);
    border-width: 3px;
    margin: 0 5px 20px;
    height: 70px;
  }
  .p-first-guide-mycar-tabs__item:hover {
    background: #0045AD;
    color: #fff;
  }
}

.p-first-guide-mycar-tabs__item.is-active {
  background: #0045AD;
  color: #fff;
  position: relative;
}

.p-first-guide-mycar-tabs__item.is-active::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 13px;
  left: 50%;
  right: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tabs__item.is-active::after {
    bottom: -13px;
  }
}

.p-first-guide-mycar-tabs__item > span {
  display: block;
  padding: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tabs__item > span {
    padding: 6px;
    font-size: 1.6rem;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-first-guide-mycar-tabs__item.is-active::after {
    bottom: -12px;
  }
}

/* tab contents */
@media all and (min-width: 768px) {
  .p-first-guide-mycar-tab {
    width: 860px;
    margin: 0 auto;
  }
}

.p-first-guide-mycar-tab__contents {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 40px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tab__contents {
    padding: 20px 0 40px 0;
    flex-direction: row;
  }
}

.p-first-guide-mycar-tab__contents.is-active {
  display: flex;
}

.p-first-guide-mycar-tab__image {
  position: absolute;
  top: 16px;
  left: 0;
  width: 64px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tab__image {
    position: relative;
    top: 0;
    width: 140px;
    margin-right: 24px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tab__text {
    flex: 1 1;
  }
}

.p-first-guide-mycar-tab__text__topic {
  padding: 0.5em 0 0 72px;
  min-height: 64px;
  color: #00B6FC;
  font-size: 1.6rem;
  margin-bottom: 16px;
  text-align: left;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-tab__text__topic {
    padding: 0;
    text-align: left;
    font-size: 2.0rem;
  }
}

.p-first-guide-mycar-tab__text__subtopic {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

.p-first-guide-mycar-carlist-tab__content {
  display: none;
}

.p-first-guide-mycar-carlist-tab__content.is-active {
  display: block;
}

.p-first-guide-mycar-rank-list {
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-rank-list {
    margin-top: 50px;
  }
}

.p-first-guide-mycar-rank-list .c-car-rank-list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: -30px -16px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-rank-list .c-car-rank-list {
    flex-direction: row;
  }
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item {
  width: calc(100% - 16px);
  padding: 30px 0 4px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item {
    width: 234px;
  }
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card {
  background: none;
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__title {
  margin-bottom: 15px;
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc {
  display: flex;
  justify-content: center;
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc .c-car-rank-infomation-card__image {
  width: 50%;
  margin-right: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc .c-car-rank-infomation-card__image {
    width: 100%;
    margin-right: 0;
  }
  .p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc .c-car-rank-infomation-card__image figcaption {
    display: none;
  }
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc .c-car-rank-infomation-card__text {
  width: 50%;
  margin: 0;
  padding-right: 10px;
  margin: 0;
  font-size: 1.4rem;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__content__inner .c-car-rank-infomation-card__desc .c-car-rank-infomation-card__text {
    display: none;
  }
}

.p-first-guide-mycar-rank-list .c-car-rank-list .c-car-rank-list__item .c-car-rank-infomation-card__button {
  margin-top: 16px;
}

.p-first-guide-mycar-button-blue {
  margin-bottom: 52px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-button-blue {
    margin-bottom: 80px;
  }
}

/* first-guide/flow ------------------------------------------- */
/* section */
.p-first-guide-section-flow__inner {
  padding: 18px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-section-flow__inner {
    max-width: 1120px;
    padding: 0 40px 76px;
  }
}

.p-first-guide-section-flow--beige {
  background-color: #FEF7EC;
}

/* main heading */
.p-heading-content-first-guide-flow {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-heading-content-first-guide-flow {
    margin-bottom: 40px;
  }
}

/* section heading */
.p-first-guide-flow-heading {
  margin: 0 -16px;
  border-radius: 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow-heading {
    margin: 0;
    font-size: 1.6rem;
  }
}

/* read text */
.p-first-guide-flow-reading {
  padding: 0 0 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow-reading {
    padding: 0 40px 80px;
    text-align: center;
  }
}

.p-first-guide-flow-reading__text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow-reading__text {
    font-size: 1.6rem;
    line-height: 1.85;
    letter-spacing: 0.05em;
  }
}

.p-first-guide-flow-reading__note {
  position: relative;
  margin-top: 0.5em;
  padding-left: 1.25em;
  font-size: 1.0rem;
  line-height: 1.4;
  color: #8A939D;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow-reading__note {
    display: inline-block;
    vertical-align: middle;
    margin-top: 1.5em;
    font-size: 1.2rem;
  }
}

.p-first-guide-flow-reading__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* flow-lists  */
.p-first-guide-flow {
  overflow: hidden;
  margin: 30px 0 10px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow {
    margin: 40px 0 0;
  }
}

.p-first-guide-flow__item {
  position: relative;
  margin-bottom: 54px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__item {
    display: flex;
    margin: 0;
  }
}

.p-first-guide-flow__item:last-child {
  margin: 0;
}

.p-first-guide-flow__item:last-child .p-first-guide-flow__inner {
  margin: 0;
}

.p-first-guide-flow__item:last-child .p-first-guide-flow__head::after {
  display: none;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__item:last-child .p-first-guide-flow__body {
    padding-bottom: 38px;
  }
}

.p-first-guide-flow__item:last-child .p-first-guide-flow__body::after {
  display: none;
}

/* heading */
.p-first-guide-flow__head {
  display: flex;
  margin-bottom: 16px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__head {
    position: relative;
    width: calc(23% - 40px);
    margin-bottom: 0;
    margin: 0 40px 0 0;
  }
}

.p-first-guide-flow__head::after {
  content: '';
  position: absolute;
  bottom: -42px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: url(../image/common/ico/ico_triangle_red_under_01@2x.png) top left no-repeat;
  background-size: contain;
  transform: translateX(-10px);
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__head::after {
    bottom: 20px;
  }
}

.p-first-guide-flow__inner {
  display: flex;
  align-items: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__inner {
    display: block;
    width: 100%;
    padding: 20px 16px;
    margin-bottom: 64px;
    border-radius: 1.5px;
    background-color: #F3F4F5;
    text-align: center;
  }
}

.p-first-guide-flow__number {
  width: 44px;
  margin-right: 12px;
  border-right: 4px solid #F3F4F5;
  font-family: 'Barlow', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0045AD;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__number {
    display: block;
    width: auto;
    margin: 0 0 12px;
    border: none;
  }
}

/* content body */
@media all and (min-width: 768px) {
  .p-first-guide-flow__body {
    position: relative;
    width: 77%;
    padding-bottom: 64px;
    background-image: linear-gradient(to right, #FEF7EC 50%, #EAEAEA 50%);
  }
  .p-first-guide-flow__body::after {
    content: '';
    position: absolute;
    left: 40px;
    right: 0;
    bottom: 32px;
    width: calc(100% - 80px);
    height: 0;
    border-top: 2px dashed #C4C9CE;
  }
}

/* content grid */
.p-first-guide-flow__grid {
  padding: 8px 0;
  background-image: linear-gradient(to right, #FEF7EC 50%, #EAEAEA 50%);
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__grid {
    padding: 0;
    background: none;
  }
}

.p-first-guide-flow__row {
  display: flex;
  padding: 8px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__row {
    padding: 0 0 16px;
  }
  .p-first-guide-flow__row:last-child {
    padding: 0;
  }
}

.p-first-guide-flow__row--end {
  justify-content: flex-end;
}

.p-first-guide-flow__col {
  position: relative;
  width: 50%;
  padding: 0 16px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__col {
    padding: 0 40px;
  }
}

.p-first-guide-flow__col--full {
  width: 100%;
}

.p-first-guide-flow__col--ico-arrow-next::after, .p-first-guide-flow__col--ico-arrow-prev::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-8px);
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__col--ico-arrow-next::after, .p-first-guide-flow__col--ico-arrow-prev::before {
    top: 18px;
    width: 24px;
    height: 24px;
    transform: translateY(0);
  }
}

.p-first-guide-flow__col--ico-arrow-next::after {
  right: -10px;
  background: url(../image/common/ico/ico_triangle_red_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__col--ico-arrow-next::after {
    background: url(../image/common/ico/ico_arrow_left_red_01.svg) top left no-repeat;
    background-size: contain;
  }
}

.p-first-guide-flow__col--ico-arrow-prev::before {
  left: -6px;
  background: url(../image/common/ico/ico_triangle_red_left_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__col--ico-arrow-prev::before {
    left: -16px;
    background: url(../image/common/ico/ico_arrow_right_red_01.svg) top left no-repeat;
    background-size: contain;
  }
}

.p-first-guide-flow__col--ico-line-top::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 3px;
  height: 16px;
  background: #0045AD;
  transform: translateX(-2px);
}

.p-first-guide-flow__block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 10px;
  background: white;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__block {
    font-size: 1.6rem;
  }
}

.p-first-guide-flow__block--line-top {
  margin-top: 16px;
}

.p-first-guide-flow__block--line-top::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 3px;
  height: 16px;
  background: #0045AD;
  transform: translateX(-2px);
}

.p-first-guide-flow__content {
  padding: 10px 0 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__content {
    padding: 0;
  }
}

/* content box */
.p-first-guide-flow__box {
  margin: 15px 0 0;
  padding: 14px 14px 18px;
  border: 2px solid #C4C9CE;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__box {
    margin: 20px 0 0;
    padding-bottom: 12px;
  }
}

.p-first-guide-flow__box--top {
  margin-top: 0;
}

.p-first-guide-flow__box--title {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: bold;
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__box--title {
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__box--text {
    letter-spacing: 0.05em;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__box--note {
    margin: 7px 0 0;
    letter-spacing: 0.1em;
    font-size: 1.2rem;
  }
}

/* content title */
.p-first-guide-flow__title {
  margin-bottom: -4px;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 700;
  letter-spacing: -0.05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__title {
    letter-spacing: normal;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__title--top {
    padding: 28px 0 19px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__title--btm {
    margin-top: -4px;
    padding-bottom: 20px;
  }
}

.p-first-guide-flow__title--block {
  width: 50%;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__title--block {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

/* content text */
.p-first-guide-flow__text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__text {
    margin: 12px 0 -6px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__text--01 {
    margin-top: 10px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__text--02 {
    margin-top: 15px;
  }
}

.p-first-guide-flow__text + .p-first-guide-flow__text {
  margin-top: 8px;
}

/* content link */
.p-first-guide-flow__link {
  text-decoration: underline;
}

.p-first-guide-flow__link:hover {
  text-decoration: none;
}

/* content note */
.p-first-guide-flow__note {
  position: relative;
  margin-top: 0.5em;
  padding-left: 1.25em;
  font-size: 1.0rem;
  line-height: 1.4;
  color: #8A939D;
}

@media all and (min-width: 768px) {
  .p-first-guide-flow__note {
    font-size: 1.2rem;
  }
}

.p-first-guide-flow__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* first-guide/reason ------------------------------------------- */
/*section*/
.p-first-guide-section-reason {
  margin-bottom: 12px;
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .p-first-guide-section-reason {
    margin-bottom: 0;
  }
}

.p-first-guide-section-reason__inner {
  padding: 30px 16px;
}

@media all and (min-width: 768px) {
  .p-first-guide-section-reason__inner {
    padding: 90px 0 65px;
  }
}

/*section*/
@media all and (min-width: 768px) {
  .p-first-guide-reason {
    padding: 0 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-reason__title {
    margin-bottom: 25px;
  }
}

.p-first-guide-reason__text {
  margin-bottom: 38px;
  line-height: 1.45;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-reason__text {
    margin-bottom: 76px;
    line-height: 1.65;
  }
}

.p-first-guide-reason__note {
  margin: 6px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-reason__figure {
    width: 857px;
    margin: 0 auto;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-mypage-section .p-first-guide-section__inner {
    max-width: 960px;
  }
}

.p-first-guide-mycar-carlist-tab + .c-button-special {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-first-guide-mycar-carlist-tab + .c-button-special {
    margin-top: 80px;
  }
}

.p-first-guide-bottom-navi-area {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi-area {
    margin-top: 80px;
  }
}

.p-first-guide-bottom-navi {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi {
    margin: 0 -20px;
  }
}

.p-first-guide-bottom-navi__item {
  width: 50%;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi__item {
    padding: 0 20px;
  }
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full {
  width: 100%;
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button {
  max-width: 310px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button {
    max-width: 400px;
  }
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button .p-page-bottom-button__inner {
  padding: 10px 30px 10px 10px;
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button .p-page-bottom-button__inner::before {
  right: 18px;
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button-prev {
  max-width: 310px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button-prev {
    max-width: 400px;
  }
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button-prev .p-page-bottom-button-prev__inner {
  padding: 10px 10px 10px 30px;
}

.p-first-guide-bottom-navi__item.p-first-guide-bottom-navi__item--full .p-page-bottom-button-prev .p-page-bottom-button-prev__inner::before {
  left: 18px;
  transform: rotate(180deg);
}

.p-first-guide-bottom-navi + .c-button-special {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-first-guide-bottom-navi + .c-button-special {
    margin-top: 80px;
  }
}

.p-page-bottom-button {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button:hover .p-page-bottom-button__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-page-bottom-button:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-page-bottom-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button::after {
    border-radius: 12px;
  }
}

.p-page-bottom-button__inner {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 10px 30px 16px 10px;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button__inner {
    border-radius: 12px;
    font-size: 2.4rem;
  }
}

.p-page-bottom-button__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.p-page-bottom-button__inner span {
  display: block;
}

.p-page-bottom-button__inner .sub {
  margin-bottom: 5px;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button__inner .sub {
    font-size: 1.4rem;
  }
}

.p-page-bottom-button__inner .main {
  font-size: 1.8rem;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button__inner .main {
    font-size: 2.4rem;
  }
}

.p-page-bottom-button-prev {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev:hover .p-page-bottom-button-prev__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-page-bottom-button-prev:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-page-bottom-button-prev::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev::after {
    border-radius: 12px;
  }
}

.p-page-bottom-button-prev__inner {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 10px 30px 16px 10px;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev__inner {
    border-radius: 12px;
    font-size: 2.4rem;
  }
}

.p-page-bottom-button-prev__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev__inner::before {
    right: auto;
    left: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    transform: rotate(180deg);
  }
}

.p-page-bottom-button-prev__inner span {
  display: block;
}

.p-page-bottom-button-prev__inner .sub {
  margin-bottom: 5px;
  font-size: 1.0rem;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev__inner .sub {
    font-size: 1.4rem;
  }
}

.p-page-bottom-button-prev__inner .main {
  font-size: 1.8rem;
}

@media all and (min-width: 768px) {
  .p-page-bottom-button-prev__inner .main {
    font-size: 2.4rem;
  }
}

.p-first-guide-about-merit {
  height: 100%;
  text-align: center;
}

.p-first-guide-about-merit__title {
  display: inline-block;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 10px 4px;
  background-color: #FF6670;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-merit__title {
    min-width: 200px;
    font-size: 2.0rem;
    border-radius: 8px;
  }
}

.p-first-guide-about-merit__content {
  background-color: #fff;
  margin-top: -10px;
  padding: 30px 16px 30px;
  border-radius: 8px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-merit__content {
    height: calc(100% - 20px);
    border-radius: 12px;
    margin-top: -20px;
    padding: 40px 40px 30px 24px;
  }
}

.p-first-guide-about-merit-list__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-merit-list__item {
    padding-left: 32px;
    font-size: 2.0rem;
  }
}

.p-first-guide-about-merit-list__item::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 12px;
  height: 11px;
  background: url("../image/common/ico/ico_check_blue_red_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-merit-list__item::before {
    width: 16px;
    height: 14px;
  }
}

.p-first-guide-about-merit-list__item em {
  color: #FF6670;
  font-style: normal;
}

.p-first-guide-about-merit-list__item:last-child {
  margin-bottom: 0;
}

.p-first-guide-about-demerit {
  height: 100%;
  text-align: center;
}

.p-first-guide-about-demerit__title {
  display: inline-block;
  vertical-align: middle;
  min-width: 150px;
  padding: 5px 10px 4px;
  background-color: #8A939D;
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-demerit__title {
    min-width: 200px;
    font-size: 2.0rem;
    border-radius: 8px;
  }
}

.p-first-guide-about-demerit__content {
  background-color: #F3F4F5;
  margin-top: -10px;
  padding: 30px 16px 30px;
  border-radius: 8px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-demerit__content {
    border-radius: 12px;
    padding: 40px 40px 30px 24px;
    margin-top: -20px;
    height: calc(100% - 20px);
  }
}

.p-first-guide-about-demerit-list__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: rgba(22, 40, 60, 0.75);
}

@media all and (min-width: 768px) {
  .p-first-guide-about-demerit-list__item {
    padding-left: 32px;
    font-size: 1.8rem;
  }
}

.p-first-guide-about-demerit-list__item::before {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 3px;
  background: #0045AD;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-about-demerit-list__item::before {
    width: 12px;
    height: 4px;
  }
}

.p-first-guide-about-demerit-list__item:last-child {
  margin-bottom: 0;
}


/* first-guide cm
---------------------------------------------------------- */
/* cm
---------------------------------------------------------- */
/* section */
.p-first-guide-cm-section-reading__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-section-reading__inner {
    max-width: 1120px;
    padding: 40px 40px 35px;
  }
}

.p-first-guide-cm-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-section__inner {
    max-width: 1120px;
    padding: 80px 40px 80px;
  }
}

.p-first-guide-cm-section--beige {
  background-color: #FEF7EC;
}

/* text */
.p-first-guide-cm-readtext {
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-readtext {
    font-size: 1.6rem;
    text-align: center;
  }
}

/* cm list */
.p-first-guide-cm-list {
  padding: 0 32px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -20px 0;
  }
}

.p-first-guide-cm-list__item {
  margin-bottom: 25px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__item {
    width: 50%;
    padding: 0 20px;
    margin: 0;
  }
}

.p-first-guide-cm-list__item:last-child {
  margin-bottom: 0;
}

.p-first-guide-cm-list__link {
  display: block;
  max-width: 500px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__link:hover .p-first-guide-cm-list__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-first-guide-cm-list__link:hover .p-first-guide-cm-list__figure::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-first-guide-cm-list__figure {
  position: relative;
}

.p-first-guide-cm-list__figure::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__figure::after {
    border-radius: 12px;
  }
}

.p-first-guide-cm-list__figure img {
  width: 100%;
  height: auto;
}

.p-first-guide-cm-list__button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__button {
    right: 17px;
    bottom: 17px;
    width: 46px;
    height: 46px;
  }
}

.p-first-guide-cm-list__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 14px;
  margin: auto;
  background: url("../image/common/ico/ico_arrow_triangle_blue_tright_01.svg") center center no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__button::after {
    width: 15px;
    height: 18px;
  }
}

.p-first-guide-cm-list__inner {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__inner {
    border-radius: 12px;
  }
}

.p-first-guide-cm-list__title {
  margin-top: 12px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__title {
    font-size: 2.0rem;
  }
}

.p-first-guide-cm-list__title .subtitle {
  display: block;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list__title .subtitle {
    font-size: 1.6rem;
  }
}

.p-first-guide-cm-list + .c-button-special {
  margin-top: 50px;
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list + .c-button-special {
    margin-top: 80px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list--making {
    justify-content: center;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-cm-list--netmovie {
    max-width: 680px;
    margin: 0 auto;
  }
}

/* radio cm list */
@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-list {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px 0;
  }
}

.p-first-guide-radio-cm-list__item {
  margin-bottom: 24px;
}

@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-list__item {
    width: 33.33%;
    padding: 0 20px;
    margin-top: 40px;
  }
  .p-first-guide-radio-cm-list__item:nth-child(3n-2) {
    width: 33.34%;
  }
}

.p-first-guide-radio-cm-list__item:last-child {
  margin-bottom: 0;
}

.p-first-guide-radio-cm-content {
  position: relative;
  display: block;
  color: #0045AD;
}

@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-content {
    height: 100%;
  }
}

.p-first-guide-radio-cm-content::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-content::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-content:hover .p-first-guide-radio-cm-content__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-first-guide-radio-cm-content:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-first-guide-radio-cm-content__inner {
  overflow: hidden;
  position: relative;
  padding: 13px 50px 13px 16px;
  background-color: #FEF7EC;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-first-guide-radio-cm-content__inner {
    height: 100%;
    border-radius: 12px;
  }
}

.p-first-guide-radio-cm-content__title {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-first-guide-radio-cm-content__subtitle {
  font-size: 1.2rem;
  font-weight: bold;
}

.p-first-guide-radio-cm-content__icon {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
}

.p-first-guide-radio-cm-content__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 14px;
  margin: auto;
  background: url("../image/common/ico/ico_arrow_triangle_blue_tright_01.svg") center center no-repeat;
  background-size: contain;
}

/* past cm list */
.p-first-guide-past-cm-list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px -4px 0;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list {
    margin: -40px -19px 0;
  }
}

.p-first-guide-past-cm-list__item {
  width: 50%;
  padding: 0 4px;
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__item {
    width: 33.33%;
    padding: 0 19px;
    margin-top: 40px;
  }
  .p-first-guide-past-cm-list__item:nth-child(3n-2) {
    width: 33.34%;
  }
}

.p-first-guide-past-cm-list__link {
  display: block;
  max-width: 500px;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__link:hover .p-first-guide-past-cm-list__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-first-guide-past-cm-list__link:hover .p-first-guide-past-cm-list__figure::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-first-guide-past-cm-list__figure {
  position: relative;
}

.p-first-guide-past-cm-list__figure::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__figure::after {
    border-radius: 12px;
  }
}

.p-first-guide-past-cm-list__figure img {
  width: 100%;
  height: auto;
}

.p-first-guide-past-cm-list__button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 8px;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__button {
    right: 17px;
    bottom: 17px;
    width: 46px;
    height: 46px;
  }
}

.p-first-guide-past-cm-list__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  margin: auto;
  background: url("../image/common/ico/ico_arrow_triangle_blue_tright_01.svg") center center no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__button::after {
    width: 15px;
    height: 18px;
  }
}

.p-first-guide-past-cm-list__inner {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 8px;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__inner {
    border-radius: 12px;
  }
}

.p-first-guide-past-cm-list__title {
  margin-top: 12px;
  color: #0045AD;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__title {
    font-size: 2.0rem;
    text-align: center;
  }
}

.p-first-guide-past-cm-list__title .subtitle {
  display: block;
  font-size: 1.2rem;
}

@media all and (min-width: 768px) {
  .p-first-guide-past-cm-list__title .subtitle {
    font-size: 1.6rem;
  }
}

/* plan-contract
---------------------------------------------------------- */
/* first-guide index プラン契約
---------------------------------------------------------- */
.p-plan-contract-index-navi {
  display: flex;
  flex-wrap: wrap;
  margin: 22px -8px 0;
  padding-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi {
    margin: 80px -20px 0;
    padding-bottom: 80px;
  }
}

.p-plan-contract-index-navi__item {
  width: 100%;
  padding: 0 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__item {
    margin-top: 0;
    width: 33.33%;
    padding: 0 20px;
  }
}

.p-plan-contract-index-navi__item + .p-plan-contract-index-navi__item {
  margin-top: 16px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__item + .p-plan-contract-index-navi__item {
    margin-top: 0;
  }
}

.p-plan-contract-index-navi__item.p-plan-contract-index-navi__item--for-business {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__item.p-plan-contract-index-navi__item--for-business {
    width: 100%;
    padding: 0;
    margin-top: 40px;
    text-align: center;
  }
}

.p-plan-contract-index-navi__link {
  position: relative;
  display: block;
  height: 100%;
}

.p-plan-contract-index-navi__link::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url(../image/common/bg/bg_stripe_45deg_blue_01@2x.png) top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__link:hover .p-plan-contract-index-navi__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .p-plan-contract-index-navi__link:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.p-plan-contract-index-navi__inner {
  display: block;
  position: relative;
  min-height: 110px;
  height: 100%;
  padding: 16px 5px 0;
  background-color: #fff;
  border: 3px solid #0045AD;
  border-radius: 8px;
  text-align: center;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__inner {
    min-height: 150px;
    padding-bottom: 16px;
  }
}

.p-plan-contract-index-navi__inner::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__inner::before {
    width: 20px;
    height: 20px;
    top: auto;
    bottom: 6px;
    right: 6px;
    margin-top: 0;
  }
}

.p-plan-contract-index-navi__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-plan-contract-index-navi__sub {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.09;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__sub {
    font-size: 1.4rem;
  }
}

.p-plan-contract-index-navi__main {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__main {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    font-size: 2.0rem;
    line-height: 1.1;
  }
}

.p-plan-contract-index-navi__pack {
  margin-top: 8px;
  padding: 0 27px;
  display: flex;
  align-items: center;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__pack {
    padding: 0 13px;
  }
}

.p-plan-contract-index-navi__pack-item {
  width: 33.33%;
  padding: 0 3px;
}

.p-plan-contract-index-navi__pack-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-radius: 15px;
  padding: 0 2px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
}

@media all and (max-width: 359px) {
  .p-plan-contract-index-navi__pack-item span {
    width: 120%;
    transform: scale(0.8);
    transform-origin: left center;
  }
}

@media all and (max-width: 360px) {
  .p-plan-contract-index-navi__pack-item span {
    font-size: 1.0rem;
    word-break: keep-all;
  }
}

.p-plan-contract-index-navi__pack-item:nth-child(1) span {
  background-color: #d6be32;
}

.p-plan-contract-index-navi__pack-item:nth-child(2) span {
  background-color: #a3a3a3;
}

.p-plan-contract-index-navi__pack-item:nth-child(3) span {
  background-color: #eaeaea;
  color: #16283c;
}

.p-plan-contract-index-navi__text {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 1.2rem;
  line-height: 1.33;
  letter-spacing: .05em;
  text-align: center;
  color: #16283c;
}

@media all and (min-width: 768px) {
  .p-plan-contract-index-navi__text {
    margin-top: 4px;
    padding: 0 5px;
    font-size: 1.4rem;
    line-height: 1.43;
  }
}

.p-first-guide-section-flow + .p-special-section-white .p-special-section-white__inner {
  padding-top: 20px;
}

.p-plan-contract-navi-area__inner {
  margin: 0 auto;
  padding: 0 16px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-navi-area__inner {
    max-width: 1120px;
    padding: 0 40px;
  }
}

.p-plan-contract-navi-area .p-plan-contract-index-navi {
  margin-top: 0;
}

.p-plan-contract-navi-area--beige {
  background-color: #FEF7EC;
}

/* first-guide howto あなたにピッタリの乗り方
---------------------------------------------------------- */
.p-plan-contract-howto-index-section {
  padding: 44px 0 40px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-index-section {
    padding: 70px 0 0;
  }
}

.p-plan-contract-howto-index-section .p-special-heading__subtitle {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .1em;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-index-section .p-special-heading__subtitle {
    font-size: 1.6rem;
  }
}

.p-plan-contract-howto-index-section .p-special-heading__title {
  margin-top: 10px;
  line-height: 1.2;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-index-section .p-special-heading__title {
    line-height: 1.4;
  }
}

.p-plan-contract-howto-price-section {
  margin-top: 40px;
  max-width: 1080px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-section {
    margin: 80px auto 0;
    padding: 0 20px;
  }
}

.p-plan-contract-howto-price-section__inner {
  position: relative;
  padding: 40px 16px;
  background-color: #FEF7EC;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-section__inner {
    padding: 40px;
    border-radius: 12px;
  }
}

.p-plan-contract-howto-price-section__title {
  color: #0045ad;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: .05em;
  text-align: center;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-section__title {
    padding: 12px 0;
    border-radius: 8px;
    background-color: #0045ad;
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
  }
}

.p-plan-contract-howto-price-section__text {
  display: none;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-section__text {
    display: block;
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .05em;
    text-align: center;
  }
}

.p-plan-contract-howto-price-flex {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex {
    display: flex;
    margin-top: 40px;
  }
}

@media all and (max-width: 767px) {
  .p-plan-contract-howto-price-flex__item:first-child {
    padding: 24px 16px 40px;
    border-radius: 8px;
    background-color: #fff;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__item:first-child {
    flex-shrink: 0;
    margin-right: 80px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .p-plan-contract-howto-price-flex__item:first-child {
    width: 45%;
  }
}

@media all and (min-width: 992px) {
  .p-plan-contract-howto-price-flex__item:first-child {
    width: 50%;
  }
}

.p-plan-contract-howto-price-flex__item:last-child {
  position: relative;
  margin-top: 70px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__item:last-child {
    flex: 1 1;
    margin-top: 0;
  }
}

.p-plan-contract-howto-price-flex__item:last-child::before, .p-plan-contract-howto-price-flex__item:last-child::after {
  position: absolute;
  content: '';
  top: -50px;
  left: 50%;
  margin-left: -2.5px;
  width: 5px;
  height: 30px;
  background-color: #16283c;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__item:last-child::before, .p-plan-contract-howto-price-flex__item:last-child::after {
    top: 50%;
    left: -40px;
    margin-left: -3px;
    width: 6px;
    height: 36px;
    border-radius: 3px;
  }
}

.p-plan-contract-howto-price-flex__item:last-child::after {
  transform: rotateZ(90deg);
}

.p-plan-contract-howto-price-flex__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__title {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}

.p-plan-contract-howto-price-flex__figure {
  margin-top: 16px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 416px;
    margin-top: 40px;
    padding: 0 40px;
    border-radius: 8px;
    background-color: #ffffff;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__figure .sp {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .p-plan-contract-howto-price-flex__figure .pc {
    display: none;
  }
}

.p-plan-contract-howto-price-flex__figure img {
  width: 100%;
  height: auto;
  max-width: 312px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-price-flex__figure img {
    max-width: 100%;
  }
}

.p-plan-contract-howto-price-flex + .c-text-note {
  margin-top: 5px;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-plan-contract-howto-price-flex__figure {
    height: 416px;
  }
}

.p-plan-contract-howto-plan-navi {
  padding: 0 0 4px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi {
    padding: 40px 0 4px;
  }
}

.p-plan-contract-howto-plan-navi__inner {
  margin: 0 -8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__inner {
    margin: -20px -20px 0;
  }
}

.p-plan-contract-howto-plan-navi__item {
  width: 100%;
  padding: 0 8px;
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__item {
    padding: 0 20px;
  }
}

.p-plan-contract-howto-plan-navi__item:nth-child(1) span::after {
  background: url("../image/plan-contract/howto/ico_howto_01_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__item:nth-child(1) span::after {
    background: url("../image/plan-contract/howto/ico_howto_01_01_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-plan-navi__item:nth-child(2) span::after {
  background: url("../image/plan-contract/howto/ico_howto_02_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__item:nth-child(2) span::after {
    background: url("../image/plan-contract/howto/ico_howto_02_01_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-plan-navi__item:nth-child(3) span::after {
  background: url("../image/plan-contract/howto/ico_howto_03_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__item:nth-child(3) span::after {
    background: url("../image/plan-contract/howto/ico_howto_03_01_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-plan-navi__item:nth-child(4) span::after {
  background: url("../image/plan-contract/howto/ico_howto_04_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__item:nth-child(4) span::after {
    background: url("../image/plan-contract/howto/ico_howto_04_01_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-plan-navi__link {
  position: relative;
  display: block;
  height: 100%;
  color: #0045AD;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link {
    height: 88px;
    font-size: 2rem;
  }
}

.p-plan-contract-howto-plan-navi__link > span {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 64px;
  padding: 10px 0 10px 72px;
  background-color: #fff;
  z-index: 1;
  border-radius: 8px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link > span {
    padding: 0 50px 0 104px;
  }
}

.p-plan-contract-howto-plan-navi__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link > span::before {
    right: 24px;
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
}

.p-plan-contract-howto-plan-navi__link > span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -24px;
  width: 48px;
  height: 48px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link > span::after {
    left: 16px;
    margin-top: -36px;
    width: 72px;
    height: 72px;
  }
}

.p-plan-contract-howto-plan-navi__link::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-plan-navi__link:hover > span {
    transform: translate3d(-1px, -1px, 0);
  }
  .p-plan-contract-howto-plan-navi__link:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

.p-plan-contract-howto-description {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-description {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
  }
}

.p-plan-contract-howto-description + .p-special-heading {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-description + .p-special-heading {
    margin-top: 80px;
  }
}

.p-plan-contract-howto-text {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-text {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
  }
}

.p-special-heading + .p-plan-contract-howto-text {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-special-heading + .p-plan-contract-howto-text {
    margin-top: 40px;
  }
}

.p-plan-contract-howto-text + .c-text-note {
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-text + .c-text-note {
    margin-top: 24px;
    text-align: center;
  }
}

.p-plan-contract-howto-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section__inner {
    max-width: 1120px;
    padding: 40px 20px 45px;
  }
}

.p-plan-contract-howto-section--beige {
  background-color: #FEF7EC;
}

.p-plan-contract-howto-section-in {
  margin-top: 40px;
  padding: 8px 8px 20px;
  background-color: #fef7ec;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in {
    margin-top: 80px;
    padding: 40px 40px 48px;
    border-radius: 12px;
  }
}

.p-plan-contract-howto-section-in + .p-plan-contract-howto-section-in {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in + .p-plan-contract-howto-section-in {
    margin-top: 40px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__inner--flex {
    display: flex;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__inner--flex-item {
    width: 50%;
  }
  .p-plan-contract-howto-section-in__inner--flex-item:first-child {
    padding-right: 20px;
  }
  .p-plan-contract-howto-section-in__inner--flex-item:last-child {
    padding-left: 20px;
  }
}

.p-plan-contract-howto-section-in__inner--flex-item + .p-plan-contract-howto-section-in__inner--flex-item {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__inner--flex-item + .p-plan-contract-howto-section-in__inner--flex-item {
    margin-top: 0;
  }
}

.p-plan-contract-howto-section-in__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 5px 0;
  border-radius: 4px;
  background-color: #0045ad;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .05em;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__title {
    min-height: 48px;
    font-size: 2.4rem;
    border-radius: 8px;
  }
}

.p-plan-contract-howto-section-in__text {
  margin-top: 20px;
  color: #0045ad;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.12;
  letter-spacing: .05em;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__text {
    margin-top: 40px;
    font-size: 2.4rem;
  }
}

.p-plan-contract-howto-section-in__figure {
  margin-top: 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure .sp {
    display: none;
  }
}

.p-plan-contract-howto-section-in__figure .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure .pc {
    display: inline-block;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--distance01 {
    width: 600px;
    margin: 40px auto 0;
  }
}

.p-plan-contract-howto-section-in__figure--distance02 {
  padding: 0 8px 20px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--distance02 {
    padding: 0;
    margin-top: 40px;
  }
}

.p-plan-contract-howto-section-in__figure--distance03 {
  max-width: 279px;
  margin: 16px auto 0;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--distance03 {
    max-width: 461px;
    margin: 17px auto 0;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--term01 {
    width: 600px;
    margin: 40px auto 0;
  }
}

.p-plan-contract-howto-section-in__figure--term02 {
  width: 243px;
  margin: 13px auto 0;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--term02 {
    width: 411px;
    margin: 17px auto 0;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--bonus01 {
    max-width: 820px;
    margin: 40px auto 0;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--bonus02 {
    width: 600px;
    margin: 40px auto 0;
  }
}

.p-plan-contract-howto-section-in__figure--bonus03 {
  max-width: 284px;
  margin: 30px auto 0;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--bonus03 {
    max-width: 430px;
    margin: 40px 0 0 -11px;
  }
}

.p-plan-contract-howto-section-in__figure--bonus04 {
  max-width: 264px;
  margin: 30px auto 0;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in__figure--bonus04 {
    max-width: 405px;
    margin: 40px 0 0;
  }
}

.p-plan-contract-howto-section-in .c-text-note {
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-section-in .c-text-note {
    margin-top: 32px;
    text-align: center;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .p-plan-contract-howto-section-in__title {
    padding: 8px 0 2px;
    line-height: 1.5;
  }
}

.p-plan-contract-howto-navi {
  padding: 0 16px 9px;
  max-width: 1120px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi {
    padding: 40px 20px 4px;
  }
}

.p-plan-contract-howto-navi__inner {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -8px 0;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__inner {
    margin: -40px -20px 0;
  }
}

.p-plan-contract-howto-navi__item {
  width: 50%;
  padding: 0 8px;
  margin-top: 16px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__item {
    width: 25%;
    padding: 0 20px;
    margin-top: 40px;
  }
}

.p-plan-contract-howto-navi__item:nth-child(1) span::after {
  background: url("../image/plan-contract/howto/ico_howto_01_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__item:nth-child(1) span::after {
    background: url("../image/plan-contract/howto/ico_howto_01_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-navi__item:nth-child(2) span::after {
  background: url("../image/plan-contract/howto/ico_howto_02_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__item:nth-child(2) span::after {
    background: url("../image/plan-contract/howto/ico_howto_02_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-navi__item:nth-child(3) span::after {
  background: url("../image/plan-contract/howto/ico_howto_03_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__item:nth-child(3) span::after {
    background: url("../image/plan-contract/howto/ico_howto_03_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-navi__item:nth-child(4) span::after {
  background: url("../image/plan-contract/howto/ico_howto_04_sp.png") no-repeat;
  background-size: cover;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__item:nth-child(4) span::after {
    background: url("../image/plan-contract/howto/ico_howto_04_pc.png") no-repeat;
    background-size: cover;
  }
}

.p-plan-contract-howto-navi__link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 52px;
  color: #0045AD;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

@media all and (max-width: 359px) {
  .p-plan-contract-howto-navi__link {
    font-size: 1.1rem;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link {
    height: 152px;
  }
}

.p-plan-contract-howto-navi__link > span {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0 10px 52px;
  background-color: #FEF7EC;
  z-index: 1;
  border-radius: 8px;
  text-align: left;
}

@media all and (max-width: 359px) {
  .p-plan-contract-howto-navi__link > span {
    padding: 10px 0 10px 47px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link > span {
    align-items: flex-start;
    justify-content: center;
    padding: 21px 5px 0;
    border-radius: 12px;
    border: solid 3px #0045ad;
    background-color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    text-align: center;
  }
  .p-plan-contract-howto-navi__link > span span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
  }
}

.p-plan-contract-howto-navi__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url(../image/common/ico/ico_circle_blue_right_01.svg) top left no-repeat;
  background-size: contain;
}

@media all and (max-width: 359px) {
  .p-plan-contract-howto-navi__link > span::before {
    right: 8px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link > span::before {
    right: 9px;
    top: auto;
    bottom: 9px;
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
}

.p-plan-contract-howto-navi__link > span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
}

@media all and (max-width: 359px) {
  .p-plan-contract-howto-navi__link > span::after {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link > span::after {
    top: auto;
    left: 50%;
    bottom: 23px;
    margin-top: 0;
    margin-left: -28px;
    width: 56px;
    height: 56px;
  }
}

.p-plan-contract-howto-navi__link::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #0045AD 25%, transparent 25%, transparent 50%, #0045AD 50%, #0045AD 75%, transparent 75%, transparent);
  background-size: 4px 4px;
  border-radius: 8px;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-howto-navi__link:hover > span {
    transform: translate3d(-1px, -1px, 0);
  }
  .p-plan-contract-howto-navi__link:hover::after {
    transform: translate3d(1px, 1px, 0);
  }
}

/* first-guide distance 走行距離
---------------------------------------------------------- */
/* first-guide term リース期間
---------------------------------------------------------- */
/* first-guide bonus 頭金・ボーナス
---------------------------------------------------------- */
/* plan-contract pack
---------------------------------------------------------- */
/* section */
.p-plan-contract-pack-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-plan-contract-pack-section__inner {
    max-width: 1120px;
    padding: 40px 40px 80px;
  }
}

.p-plan-contract-pack-compare-section {
  background-color: #FEF7EC;
}

.p-plan-contract-pack-compare-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-plan-contract-pack-compare-section__inner {
    max-width: 940px;
    padding: 80px 40px 80px;
  }
}

@media all and (min-width: 768px) {
  .p-plan-contract-pack-compare-section .p-heading-content-pack {
    margin-bottom: 70px;
  }
}

/* text */
.p-plan-contract-pack-readtext {
  margin-bottom: 35px;
  font-size: 1.4rem;
}

@media all and (min-width: 768px) {
  .p-plan-contract-pack-readtext {
    font-size: 1.6rem;
    text-align: center;
  }
}

/* special button */
.p-plan-contract-pack-button {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-plan-contract-pack-button {
    margin-top: 80px;
  }
}

/* menkuru
---------------------------------------------------------- */
.p-menkuru-mainvisual {
  max-width: 1080px;
  margin: 0 auto 20px;
}

@media all and (min-width: 992px) {
  .p-menkuru-mainvisual {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
  }
}

.p-menkuru-mainvisual .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual .sp {
    display: none;
  }
}

.p-menkuru-mainvisual__title {
  text-align: center;
}

.p-menkuru-mainvisual__title__inner {
  position: relative;
}

.p-menkuru-mainvisual__title__inner:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -53px;
  width: 56px;
  height: 44px;
  background: url(../image/menkuru/img_menkuru_mainvisual_ornament_02_left_sp@2x.png) no-repeat center/56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__title__inner:before {
    top: 14px;
    left: -247px;
    width: 200px;
    height: 40px;
    background: url(../image/menkuru/img_menkuru_mainvisual_ornament_02_left_pc@2x.png) no-repeat center/200px;
  }
}

.p-menkuru-mainvisual__title__inner:after {
  content: "";
  position: absolute;
  top: 8px;
  right: -48px;
  width: 60px;
  height: 44px;
  background: url(../image/menkuru/img_menkuru_mainvisual_ornament_02_right_sp@2x.png) no-repeat center/64px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__title__inner:after {
    top: 14px;
    right: -234px;
    width: 224px;
    height: 104px;
    background: url(../image/menkuru/img_menkuru_mainvisual_ornament_02_right_pc@2x.png) no-repeat center/224px;
  }
}

.p-menkuru-mainvisual__title__inner .pc {
  display: none;
  max-width: 491px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__title__inner .pc {
    display: inline;
  }
}

.p-menkuru-mainvisual__title__inner .sp {
  max-width: 255px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__title__inner .sp {
    display: none;
  }
}

.p-menkuru-mainvisual__fukidashi_section {
  display: none;
}

.p-menkuru-mainvisual__fukidashi_section .pc01 {
  position: absolute;
  left: 71px;
  top: -68px;
}

.p-menkuru-mainvisual__fukidashi_section .pc02 {
  position: absolute;
  right: 41px;
  top: -12px;
}

@media all and (min-width: 992px) {
  .p-menkuru-mainvisual__fukidashi_section {
    position: relative;
    display: block;
  }
}

.p-menkuru-mainvisual__item {
  margin-top: 13px;
  margin-bottom: -5px;
  display: flex;
  align-items: flex-start;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item {
    margin-top: 18px;
    margin-bottom: -10px;
  }
}

.p-menkuru-mainvisual__item--left {
  width: 40%;
  padding-top: 3px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item--left {
    width: 30%;
    padding-top: 8px;
  }
}

.p-menkuru-mainvisual__item--center {
  width: 58%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item--center {
    width: 48%;
    justify-content: space-around;
  }
}

.p-menkuru-mainvisual__item--right {
  width: 30%;
  display: none;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item--right {
    display: block;
  }
}

.p-menkuru-mainvisual__item__ornament__01 {
  display: none;
}

.p-menkuru-mainvisual__item__ornament__01 img {
  max-width: 53px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item__ornament__01 {
    display: inline;
  }
}

.p-menkuru-mainvisual__item__ornament__02 {
  margin-left: -14px;
}

.p-menkuru-mainvisual__item__ornament__02 img {
  max-width: 195px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item__ornament__02 img {
    max-width: 263px;
  }
}

.p-menkuru-mainvisual__item__ornament__03 {
  display: none;
}

.p-menkuru-mainvisual__item__ornament__03 img {
  max-width: 44px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__item__ornament__03 {
    display: inline;
  }
}

.p-menkuru-mainvisual__road {
  height: 20px;
  background: #C4C9CE;
  background-image: url(../image/menkuru/img_menkuru_mainvisual_ornament_01.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 68px;
}

@media all and (min-width: 768px) {
  .p-menkuru-mainvisual__road {
    height: 40px;
    background-size: 128px;
  }
}

.p-menkuru-read {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-menkuru-read {
    font-size: 2.4rem;
  }
}

.p-menkuru-read em {
  color: #FF6670;
  font-weight: bold;
  font-style: normal;
}

.p-menkuru-text {
  font-size: 1.6rem;
}

.p-menkuru-caution {
  padding: 10px 16px;
  font-size: 1rem;
  border: 2px solid #F3F4F5;
  border-radius: 8px;
  color: #8A939D;
}

.p-menkuru-caution.white {
  border: 2px solid #fff;
}

@media all and (min-width: 768px) {
  .p-menkuru-caution {
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
}

.p-menkuru-button .c-button-blue__inner:before {
  top: 48%;
  background: url("../image/common/ico/ico_blank_01@2x.png") center/20px no-repeat;
}

.p-menkuru-special-button {
  margin-bottom: 36px;
}

@media all and (min-width: 768px) {
  .p-menkuru-special-button {
    margin-bottom: 80px;
  }
}

.p-menkuru-special-button .c-button-special__balloon span {
  min-width: 176px;
}

.p-menkuru-special-button .c-button-special__inner {
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media all and (max-width: 767px) {
  .p-menkuru-special-button .c-button-special__inner {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}

.p-menkuru-whats-section {
  text-align: center;
}

.p-menkuru-whats-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section__inner {
    padding: 80px 40px 80px;
    max-width: 940px;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-heading-content-pattern03 {
    margin-bottom: 34px;
  }
}

.p-menkuru-whats-section .p-menkuru-button {
  margin: 40px 0;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .p-menkuru-button {
    margin: 80px 0;
  }
}

.p-menkuru-whats-section .p-menkuru-button .c-button-blue {
  max-width: 480px;
}

@media all and (max-width: 767px) {
  .p-menkuru-whats-section .p-menkuru-button .c-button-blue__inner {
    font-size: 1.6rem;
  }
}

.p-menkuru-whats-section .p-menkuru-text {
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .p-menkuru-text {
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-whats-section .p-menkuru-text {
    font-size: 1.4rem;
  }
}

.p-menkuru-whats-section .c-flow-use-step {
  margin-top: 36px;
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step {
    margin-top: 80px;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-whats-section .c-flow-use-step__heading .subtext {
    letter-spacing: .7em;
    text-indent: 0.7em;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item {
    margin-bottom: 40px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__item:after {
  display: none;
}

.p-menkuru-whats-section .c-flow-use-step__item.step1 .c-flow-use-step__content:before {
  background: url(../image/common/img/img_menkuru_use_01@2x.png) top left no-repeat;
  background-size: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item.step1 .c-flow-use-step__content:before {
    background-size: 72px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__item.step2 .c-flow-use-step__content:before {
  background: url(../image/common/img/img_menkuru_use_02@2x.png) top left no-repeat;
  background-size: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item.step2 .c-flow-use-step__content:before {
    background-size: 72px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__item.step3 .c-flow-use-step__content:before {
  background: url(../image/common/img/img_menkuru_use_03@2x.png) top left no-repeat;
  background-size: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item.step3 .c-flow-use-step__content:before {
    background-size: 72px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__item.step4 .c-flow-use-step__content:before {
  background: url(../image/common/img/img_menkuru_use_04@2x.png) top left no-repeat;
  background-size: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item.step4 .c-flow-use-step__content:before {
    background-size: 72px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__item.step5 .c-flow-use-step__content:before {
  background: url(../image/common/img/img_menkuru_use_05@2x.png) top left no-repeat;
  background-size: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__item.step5 .c-flow-use-step__content:before {
    background-size: 72px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__content {
  background: #FEF7EC;
  text-align: left;
  justify-content: left;
  flex-wrap: wrap;
  height: 100%;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__content {
    padding: 20px 23px 20px 128px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__content:before {
  top: 40px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__content:before {
    top: 50%;
    left: 24px;
    width: 80px;
    height: 80px;
    margin-top: -40px;
  }
}

.p-menkuru-whats-section .c-flow-use-step__text {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 3px;
}

@media all and (min-width: 768px) {
  .p-menkuru-whats-section .c-flow-use-step__text {
    margin-bottom: 10px;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

.p-menkuru-whats-section .c-flow-use-step__description {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.7;
}

@media all and (max-width: 767px) {
  .p-menkuru-whats-section .c-flow-use-step__description {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

.p-menkuru-whats-section .c-flow-use-step__caution {
  width: 100%;
  margin-top: 5px;
  font-size: 1.2rem;
  color: #8A939D;
}

@media all and (max-width: 767px) {
  .p-menkuru-whats-section .c-flow-use-step__caution {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.2;
  }
}

.p-menkuru-model-section {
  background-color: #FEF7EC;
}

.p-menkuru-model-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section__inner {
    max-width: 1140px;
    padding: 80px 40px 80px;
    padding-bottom: 70px;
  }
}

.p-menkuru-model-section .p-menkuru-special-button {
  margin-top: 80px;
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  .p-menkuru-model-section .p-menkuru-special-button {
    margin-top: 48px;
  }
}

.p-menkuru-model-section .p-menkuru-special-button .c-button-special__balloon span {
  min-width: 176px;
}

.p-menkuru-model-section .p-menkuru-special-button .c-button-special__inner {
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media all and (max-width: 767px) {
  .p-menkuru-model-section .p-menkuru-special-button .c-button-special__inner {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}

.p-menkuru-model-section .c-heading-content-pattern03 {
  margin-bottom: 32px;
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section .c-heading-content-pattern03 {
    margin-bottom: 40px;
  }
}

.p-menkuru-model-section .c-choose-reason-list {
  margin-bottom: 12px;
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section .c-choose-reason-list {
    margin-bottom: 40px;
  }
}

.p-menkuru-model-section .c-choose-reason-list__item {
  width: 100%;
}

@media all and (max-width: 767px) {
  .p-menkuru-model-section .c-choose-reason-list__item {
    margin-bottom: 17px;
  }
}

.p-menkuru-model-section .c-choose-reason-list__item:last-child {
  margin-bottom: 0;
}

.p-menkuru-model-section .c-choose-reason-list__heading {
  min-height: 1px;
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section .c-choose-reason-list__heading {
    min-height: 10px;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-model-section .c-choose-reason-list__number {
    left: -6px;
  }
}

.p-menkuru-model-section .c-choose-reason-list__number .sub {
  margin-left: 0;
  margin-bottom: 0;
  letter-spacing: 0;
}

.p-menkuru-model-section .c-choose-reason-list__content {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section .c-choose-reason-list__content {
    margin-left: 20px;
    padding: 40px;
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-model-section .p-menkuru-caution {
    margin-left: 20px;
  }
}

.p-menkuru-about-section {
  text-align: center;
}

.p-menkuru-about-section__inner {
  padding: 28px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-about-section__inner {
    padding: 80px 40px 80px;
    max-width: 1120px;
  }
}

.p-menkuru-about-section .c-heading-content-pattern03 {
  margin-bottom: 30px;
}

.p-menkuru-about-section .p-menkuru-text {
  margin: 16px auto;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-menkuru-about-section .p-menkuru-text {
    margin: 30px auto;
    text-align: center;
    letter-spacing: .05em;
    line-height: 1.9;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-about-section .p-menkuru-text {
    font-size: 1.4rem;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-about-section .p-menkuru-read {
    letter-spacing: .05em;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-about-section .p-menkuru-read {
    font-size: 1.5rem;
  }
}

.p-menkuru-about-section .p-menkuru-caution {
  text-align: left;
}

.p-menkuru-about-section .c-accordion {
  margin-bottom: 0;
}

.p-menkuru-about-section .c-accordion .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-menkuru-about-section .c-accordion .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-about-section .c-accordion .sp {
    display: none;
  }
}

.p-menkuru-entrust-section {
  background-color: #FEF7EC;
  text-align: center;
}

.p-menkuru-entrust-section__inner {
  padding: 60px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section__inner {
    max-width: 1140px;
    padding: 72px 40px 80px;
  }
}

.p-menkuru-entrust-section__before {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section__before {
    margin: 0 -20px;
    margin-top: 60px;
  }
}

.p-menkuru-entrust-section__arrow {
  margin: 10px auto;
}

.p-menkuru-entrust-section__arrow img {
  max-width: 32px;
}

@media all and (max-width: 767px) {
  .p-menkuru-entrust-section__arrow {
    margin: 4px auto;
  }
  .p-menkuru-entrust-section__arrow img {
    max-width: 24px;
  }
}

.p-menkuru-entrust-section__after {
  margin-bottom: 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section__after {
    margin-bottom: 80px;
  }
}

.p-menkuru-entrust-section .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section .sp {
    display: none;
  }
}

.p-menkuru-entrust-section .c-heading-content-pattern03 {
  margin-bottom: 20px;
  letter-spacing: .25em;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section .c-heading-content-pattern03 {
    margin-bottom: 24px;
    letter-spacing: .07em;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-entrust-section .c-heading-content-pattern03 {
    margin-bottom: 10px;
    line-height: 1.4;
  }
}

.p-menkuru-entrust-section .p-menkuru-text {
  margin: 20px auto;
  text-align: left;
  letter-spacing: 0.05em;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section .p-menkuru-text {
    margin: 32px auto;
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-entrust-section .p-menkuru-text {
    letter-spacing: 0.08em;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

.p-menkuru-entrust-section .p-menkuru-read {
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .p-menkuru-entrust-section .p-menkuru-read {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

.p-menkuru-entrust-section .p-menkuru-button {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-menkuru-entrust-section .p-menkuru-button {
    margin-top: 80px;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-entrust-section .p-menkuru-button .c-button-blue__inner {
    font-size: 1.6rem;
  }
}

.p-menkuru-lineup-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-lineup-section__inner {
    padding: 80px 40px 80px;
    max-width: 1120px;
  }
}

.p-menkuru-lineup-section .p-popular-car-details-list {
  margin-bottom: 0;
}

.p-menkuru-lineup-section .p-popular-car-details-list__item {
  width: 100%;
}

@media all and (min-width: 768px) {
  .p-menkuru-lineup-section .p-popular-car-details-list__item {
    width: 33%;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-lineup-section .c-car-rank-infomation-card__content {
    max-width: 310px;
    margin: 0 auto;
  }
  .p-menkuru-lineup-section .c-car-rank-infomation-card__content__inner {
    padding: 13px 16px 20px;
  }
}

.p-menkuru-lineup-section .c-car-rank-infomation-card__pickup-title {
  color: #0045AD;
  font-size: 1.6rem;
  font-weight: 700;
}

.p-menkuru-lineup-section .c-car-rank-infomation-card__pickup-text {
  font-size: 1.4rem;
  text-align: left;
}

.p-menkuru-school-section {
  background-color: #FEF7EC;
  text-align: center;
}

.p-menkuru-school-section__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-menkuru-school-section__inner {
    max-width: 1140px;
    padding: 80px 40px 80px;
  }
}

.p-menkuru-school-section .c-heading-content-pattern03 {
  margin-bottom: 20px;
  letter-spacing: .25em;
}

@media all and (min-width: 768px) {
  .p-menkuru-school-section .c-heading-content-pattern03 {
    margin-bottom: 30px;
    letter-spacing: .3em;
  }
  .p-menkuru-school-section .c-heading-content-pattern03__name {
    font-size: 1.6rem;
    letter-spacing: .05em;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-school-section .c-heading-content-pattern03 {
    margin-bottom: 10px;
    line-height: 1.4;
  }
}

.p-menkuru-school-section .sp {
  max-width: 255px;
}

@media all and (min-width: 768px) {
  .p-menkuru-school-section .sp {
    display: none;
  }
}

.p-menkuru-school-section .p-menkuru-button {
  margin: 32px 0 56px;
}

@media all and (min-width: 768px) {
  .p-menkuru-school-section .p-menkuru-button {
    margin: 32px 0;
  }
}

@media all and (min-width: 768px) {
  .p-menkuru-school-section .p-menkuru-button .c-button-blue {
    min-width: 680px;
  }
}

@media all and (max-width: 767px) {
  .p-menkuru-school-section .p-menkuru-button .c-button-blue__inner {
    font-size: 1.6rem;
  }
}

.p-menkuru-school-section .p-menkuru-special-button {
  margin-top: 80px;
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  .p-menkuru-school-section .p-menkuru-special-button {
    margin-top: 40px;
  }
}

.p-menkuru-school-section .p-menkuru-special-button .c-button-special__balloon span {
  min-width: 176px;
}

.p-menkuru-school-section .p-menkuru-special-button .c-button-special__inner {
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media all and (max-width: 767px) {
  .p-menkuru-school-section .p-menkuru-special-button .c-button-special__inner {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}

/* shop
---------------------------------------------------------- */
.p-shop-special-button {
  margin-bottom: 36px;
}

@media all and (min-width: 768px) {
  .p-shop-special-button {
    margin-bottom: 80px;
  }
}

@media all and (max-width: 767px) {
  .p-shop-special-button .c-button-special__inner {
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
  }
}

@media all and (max-width: 767px) {
  .p-shop-special-button .c-button-special__balloon span {
    padding: 7px 10px;
  }
}

@media all and (min-width: 768px) {
  .p-shop-special-button .c-button-special__balloon span .u-sp-hide {
    display: inline;
  }
}

.p-shop-text {
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.7;
}

@media all and (max-width: 767px) {
  .p-shop-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.p-shop-point-list {
  font-size: 1.6rem;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-shop-point-list {
    line-height: 1.7;
  }
}

@media all and (max-width: 767px) {
  .p-shop-point-list {
    font-size: 1.4rem;
  }
}

.p-shop-point-list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 12px;
}

@media all and (max-width: 767px) {
  .p-shop-point-list li {
    padding-left: 0;
  }
}

.p-shop-point-list li:before {
  content: "\025cf";
  position: absolute;
  left: 0;
  padding-top: 2px;
  color: #0045AD;
  font-size: 1.2rem;
}

@media all and (max-width: 767px) {
  .p-shop-point-list li:before {
    position: relative;
    padding-right: 1px;
    padding-top: 0;
    font-size: 1.4rem;
  }
}

.p-shop-caution {
  font-size: 1.2rem;
  color: #8A939D;
}

.p-shop-introduction__inner {
  padding: 32px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-shop-introduction__inner {
    max-width: 1040px;
    padding: 80px 40px 80px;
    padding-top: 32px;
  }
}

.p-shop-introduction__title {
  margin-bottom: 10px;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  letter-spacing: .05em;
}

@media all and (min-width: 768px) {
  .p-shop-introduction__title {
    margin-bottom: 24px;
    font-size: 36px;
  }
}

@media all and (max-width: 767px) {
  .p-shop-introduction__title {
    line-height: 1.4;
  }
}

@media all and (max-width: 767px) {
  .p-shop-introduction__title .pc {
    display: none;
  }
}

.p-shop-introduction .p-shop-special-button {
  margin-top: 80px;
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  .p-shop-introduction .p-shop-special-button {
    margin-top: 48px;
  }
}

.p-shop-area {
  background-color: #FEF7EC;
}

.p-shop-area__inner {
  padding: 32px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-shop-area__inner {
    max-width: 1120px;
    padding: 72px 40px 80px;
  }
}

.p-shop-area .c-heading-content-pattern03 {
  margin-bottom: 6px;
}

@media all and (min-width: 768px) {
  .p-shop-area .c-heading-content-pattern03 {
    margin-bottom: 24px;
  }
}

.p-shop-area .c-heading-content-pattern03 .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-shop-area .c-heading-content-pattern03 .pc {
    display: inline;
  }
}

.p-shop-area .c-heading-content-pattern03__title {
  letter-spacing: .07em;
}

.p-shop-area .p-shop-text {
  text-align: left;
  margin-bottom: 16px;
}

@media all and (min-width: 768px) {
  .p-shop-area .p-shop-text {
    margin-bottom: 70px;
    text-align: center;
  }
}

.c-map-area {
  display: flex;
  height: 560px;
  background: url(../image/shop/img_shop_map_01@2x.png) no-repeat 58% 0%;
  background-size: 380px;
}

@media all and (max-width: 767px) {
  .c-map-area {
    display: none;
  }
}

.c-map-area__left {
  max-width: 154px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-flow: column;
}

.c-map-area__left .c-map-area-region {
  margin-top: 16px;
}

.c-map-area__right {
  flex: 1 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media all and (-ms-high-contrast: none) {
  .c-map-area__right {
    justify-content: flex-start;
  }
}

.c-map-area__right__group {
  flex: 1 1;
  max-width: 154px;
  margin-left: 24px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}

.c-map-area__right__group.group01 {
  justify-content: space-between;
}

.c-map-area__right__group .c-map-area-region + .c-map-area-region {
  margin-top: 24px;
}

@media all and (min-width: 992px) {
  .c-map-area {
    height: 638px;
    background-size: 489px;
    background-position-x: 48.5%;
  }
  .c-map-area__left {
    max-width: 208px;
  }
  .c-map-area__left .c-map-area-region {
    margin-top: 30px;
  }
  .c-map-area__right__group {
    max-width: 208px;
    margin-left: 32px;
  }
  .c-map-area__right__group .c-map-area-region + .c-map-area-region {
    margin-top: 32px;
  }
}

@media all and (min-width: 992px) {
  .c-map-area .c-map-area-region.hokkaido {
    position: relative;
    left: -18px;
    top: 10px;
  }
}

.c-map-area-region {
  width: 100%;
  max-width: 154px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  align-self: flex-end;
}

.c-map-area-region__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.c-map-area-region__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.c-map-area-region__list li {
  width: 45%;
  margin-bottom: 8px;
}

.c-map-area-region__list li:nth-child(odd) {
  margin-right: 10%;
}

.c-map-area-region__list li:nth-last-child(1), .c-map-area-region__list li:last-child {
  margin-bottom: 0;
}

.c-map-area-region__list li a {
  position: relative;
  display: block;
  color: #0045AD;
  font-size: 1.2rem;
  font-weight: 700;
  transition: ease opacity .3s;
}

.c-map-area-region__list li a:hover {
  opacity: 0.5;
}

.c-map-area-region__list li a:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 12px;
  height: 12px;
  background: url(../image/shop/img_shop_map_arrow_01@2x.png) no-repeat center;
  background-size: 12px;
}

@media all and (min-width: 992px) {
  .c-map-area-region {
    max-width: 208px;
    padding: 12px 24px;
  }
  .c-map-area-region__title {
    font-size: 20px;
  }
  .c-map-area-region__list li {
    width: 40%;
    margin-bottom: 11px;
  }
  .c-map-area-region__list li:nth-child(odd) {
    margin-right: 20%;
  }
  .c-map-area-region__list li:nth-last-child(2), .c-map-area-region__list li:last-child {
    margin-bottom: 0;
  }
  .c-map-area-region__list li a {
    font-size: 1.4rem;
  }
  .c-map-area-region__list li a:after {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }
}

@media all and (min-width: 768px) {
  .c-area-select {
    display: none;
  }
}

.c-area-select__inner {
  padding: 6px 8px 20px;
  background: #fff;
}

.c-area-select__title {
  padding: 8px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  background: #0045AD;
  color: #fff;
}

.c-area-select__form {
  padding: 20px 8px 0;
}

.c-area-select__button {
  margin-top: 20px;
}

.c-area-select__button .c-button-blue__inner {
  font-size: 1.8rem;
}

.p-shop-find__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-shop-find__inner {
    max-width: 1140px;
    padding: 80px 40px 80px;
  }
}

.p-shop-find .c-heading-content-pattern03 {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-shop-find .c-heading-content-pattern03 {
    margin-bottom: 60px;
  }
}

.p-shop-find .c-heading-content-pattern03 .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-shop-find .c-heading-content-pattern03 .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-shop-find .c-heading-content-pattern03__name {
    font-size: 1.7rem;
    line-height: 1.2;
  }
}

.p-shop-find .c-heading-content-pattern03__title {
  letter-spacing: .07em;
}

@media all and (min-width: 768px) {
  .p-shop-find .c-heading-content-pattern03__title {
    font-size: 3.9rem;
    letter-spacing: 0;
    line-height: 1.2;
  }
}

.p-shop-find .p-shop-logo {
  margin-bottom: 18px;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-logo {
    margin-bottom: 40px;
  }
}

.p-shop-find .p-shop-logo img {
  max-width: 337px;
}

.p-shop-find .p-shop-text {
  max-width: 970px;
  margin: 0 auto;
  margin-bottom: 32px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-text {
    margin-bottom: 68px;
    text-align: center;
    letter-spacing: .06em;
  }
}

@media all and (max-width: 767px) {
  .p-shop-find .pc {
    display: none;
  }
}

.p-shop-find .p-shop-caution {
  margin-top: 2px;
}

.p-shop-find .p-news-detail-article-card__title:before {
  background-image: url(../image/shop/img_shop_store_icon_01@2x.png);
}

@media all and (min-width: 768px) {
  .p-shop-find .p-news-detail-article-card__title {
    width: 52.7%;
    margin-bottom: 24px;
  }
}

@media all and (min-width: 768px) {
  .p-shop-find .p-news-detail-article-card__image {
    width: 47.3%;
    padding-top: 6px;
  }
}

@media all and (min-width: 768px) {
  .p-shop-find .p-news-detail-article-card__content {
    width: 52.7%;
    letter-spacing: .05em;
  }
}

.p-shop-find .p-shop-detail-article-section {
  margin-bottom: 40px;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-detail-article-section {
    margin-bottom: 60px;
  }
}

.p-shop-find .p-shop-detail-article-section:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-detail-article-section:nth-child(even) .p-news-detail-article-card__title {
    float: left;
    padding-right: 40px;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(even) .p-news-detail-article-card__content {
    padding-left: 1em;
    padding-right: 48px;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(even) .p-news-detail-article-card__image {
    float: right;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(odd) .p-news-detail-article-card__title {
    float: right;
    padding-left: 120px;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(odd) .p-news-detail-article-card__title::before {
    left: 40px;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(odd) .p-news-detail-article-card__content {
    float: right;
    padding-left: 56px;
    padding-right: 0;
  }
  .p-shop-find .p-shop-detail-article-section:nth-child(odd) .p-news-detail-article-card__image {
    float: left;
  }
}

.p-shop-find .p-shop-button .c-button-blue {
  max-width: 484px;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-button .c-button-blue__inner {
    font-size: 2.2rem;
  }
}

.p-shop-find .p-shop-head {
  max-width: 1040px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head {
    display: flex;
    margin-bottom: 80px;
    border-radius: 12px;
    overflow: false;
  }
}

.p-shop-find .p-shop-head__image .sp {
  width: 100%;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head__image {
    width: 48%;
    background: url(../image/shop/img_shop_store_main_01_pc@2x.jpg) no-repeat center/cover;
  }
  .p-shop-find .p-shop-head__image .sp {
    display: none;
  }
}

.p-shop-find .p-shop-head__content {
  padding: 24px 24px 20px;
  background: #0045AD;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head__content {
    flex: 1 1;
    padding: 37px 40px;
  }
}

.p-shop-find .p-shop-head__content .logo {
  margin-bottom: 10px;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head__content .logo {
    margin-bottom: 36px;
  }
}

.p-shop-find .p-shop-head__content .logo img {
  width: 241px;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head__content .logo img {
    width: 337px;
  }
}

.p-shop-find .p-shop-head__content .description {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .05em;
  color: #fff;
}

@media all and (min-width: 768px) {
  .p-shop-find .p-shop-head__content .description {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

/* business
---------------------------------------------------------- */
.p-business-read {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-business-read {
    font-size: 2.4rem;
  }
}

.p-business-read em {
  color: #FF6670;
  font-weight: bold;
  font-style: normal;
}

.p-business-read .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-business-read .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-business-read .sp {
    display: none;
  }
}

.p-business-text {
  font-size: 1.6rem;
}

.p-business-caution {
  padding: 16px;
  font-size: 1rem;
  border: 2px solid #F3F4F5;
  border-radius: 8px;
  color: #8A939D;
}

.p-business-caution.white {
  border: 2px solid #fff;
}

.p-business-caution.bordernone {
  padding: 0;
  border: none;
}

@media all and (min-width: 768px) {
  .p-business-caution {
    padding: 20px;
    font-size: 1.2rem;
    border-radius: 12px;
  }
}

.p-business-mainvisual {
  max-width: 1080px;
  margin: 0 auto 20px;
}

@media all and (min-width: 992px) {
  .p-business-mainvisual {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
  }
}

.p-business-mainvisual .pc {
  display: none;
}

@media all and (min-width: 768px) {
  .p-business-mainvisual .pc {
    display: inline;
  }
}

@media all and (min-width: 768px) {
  .p-business-mainvisual .sp {
    display: none;
  }
}

.p-business-reason__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-business-reason__inner {
    padding: 80px 40px 80px;
    max-width: 1140px;
  }
}

@media all and (min-width: 768px) {
  .p-business-reason .c-heading-content-pattern03 .sp {
    display: none;
  }
}

.p-business-reason .p-business-read {
  text-align: center;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-business-reason .p-business-read {
    text-align: left;
    margin-bottom: 40px;
  }
}

.p-business-reason .p-business-caution {
  margin-top: 16px;
}

.p-business-reason-section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

@media all and (max-width: 767px) {
  .p-business-reason-section {
    margin-bottom: 40px;
  }
}

.p-business-reason-section__content {
  width: 100%;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-business-reason-section__content {
    width: 50%;
    margin-bottom: 0;
    padding-right: 20px;
  }
}

@media all and (min-width: 768px) {
  .p-business-reason-section__content.comicomi {
    padding-top: 24px;
  }
}

.p-business-reason-section__image {
  width: 100%;
}

@media all and (min-width: 768px) {
  .p-business-reason-section__image {
    width: 50%;
    padding-left: 20px;
  }
}

.p-business-plan {
  background-color: #FEF7EC;
}

.p-business-plan__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-business-plan__inner {
    max-width: 1140px;
    padding: 80px 40px 80px;
  }
}

.p-business-plan .c-intro-pack {
  background: #fff;
}

@media all and (max-width: 767px) {
  .p-business-plan .c-intro-pack__content {
    padding: 16px 16px 24px;
  }
}

@media all and (max-width: 767px) {
  .p-business-plan .c-intro-pack-figure-silver__item.sp-margin-none {
    margin-bottom: 0;
  }
}

@media all and (max-width: 767px) {
  .p-business-plan .c-intro-pack-figure-white__item.sp-margin-none {
    margin-bottom: 0;
  }
}

.p-business-plan .c-intro-pack-figure-silver-description {
  padding: 16px;
}

.p-business-flow__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-business-flow__inner {
    padding: 80px 40px 80px;
    max-width: 960px;
  }
}

.p-business-flow .c-heading-content-pattern03 {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .p-business-flow .c-heading-content-pattern03 {
    margin-bottom: 40px;
  }
}

.p-business-flow .p-business-text {
  text-align: center;
  margin-bottom: 80px;
}

@media all and (min-width: 768px) {
  .p-business-flow .p-business-text {
    text-align: left;
    margin-bottom: 40px;
  }
}

.p-business-flow .c-flow-use-step__content {
  background: #FEF7EC;
}

.p-business-faq {
  background-color: #FEF7EC;
}

.p-business-faq__inner {
  padding: 40px 16px 40px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-business-faq__inner {
    max-width: 1140px;
    padding: 80px 40px 80px;
  }
}

.p-business-faq__link {
  min-width: 204px;
  position: relative;
  display: inline-block;
  margin-top: 16px;
  margin-right: 16px;
  padding: 8px 24px;
  padding-right: 40px;
  border-radius: 100px;
  background: #0045AD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  transition: ease opacity .3s;
}

.p-business-faq__link:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 16px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) no-repeat center/16px;
}

.p-business-faq__link:hover {
  opacity: 0.5;
}

.p-faq-list__answer .p-business-faq__link {
  text-decoration: none;
}

.p-business-voice__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-business-voice__inner {
    padding: 80px 40px 80px;
    max-width: 960px;
  }
}

/* payment
---------------------------------------------------------- */
.p-payment-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-payment-section__inner {
    padding: 80px 40px 80px;
    max-width: 940px;
  }
}

.p-payment-section__title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .p-payment-section__title {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
}

.p-payment-section__title:first-child {
  margin-top: 0;
}

.p-payment-section.beige {
  background-color: #FEF7EC;
}

.p-payment-section a {
  position: relative;
  margin-right: 0.1em;
}

.p-payment-section a[target="_blank"] {
  padding-right: 16px;
}

.p-payment-section a[target="_blank"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url("../image/common/ico/ico_blank_02@2x.png") top left no-repeat;
  background-size: contain;
}

.p-payment-section .c-law-table td {
  background: #fff;
}

/* schoollist
---------------------------------------------------------- */
.p-schoollist-section {
  text-align: center;
}

.p-schoollist-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-schoollist-section__inner {
    padding: 72px 40px 80px;
    max-width: 940px;
  }
}

/* sitemap
---------------------------------------------------------- */
.c-heading-band-sitemap {
  padding: 16px 16px;
  max-width: 1080px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap {
    padding: 40px 40px;
  }
}

@media all and (min-width: 992px) {
  .c-heading-band-sitemap {
    margin-top: 40px;
  }
}

@media all and (max-width: 767px) {
  .c-heading-band-sitemap {
    margin-top: 12px;
  }
}

.c-heading-band-sitemap__inner {
  position: relative;
  padding: 0 10px;
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap__inner {
    padding: 0 40px;
  }
}

.c-heading-band-sitemap__inner::before, .c-heading-band-sitemap__inner::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: url("../image/sitemap/ico_heading_line_sitemap.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap__inner::before, .c-heading-band-sitemap__inner::after {
    width: 80px;
    height: 8px;
  }
}

@media all and (max-width: 767px) {
  .c-heading-band-sitemap__inner::before, .c-heading-band-sitemap__inner::after {
    display: none;
  }
}

.c-heading-band-sitemap__inner::before {
  bottom: 0;
  right: 40px;
  transform: rotate(180deg);
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap__inner::before {
    bottom: 9px;
    right: 26.7%;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-heading-band-sitemap__inner::before {
    right: 20%;
  }
}

.c-heading-band-sitemap__inner::after {
  top: 0;
  left: 40px;
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap__inner::after {
    top: 6px;
    left: 26.7%;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-heading-band-sitemap__inner::after {
    left: 20%;
  }
}

.c-heading-band-sitemap__title {
  color: #1F2933;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .09em;
}

@media all and (min-width: 768px) {
  .c-heading-band-sitemap__title {
    font-size: 3.4rem;
    letter-spacing: 0.1em;
  }
}

.p-sitemap-section__inner {
  padding: 16px 16px 20px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-sitemap-section__inner {
    max-width: 1100px;
    padding: 36px 16px 40px;
  }
}

.c-sitemap-item {
  margin: 0 0 60px;
}

@media all and (min-width: 768px) {
  .c-sitemap-item {
    display: inline-block;
    width: 30%;
    margin: 0 1.5% 48px;
    vertical-align: top;
  }
}

.c-sitemap-item__title {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  font-weight: bold;
  color: #0045AD;
  font-size: 19px;
  letter-spacing: .05em;
  line-height: 1.3;
  border-bottom: 2px dashed #E5E5E5;
}

@media all and (min-width: 768px) {
  .c-sitemap-item__title {
    font-size: 24px;
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
}

.c-sitemap-item__title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 12px;
  background: url(../image/common/ico/ico_triangle_blue_under_01@2x.png) no-repeat center/10px;
  transform: rotateZ(-90deg);
}

@media all and (max-width: 767px) {
  .c-sitemap-item__title:before {
    top: 4px;
  }
}

.c-sitemap-item__title .icon {
  margin-right: .3em;
  vertical-align: baseline;
}

@media all and (max-width: 767px) {
  .c-sitemap-item__title .icon {
    width: 19px;
    vertical-align: -2px;
  }
}

.c-sitemap-item__title a:hover {
  text-decoration: underline;
}

@media all and (max-width: 767px) {
  .c-sitemap-item__list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.c-sitemap-item__listItem {
  font-size: 1.6rem;
}

@media all and (max-width: 767px) {
  .c-sitemap-item__listItem {
    width: 50%;
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .c-sitemap-item__listItem:nth-last-child(odd) {
    padding-left: 8px;
  }
  .c-sitemap-item__listItem:nth-last-child(even) {
    padding-right: 8px;
  }
}

.c-sitemap-item__listItem a:hover {
  text-decoration: underline;
}

/* error
---------------------------------------------------------- */
.p-error-text {
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .p-error-text {
    font-size: 1.4rem;
  }
}

.p-error-read {
  margin-bottom: 10px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
}

@media all and (min-width: 768px) {
  .p-error-read {
    margin-bottom: 32px;
    font-size: 2.4rem;
    letter-spacing: .06em;
  }
}

.p-error-read em {
  color: #FF6670;
  font-weight: bold;
  font-style: normal;
}

.p-error-button {
  margin-top: 40px;
}

@media all and (min-width: 768px) {
  .p-error-button {
    margin-top: 80px;
  }
}

.c-heading-band-base--error {
  background: #F5F6F6;
  padding: 7px 40px;
}

@media all and (max-width: 767px) {
  .c-heading-band-base--error {
    margin-top: 1px;
  }
}

@media all and (min-width: 768px) {
  .c-heading-band-base--error {
    padding: 10px 40px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-heading-band-base--error {
    margin-top: 1px;
  }
}

.c-heading-band-base--error .c-heading-band-base__title {
  color: #00B6FC;
  font-family: 'Barlow', sans-serif;
}

.c-heading-band-base--error .c-heading-band-base__title .error-code {
  position: relative;
  display: inline-block;
  font-size: 6.4rem;
  letter-spacing: 0.1em;
}

@media all and (max-width: 767px) {
  .c-heading-band-base--error .c-heading-band-base__title .error-code {
    font-size: 4.4rem;
  }
}

.c-heading-band-base--error .c-heading-band-base__title .error-code:before {
  content: "";
  position: absolute;
  width: 39px;
  left: -48px;
  top: 0;
  bottom: 0;
  background: url(../image/common/ico/ico_error_barrier.png) no-repeat center/39px;
  background-position-y: 48%;
}

@media all and (max-width: 767px) {
  .c-heading-band-base--error .c-heading-band-base__title .error-code:before {
    width: 30px;
    left: -49px;
    background-size: 30px;
    background-position-y: 46%;
  }
}

.c-heading-band-base--error .c-heading-band-base__title .error-code:after {
  content: "";
  position: absolute;
  width: 32px;
  right: -30px;
  top: 0;
  bottom: 0;
  background: url(../image/common/ico/ico_error_cone.png) no-repeat center/32px;
}

@media all and (max-width: 767px) {
  .c-heading-band-base--error .c-heading-band-base__title .error-code:after {
    width: 23px;
    right: -38px;
    background-size: 23px;
  }
}

.c-heading-band-base--error .c-heading-band-base__title .error-detail {
  display: block;
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .c-heading-band-base--error .c-heading-band-base__title .error-detail {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
}

.c-heading-band-base--error .c-heading-band-base__inner {
  padding: 7px 40px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base--error .c-heading-band-base__inner {
    padding: 10px 40px;
  }
}

.c-heading-band-base--error .c-heading-band-base__inner::before {
  background-image: url(../image/common/ico/ico_heading_line_blue.svg);
  right: 16px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base--error .c-heading-band-base__inner::before {
    top: 32px;
    right: 122px;
  }
}

.c-heading-band-base--error .c-heading-band-base__inner::after {
  background-image: url(../image/common/ico/ico_heading_line_blue.svg);
  left: 16px;
}

@media all and (min-width: 768px) {
  .c-heading-band-base--error .c-heading-band-base__inner::after {
    bottom: 30px;
    left: 118px;
  }
}

.p-error-section {
  text-align: center;
}

.p-error-section__inner {
  padding: 40px 16px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .p-error-section__inner {
    padding: 72px 40px 80px;
    max-width: 940px;
  }
}

/* ==========================================================
 Utility
========================================================== */
@media all and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

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

@media all and (min-width: 768px) {
  .u-sp-hide {
    display: inline-block;
  }
}

.u-sp-hide-inline {
  display: none;
}

@media all and (min-width: 768px) {
  .u-sp-hide-inline {
    display: inline;
  }
}

.u-sp-hide-flex {
  display: none;
}

@media all and (min-width: 768px) {
  .u-sp-hide-flex {
    display: flex;
  }
}

.u-bold {
  font-weight: bold;
}

.hidden {
  display: none;
}

.u-loading-overlay {
  width:100%;height:100%;
  filter:alpha(opacity=50);
  -moz-opacity:0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  background:#000;
  position:absolute;
  top:0;left:0;
  z-index:3000;
  display:none;
}

.u-loading-box {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background:#fff;
  width:210px;
  height:120px;
  position:fixed;
  z-index:5000;
  display:none;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.u-loading-box .loading-content {
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  flex-flow: column;
  padding:10px;
  margin-left: 25%;
  color:#555;
  font-size:12px;
}

.u-loading-box .u-loading-content p {
  font-weight:700;
  margin:5px 0px 0px 0px;
  padding:0px 0px 0px 0px;
}

/* エラー画面用  */

@media all and (min-width: 992px) {
  .l-wrapper--errors .l-header {
    height: 90px;
  }
}
.l-wrapper--errors .l-footer-bottom__inner {
  padding: 20px 20px 25px;
}

.l-wrapper--errors .p-pagetop-button {
  bottom: 7px;
}

.p-form-section--errors {
  padding: 40px 16px 0;
}

@media all and (min-width: 768px) {
  .p-form-section--errors {
    max-width: 940px;
    margin: 0 auto;
    padding: 60px 40px 100px;
  }
}
.p-form-section--errors .p-form-section--errors--inner {
  padding-bottom: 30px;
}

@media all and (min-width: 768px) {
  .p-form-section--errors.p-form-section--errors--inner {
    padding-bottom: 60px;
  }
}

.p-form-section--errors .p-form-section--errors--inner p {
 font-size: 1.8rem;
 line-hight: 1.6;
 text-align: center;
}




/* スタイル直接指定用class */
.pad-bottom-10 {
  padding-bottom: 10px;
}
.flex { 
  display: flex;
  align-items: center;
}

@media all and (max-width: 767px){
 .wem-docreq-no_item {
  /*display: block;
  max-width: 300px;*/
  
  margin-top: 30px;
 }
 .wem-docreq-no_item .c-form-set__input.c-form-input-text {
  margin-bottom: 24px;
 } 
}
.wem-docreq-no_item .c-form-set__input.c-form-input-text {
 max-width: 100%;
}

@media all and (max-width: 767px){
  #reqcarcd-err, #requestcd-err {
  top: -32px;
  right: 26px;
 }
}

@media all and (max-width: 767px){
  .c-form-number__item:first-child::after {
   right: 5px;
  }
}

.is-hidden{
  display:none;
}



.c-button-nevi {
  position: relative;
  display: block;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-button-nevi:hover .c-button-nevi__inner {
    transform: translate3d(-2px, -2px, 0);
  }
  .c-button-nevi:hover::after {
    transform: translate3d(2px, 2px, 0);
  }
}

.c-button-nevi::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: url("../image/common/bg/bg_stripe_45deg_blue_01@2x.png") top left repeat;
  background-size: 5px 5px;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-button-nevi::after {
    border-radius: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-button-nevi {
    max-width: 400px;
  }
}

.c-button-nevi__inner {
  position: relative;
  display: block;
  background-color: #0045AD;
  border-radius: 8px;
  border: 3px solid #0045AD;
  font-size: 2.0rem;
  font-weight: bold;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-button-nevi__inner {
    border-radius: 12px;
    font-size: 2.4rem;
  }
}

.c-button-nevi__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_white_right_02.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-button-nevi__inner::before {
    right: 26px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-button-nevi__inner > span {
  display: block;
  padding: 19px 38px;
  text-align: center;
  line-height: 1.2;
}

@media all and (min-width: 768px) {
  .c-button-nevi__inner > span {
    padding: 21px 48px;
  }
}

@media all and (min-width: 768px) {
  .c-button-nevi.c-button-nevi--wide {
    max-width: 680px;
  }
}

.c-button-nevi.c-button-nevi--medium .c-button-nevi__inner {
  font-size: 1.8rem;
}

@media all and (min-width: 768px) {
  .c-button-nevi.c-button-nevi--medium .c-button-nevi__inner {
    font-size: 2.4rem;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-button-nevi__inner > span {
    padding: 24px 50px 18px;
  }
  *::-ms-backdrop, .c-button-nevi__inner::before {
    margin-top: -11px;
  }
}

.c-form-select-modal__inner_docreq {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 50px 12px 16px;
  border: none;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.55rem;
  font-weight: bold;
  flex-wrap: wrap;
}



.c-estimate-search-button {
  display: none;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background-color: #0045AD;
  border: 2px solid #0045AD;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-estimate-search-button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    max-width: 155px;
  }
}

.c-estimate-search-button__inner {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #0045AD;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .c-estimate-search-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}



.pcex {
  display: inline-block;

}
.iconQuestion {
    width: 13px;
    height: 13px;
    background-color: #0045AD;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    /* margin: 0 4px 0 4px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    line-height: 1;
    position: relative;
    top: 2px;
}

.iconQuestion img {
    width: 5px;
    height: auto;
    margin: auto;
    position: relative;
    top: 2px;
    vertical-align: top;
}


.iconQuestion .Tip {
    position: absolute;
    bottom: 80%;
    left: 0;
    background-color: #0045AD;
    color: #fff;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.5;
    z-index: 10;
    border-radius: 10px 10px 10px 0;
    padding: 14px 12px;
    opacity: 0;
    transition: all 0.25s ease;
    will-change: bottom;
    text-align: left;
    pointer-events: none;
    
}

.iconQuestion:hover .Tip{
	opacity: 1;
	bottom: 100%;
}
.iconQuestion .Tip:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 3px solid transparent;
    border-bottom: 6px solid transparent;
    border-top: 6px solid #0045AD;
    border-left: 3px solid #0045AD;
    position: absolute;
    top: 95%;
    left: 0;
}
.Tip_sp{
    display: none;
}
@media all and (max-width: 767px){
    .pcex {
        display: none;
    }
    .Tip_sp{
        display: inline-block;
    }
}

.Tip_sp.safety-option {
  padding-top: 5px;
  padding-left: 4px;
}


.cls_entry_link{
    font-size: large;
    color: #FF6670;
    font-weight: bold;
}

.p-heading-form__required.tips:after {
	content: "※";
	font-size: 0.7em;
	vertical-align: text-top;
}

#a8img {
  height: 0;
  width: 0;
}

@media all and (min-width: 768px) {
.c-estimate-search-reset-button {
	display: none;}

.c-estimate-search-clear {
    padding: 0;
    text-align: center;}

.c-estimate-search-button {
    background-color: #f3f4f5;
    border: 2px solid #f3f4f5;}

.c-estimate-search-button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    max-width: 120px;}

.c-estimate-search-button__inner {
	display: block;
	width: 100%;
 	height: 48px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: url(../image/common/ico/ico_search_grass_blue_01@2x.png) center 87% no-repeat;
	background-size: 30px;
	background-color:#ff6670;
 	border: none;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	cursor: pointer;
	padding: 0 0 18px 6px;
	letter-spacing: 8px;}
}
/*! sp
---------------------------------------------------------- */
.c-estimate-search-foot__button {
    background-color: #ff6670;}

.school_info {
	font-size: 2em;
}

.school_info #map {
	height: 400px;
	width: 80%;
	margin: 30px auto 30px ;
	
}

.school_info #map iframe {
	width: 100%;
	height: 100%;
}


/*



@media all and (min-width: 768px) {
  .c-estimate-search-heading__accordion-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-search-heading__accordion-button .close {
  display: none;
}

@media all and (min-width: 768px) {
  .c-estimate-search-heading__accordion-button {
    display: block;
  }
}

.c-estimate-search-heading__accordion-button::before, .c-estimate-search-heading__accordion-button::after {
  overflow: hidden;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 3px;
  margin-top: -2px;
  border-radius: 4px;
  background-color: #0045AD;
}

.c-estimate-search-heading__accordion-button::after {
  transform: rotate(90deg);
}

.c-estimate-search-heading__accordion-button.is-open::after {
  display: none;
}

.c-estimate-search-heading__accordion-button.is-open .close {
  display: block;
}

.c-estimate-search-heading__accordion-button.is-open .open {
  display: none;
}

.c-estimate-search-body {
  padding: 0 16px 0;
}


*/
@media all and (max-width: 768px) {
	.accordion-title-arrow{
	  position: relative;
	}

	.accordion-title-arrow:after {
	  content: "";
	  position: absolute;
	  right: 15px;
	  top: 38%;
	  transition: all 0.2s ease-in-out;
	  display: block;
	  width: 8px;
	  height: 8px;
	  border-top: solid 2px #fff;
	  border-right: solid 2px #fff;
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg);
	}

	.accordion-title-arrow.is-open:after {
	  -webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	  top: 45%;
	}
}
/*! Insert a gray button in itemNav 202108
---------------------------------------------------------- */
.c-business-link-button2 {
  position: relative;
  display: block;
  background-color: #F3F4F5;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 28px;
  color: #0045AD;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 26px;
}

@media all and (min-width: 768px) {
  .c-business-link-button2 {
    min-width: 320px;
    font-size: 2.0rem;
  }
}

.c-business-link-button2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url(../image/common/ico/ico_circle_white_right_02.svg) top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-business-link-button2:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.p-car-inspection-detail-button-special .c-button-special__balloon span {
  min-width: 176px;
  bottom: 8px;
}

.p-car-inspection-detail-button-special .c-button-special__inner {
  line-height: 1.4;
  letter-spacing: 0.1em;
}

@media all and (max-width: 767px) {
  .p-car-inspection-detail-button-special .c-button-special__inner {
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
  }
}

.p-form-section--errors .p-form-section--errors--inner .p-error-text2 {
  font-size: 1.6rem;
  letter-spacing: .05em;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .p-form-section--errors .p-form-section--errors--inner .p-error-text2 {
    font-size: 1.4rem;
  }
}

.c-usedcar_link-content {
  position: relative;
}

@media all and (min-width: 768px) {
  .c-usedcar_link-content {
    max-width: 1080px;
    margin: 0 auto;
  }
}
.c-usedcar-link-button2 {
  position: relative;
  display: block;
  background-color: #FF6670;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 20px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-radius: 26px;
  text-align: left;
}

@media all and (min-width: 768px) {
  .c-usedcar-link-button2 {
    max-width: 350px;
    font-size: 1.8rem;
    padding: 12px 24px;
    margin: 0 0 0 auto;
  }
}

.c-usedcar-link-button2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: url("../image/common/ico/ico_circle_blue_right_01.svg") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-usedcar-link-button2:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-usedcar-header {
  display: none;
}

@media all and (min-width: 768px) {
  .c-estimate-result-usedcar-header {
    display: block;
    background: #0045AD;
    border-top: 1px solid #abade0;
    border-botom: 1px solid #abade0;
    color: #fff;
    clear: both;
    overflow: hidden;
    border-radius: 6px;
  }
}

.c-estimate-result-usedcar-header li {
  float: left;
  border-right: 1px solid #abade0;
  text-align: center;
  font-size: 1.6rem;
}

.c-estimate-result-usedcar-header li:nth-child(1) {width: 16%;}
.c-estimate-result-usedcar-header li:nth-child(2) {width: 11%;}
.c-estimate-result-usedcar-header li:nth-child(3) {width: 10%;}
.c-estimate-result-usedcar-header li:nth-child(4) {width: 9%;}
.c-estimate-result-usedcar-header li:nth-child(5) {width: 9%;}
.c-estimate-result-usedcar-header li:nth-child(6) {width: 9%;}
.c-estimate-result-usedcar-header li:nth-child(7) {width: 20%;}
.c-estimate-result-usedcar-header li:nth-child(8) {width: 13%;}


.c-estimate-result-usedcar-header .p-sort-button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transition: opacity 0.4s ease;
}

@media all and (min-width: 768px) {
  .c-estimate-result-usedcar-header .p-sort-button:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.c-estimate-result-usedcar-list_item {
  border-bottom: 1px solid #abade0;
  padding: 5px 0 10px;
  clear: both;
  overflow: hidden;
}

.c-estimate-result-usedcar-list_item .c-usedcar-item {
  margin-bottom: 10px
}

.c-estimate-result-usedcar-list_item .c-usedcar-info {
  float: left;
  width: 100%;
  padding: 10px;
}

.c-usedcar-infomation-card__image {
  text-align: center;
}

.c-estimate-result-usedcar-list_item .c-usedcar-info img {
  vertical-align: middle;
  padding-right: 6px;
  max-width: 80%;
  height: 200px;
  object-fit: contain;
}

@media all and (min-width: 768px) {
  .c-estimate-result-usedcar-list_item .c-usedcar-info {
    float: left;
    width: 16%;
    padding: 0;
  }
  .c-estimate-result-usedcar-list_item .c-usedcar-info img {
    vertical-align: middle;
    padding: 0;
    max-width: 90%;
    height: 120px;
    object-fit: contain;
  }
}

.c-estimate-result-usedcar-list_item .c-usedcar-table-pc {
  display: none;
}
.c-estimate-result-usedcar-list_item .c-usedcar-table-sp {
  width: 90%;
  margin: 10px auto;
  font-size: 1.4rem;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-estimate-result-usedcar-list_item .c-usedcar-table-sp {
    display: none;
  }
  .c-estimate-result-usedcar-list_item .c-usedcar-table-pc {
    display: block;
    max-width: 100%;
    font-size: 1.6rem;
  }
  .c-usedcar-table-pc td:last-child{
    font-size: 1.2rem;
  }
}

.c-estimate-result-usedcar-list_item .c-usedcar-table-sp th {
  border: solid 1px #ccc;
  width: 40%;
  padding: 5px;
}

.c-estimate-result-usedcar-list_item .c-usedcar-table-sp td {
  border: solid 1px #ccc;
  width: 50%;
  border-left: none;
  padding: 10px;
}

.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td {
  text-align: center;
  height: 120px;
  border-right: 1px solid #ccc;
  padding: 0px 6px;
}

.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(1) {width: 11%; border-left: 1px solid #ccc;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(2) {width: 10%;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(3) {width: 9%;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(4) {width: 9%;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(5) {width: 9%;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(6) {width: 20%;}
.c-estimate-result-usedcar-list_item .c-usedcar-table-pc td:nth-child(7) {width: 16%; border-right: none;}

.c-usedcar-title {
  color: #3333FF;
  padding: 5px;
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: underline;
}

@media all and (min-width: 768px) {
  .c-usedcar-title {
    font-size: 2.0rem;
  }
}

.c-usedcar-infomation-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__price {
    font-size: 1.6rem;
  }
}

.c-usedcar-infomation-card__price__month {
  display: block;
  /* 20241210 */
  /* margin-right: 4px; */
  /* line-height: 1.1; */
  margin-right: 0px;
  line-height: 1.2;
}

.c-usedcar-infomation-card__price__month > span {
  display: block;
}

.c-usedcar-infomation-card__price__amount {
  color: #0045AD;
  font-size: 3.8rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__price__amount {
    font-size: 4.2rem;
  }
}

.c-usedcar-infomation-card__price__unit {
  display: block;
  white-space: nowrap;
  margin-left: 4px;
  line-height: 1.5;
}

.c-usedcar-infomation-card__icon {
  display: block;
  margin-top: 4px;
  /* 20241210 */
  /* padding: 4px 0px; */
  padding: 4px 4px;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__icon {
  /* 20241210 */
  /* font-size: 1.4rem; */
    font-size: 1.3rem;
  }
}

.c-usedcar-infomation-card__icon.packGold {
  background-color: #D6BE32;
}

.c-usedcar-infomation-card__icon.packSilver {
  background-color: #A3A3A3;
}

.c-usedcar-infomation-card__icon.packWhite {
  background-color: #EAEAEA;
  color: #16283C;
}

.c-usedcar-infomation-card__icon.lease {
  background-color: #ff6670;
}

.c-usedcar-infomation-card__button-pc {
  display: none;
}

.c-usedcar-infomation-card__button-sp {
    /* 20241210 */
    /* border-radius: 26px; */
    /* font-size: 1.6rem; */
    /* padding: 4px 12px; */
    border-radius: 24px;
    background-color: #FF6670;
    font-size: 1.8rem;
    padding: 10px 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 80%;
    margin: auto;
    /* 20241210追記 */
    margin-bottom: 10px;
}

.c-usedcar-sort {
  display: block;
}
@media all and (min-width: 768px) {
  .c-usedcar-sort {
    display: none;
  }
}
.c-usedcar-sort__input {
  width: 100%;
  height: 56px;
  background-color: #fff;
  padding: 12px 30px 12px 10px;
  border: none;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.2rem;
  font-weight: bold;
}

.c-usedcar-sort-select {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  max-width: 164px;
  margin-right: 16px;
  background-color: #fff;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-usedcar-sort-select {
    max-width: 240px;
    margin-right: 0;
  }
}
.c-usedcar-sort-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__button-sp {
    display: none;
  }
  .c-usedcar-infomation-card__button-pc {
    display: block;
    position: relative;
    border-radius: 26px;
    background-color: #FF6670;
    font-size: 1.4rem;
    padding: 4px 12px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    z-index: 2;
  }
  .c-usedcar-infomation-card__button-pc:hover {
    opacity: 0.75;
    transition: opacity 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}
}

.c-usedcar-infomation-card__button__inner {
  position: relative;
  display: block;
  padding: 0 16px 0 0;
}

.c-usedcar-infomation-card__button__inner::after {
  content: "";
  position: absolute;
  right: 70px;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: url("../image/common/ico/ico_circle_blue_right_01.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__button__inner::after {
    top: 50%;
    right: 7px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}

.c-usedcar-infomation-card__memo {
  /* 20241210 */
  /* font-size: 1.1rem; */
  font-size: 1.2rem;
  font-weight: normal;
  color: #555;
  text-align: center;
}

@media all and (min-width: 768px) {
  .c-usedcar-infomation-card__memo {
    font-size: 1.3rem;
  }
}

.c-usedcar-infomation-card__memo p {
  padding-top: 5px;
}

.c-form-usedcar-estconf__table {
  width: 100%;
  border-left: 1px solid #C4C9CE;
  border-right: 1px solid #C4C9CE;
  border-bottom: 1px solid #C4C9CE;
  border-radius: 6px;
  border-collapse: separate;
}

.c-form-usedcar-estconf__table thead th {
  width: 100%;
  padding: 8px 12px;
  background-color: #0045AD;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-left: 1px solid #0045AD;
  border-right: 1px solid #0045AD;
  text-align: left;
  border-radius: 6px 6px 0 0;
}

@media all and (min-width: 768px) {
  .c-form-usedcar-estconf__table thead th {
    padding: 10px 16px;
    border-radius: 6px 6px 0 0;
  }
}

.c-form-usedcar-estconf__table tbody tr td.nobottom{
  border-bottom: none;
}
.c-form-usedcar-estconf__table tbody tr td {
  padding: 13px 12px;
  font-size: 1.4rem;
  border-bottom: 1px solid #C4C9CE;
  word-break: break-all;
}
.c-form-usedcar-estconf__table tbody tr td:nth-child(2) span#manufact_ym {
  font-size: 1.3rem;
}

@media all and (min-width: 768px) {
  .c-form-usedcar-estconf__table tbody tr td {
    padding: 13px 16px;
    font-size: 1.6rem;
  }
  .c-form-usedcar-estconf__table tbody tr td:nth-child(2) span#manufact_ym {
    font-size: 1.6rem;
  }
}

.c-form-usedcar-estconf__table tbody tr td:nth-child(1) {
  width: 35%;
}

.c-form-usedcar-estconf__table tbody tr td:nth-child(2) {
  text-align: right;
  font-weight: bold;
  width: 35%;
}

.c-form-usedcar-estconf__table tbody tr td:nth-child(3) {
  text-align: right;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-form-usedcar-estconf_table tbody tr td:nth-child(1) {
    width: 40%;
  }
  .c-form-usedcar-estconf__table tbody tr td:nth-child(2) {
    width: 35%;
  }
  .c-form-usedcar-estconf__table tbody tr td:nth-child(3) {
    width: 25%;
  }
}

.wrap-slick {
  max-width: 95%;
  margin: 0 auto;
  
}

@media all and (min-width: 768px) {
  .wrap-slick {
    width: 80%;
    margin: 0 auto;
  }
}

.wrap-slick, .list-slick img{
    height: 300px;
    width: 400px;
    overflow: hidden;
    object-fit: contain;
}
.list-slick.slick-initialized{
    display: block !important;
}
.list-thumb.slick-initialized{
    display: block !important;
    width: 310px;
    margin-left: 40px
}
.car_info .caption {
    height: 48px;
    padding: 10px 10px 0 10px;
    font-size: 1.4rem;
    color: #636363;
    height: auto; 
}

.wrap-thumb {
  width: 400px;
  margin: 0 auto;
}

@media all and (min-width: 768px) {
  .wrap-slick, .list-slick img{
    width: 600px;
    height: 450px;
    overflow: hidden;
    object-fit: contain;
  }
  .list-slick.slick-initialized{
    display: block !important;
    width: 860px;
  }
  .list-thumb.slick-initialized{
    display: block !important;
    width: 580px;
  }
  .car_info .caption {
    width: 600px;
    height: 48px;
    padding: 10px 10px 0 10px;
    font-size: 1.4rem;
    color: #636363;
    height: auto; 
    margin: 0 auto;
  }
  .wrap-thumb {
    width: 630px;
    margin: 0 auto;
  }
}

.list-thumb{
    padding: 7px 12px 0;
}

.car_info{
    position: relative;
    margin: 0 0 0 0;
}

.slick-thumb{
    background: #fafafa;
}

.slick-thumb .item{
	float: left;
	margin: 0 2px 4px;
}

.slick-thumb img{
	width: 49px;
	height: 36px;
	border: 1px solid #fff;
	cursor: pointer;
	object-fit: contain;
}

@media all and (min-width: 768px) {
  .p-form-section-usedcar {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.list-slick .slick-slide {
  height: auto;
  width: 400px;
}

@media all and (min-width: 768px) {
  .list-slick .slick-slide {
    height: auto;
    width: 600px;
  }
}

.list-slick .slick-arrow {
  background-color: #333;
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
}

.list-slick .prev{
  background: url("../image/common/ico/ico_circle_blue_left_01.png") top left no-repeat;
  left: 10px;
}

.list-slick .next {
  background: url("../image/common/ico/ico_circle_blue_right_01.png") top left no-repeat;
  right: -10px;
}

.list-thumb .slick-arrow{
  bottom: -33px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
}

.list-thumb .slick-arrow.prev{
  background: url("../image/common/ico/ico_circle_blue_left_01.png") top left no-repeat;
  left: -30px;
  background-size: 30px;
}

.list-thumb .slick-arrow.next{
  background: url("../image/common/ico/ico_circle_blue_right_01.png") top left no-repeat;
  right: -40px;
  background-size: 30px;
}

@media all and (min-width: 768px) {
  .list-slick .next {
    right: 250px;
  }
  .list-thumb .slick-arrow.prev{
    left: -30px;
  }
  .list-thumb .slick-arrow.next{
    right: -30px;
  }
}

.c-form-usedcar-cp_toi_sp__table {
  display: block;
  width: 100%;
  border: none;
}
.c-form-usedcar-cp_toi_pc__table {
  display: none;
}
@media all and (min-width: 768px) {
  .c-form-usedcar-cp_toi_sp__table {
    display: none;
  }
  .c-form-usedcar-cp_toi_pc__table {
    display: block;
    width: 100%;
    border: none;
    /*margin-left: 10%;*/
  }
}

.c-form-usedcar-cp_toi_pc__table tbody tr td {
  padding-left: 16px;
}

.c-form-usedcar-cp_toi_pc__table tbody tr td div {
  word-break: break-all;
  float: left;
}

.c-form-usedcar-cp_toi_pc__table tbody tr td span{
  /* 20241210 */
  /* padding: 10px; */
}

.c-form-usedcar-cp_toi_sp__table tbody tr td {
  padding-left: 16px;
}

.c-form-usedcar-cp_toi_sp__table tbody tr td div {
  word-break: break-all;
  float: left;
}

.c-form-usedcar-cp_toi_sp__table tbody tr td span{
  padding: 10px;
}

.c-usedcar-terms1 {
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-usedcar-terms1 {
    font-size: 1.6rem;
  }
}

.c-usedcar-terms1 em {
  color: #00B6FC;
  font-style: normal;
  line-height: 1.0;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
}

.c-usedcar-terms1 span {
  padding-right: 0 !important;
}

.c-usedcar-detail__price__amount {
  color: #0045AD;
  font-size: 3.8rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
}

@media all and (min-width: 768px) {
  .c-usedcar-detail__price__amount {
    font-size: 4.2rem;
  }
}

.c-usedcar-detail__price__unit {
  display: block;
  white-space: nowrap;
  margin-left: 0px;
  line-height: 1.5;
  padding: 0!important;
}

.c-usedcar-infomation-card__all__price {
  padding: 5px;
  text-align: center;
  font-size: 1.3rem;
}

.c-usedcar-infomation-card__all__price span {
  padding: 0!important;
}

.c-usedcar-detail_toi {
  background-color: #0045AD;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 2px 19px!important;
  border-radius: 4px;
}

.c-usedcar-detail-toicom {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0;
}
.c-usedcar-detail-toitel {
  color: #FF6670;
  font-size: 3.0rem;
  font-style: normal;
  font-family: 'Barlow', sans-serif;
  line-height: 1.0;
  font-weight: bold;
}
.c-usedcar-detail-toimail {
  color: #FF6670;
  font-size: 1.2rem;
}
@media all and (min-width: 768px) {
  .c-usedcar-detail_toi {
    background-color: #0045AD;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px;
    padding: 0 10px;
    border-radius: 4px;
  }
  .c-usedcar-detail-toicom {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .c-usedcar-detail-toitel {
    color: #FF6670;
    font-size: 3.8rem;
    font-style: normal;
    font-family: 'Barlow', sans-serif;
    line-height: 1.0;
    font-weight: bold;
  }
  .c-usedcar-detail-toimail {
    color: #FF6670;
    font-size: 1.3rem;
  }
}

.c-usedcar-detail__sup {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.c-form-usedcar-caution {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff6670;
  padding: 1.5rem 0;
  margin: 50px;
}

@media all and (min-width: 768px) {
  .c-form-usedcar-caution {
    font-size: 2rem;
    margin: 50px;
  }
}

.used_select_label{
  height:14px;
}

.used_betweent_label {
  height:14px;
  padding: 24px 10px 10px 10px;
}

.slick-thumb img.focus {
  border: 1px solid #ff0000;
}

.usedcar-estconf-radius {
  border-radius: 6px 0 0 0;
}

.c-usedcar-detail_toi__memo {
  font-size: 1.1rem;
  color: #8A939D;
}

.c-usedcar-narrow-down-select {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  max-width: 164px;
  margin-right: 16px;
  background-color: #fff;
  border-radius: 8px;
}

@media all and (min-width: 768px) {
  .c-usedcar-narrow-down-select {
    max-width: 240px;
    margin-right: 0;
  }
}

.c-usedcar-narrow-down-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url("../image/common/ico/ico_triangle_blue_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-usedcar-narrow-down-select__input {
  width: 100%;
  height: 56px;
  background-color: #fff;
  padding: 12px 50px 12px 16px;
  border: none;
  color: #0045AD;
  font-weight: bold;
  font-size: 1.4rem;
  font-weight: bold;
}

@media all and (min-width: 768px) {
  .c-usedcar-narrow-down-select__input {
    height: 48px;
  }
}

.color-ff6670 {
  color:#FF6670;
}

label[for="manufactF"],label[for="manufactT"],label[for="mileageF"],label[for="mileageT"],label[for="area"] {
  padding: 12px 5px;
}

select#manufactF,select#manufactT,select#mileageF,select#mileageT,select#area {
  text-align: center;
  font-size: 1.3rem;
}

label[for="manufactF"] .c-usedcar-narrow-down-select,
label[for="manufactT"] .c-usedcar-narrow-down-select,
label[for="mileageF"] .c-usedcar-narrow-down-select,
label[for="mileageT"] .c-usedcar-narrow-down-select,
label[for="area"] .c-usedcar-narrow-down-select {
  margin-right: 0px;
}

label[for="manufactF"] .c-usedcar-narrow-down-select::after,
label[for="manufactT"] .c-usedcar-narrow-down-select::after,
label[for="mileageF"] .c-usedcar-narrow-down-select::after,
label[for="mileageT"] .c-usedcar-narrow-down-select::after,
label[for="area"] .c-usedcar-narrow-down-select::after {
  right: 0px;
}

.usedcar-search-box #js-estimateCarSearchAccTarget {
  display: none;
}

.p-usedcar-estimate-section-content__inner {
  padding: 30px 16px 20px;
}

.c-usedcar-estimate-other-option {
  margin-top: 15px;
  margin-bottom: 100px;
}

@media all and (min-width: 768px) {
  .p-usedcar-estimate-section-content__inner {
    padding: 60px 0 40px;
    padding-bottom: 160px;
  }
  .c-usedcar-estimate-other-option {
    margin-top: 0;
    margin-bottom: 0;
  }
  .c-usedcar-estimate-other-option .c-form-choice-list__item {
    width: 50% !important;
  }

}

/* ==========================================================
 2022.02.28追加
========================================================== */

/* スマホメニュー追加 */

@media all and (max-width: 767px) {
  .modalMenu {
    display: none!important;
  }
  
  .p-menu-hamburger-navi__item dl {
    background-color: #0045AD;
  }
  .p-menu-hamburger-navi__item dl dt {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 16px 24px 16px 24px;
  }
  .p-menu-hamburger-navi__item dl dd {
    padding: 0 24px;
  }

  .p-menu-hamburger-navi__item dl dd ul.modalMenu_list {
    overflow: hidden;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_list::after {
    display: block;
    content:"";
    width: 33%;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_list li {
    width: 33%;
    margin-bottom: 16px;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_list li a {
    display: block;
    color: #fff;
    background: url("../image/common/ico/ico_arrow_right_white_02@2x.png") top 50% right 0 no-repeat;
    background-size: 12px 16px;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_maker {
    overflow: hidden;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_maker::after {
    display: block;
    content:"";
    width: 25%;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_maker li {
    width: 25%;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_maker li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .p-menu-hamburger-navi__item dl dd ul.modalMenu_maker li a img {
    width: 80%;
    height: auto;
    margin-bottom: 5px;
  }
  
  .p-menu-hamburger-navi__item {
    border-bottom: 1px solid #FEF7EC;
  }

  .p-menu-hamburger-navi__item:last-child {
    border-bottom: none;
  }

  .p-menu-hamburger-navi__link {
    position: relative;
    display: block;
    padding: 16px 47px 16px 24px;
    background-color: #0045AD;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
  }

  .p-menu-hamburger-navi__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 16px;
    margin-top: -8px;
    background: url("../image/common/ico/ico_arrow_right_white_02@2x.png") top left no-repeat;
    background-size: contain;
  }

  .p-menu-hamburger-links {
    display: flex;
    flex-wrap: wrap;
    padding: 0 14px;
    margin: -15px 0 0;
  }

  .p-menu-hamburger-links__item {
    width: 50%;
    padding: 0 14px;
    margin-top: 15px;
  }

  .p-menu-hamburger-links__link {
    position: relative;
    display: block;
    padding: 0 19px 0 0;
    color: #0045AD;
    font-size: 1.4rem;
    font-weight: bold;
  }

  .p-menu-hamburger-links__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 9px;
    height: 12px;
    margin-top: -6px;
    background: url("../image/common/ico/ico_arrow_right_blue_01@2x.png") top left no-repeat;
    background-size: contain;
  }  
  
}

/* メガメニュー（モーダル） */

@media all and (min-width: 768px) {
  .modalMenu {
    display: none;
    position: fixed;
    z-index: 1000; /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-fixed-global-navi__link.modalMenu span::after {
    opacity: 1.0;
  }
  .modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
  }
  .modalWrapper {
    position: absolute;
    top: 156px;
    left: 50%;
    transform:translate(-50%,0%);
    max-width: 1080px;
    width: 90%;
    padding: 40px 50px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .modalContents {
    overflow: hidden;
    padding-top: 5px;
  }
  .modalContents .modalMain {
    width: 58%;
    float: left;
  }
  .modalContents .modalMain .modalTitle {
    font-size: 2.4rem;
    font-weight: bold;
    color: #ffffff;
    padding: 3px 0;
    text-align: center;
    background-color: #0045AD;
    margin-bottom: 10px;
  }
  .modalContents dl {
/*    width: 58%; */
/*    float: left; */
  }
  .modalContents dl dt {
    color: #0045AD;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .modalContents dl dd {
    margin-bottom: 10px
  }

  .modalContents dl dd ul.modalMenu_list {
    overflow: hidden;
    font-size: 1.6rem;
  }
  .modalContents dl dd ul.modalMenu_list li {
    width: 25%;
    float: left;
    margin-bottom: 10px;
  }
  .modalContents dl dd ul.modalMenu_list.col5 li {
    width: 20%;
  }
  .modalContents dl dd ul.modalMenu_maker {
    overflow: hidden;
    font-size: 1.4rem;
/*  font-size: 1.6rem; */
  }
  .modalContents dl dd ul.modalMenu_maker li {
    width: 25%;
    float: left;
    margin-bottom: 10px;
  }
  .modalContents dl dd ul.modalMenu_maker li a {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .modalContents dl dd ul.modalMenu_maker li a img {
    width: 40%;
    height: auto;
    margin-right: 10px;
  }
  .modalContents ul.modalBanner {
    overflow: hidden;
    width: 38%;
    width: 375px;
    float: right;
/*    padding-top: 10px; */
  }
  .modalContents ul.modalBanner li {
    margin-bottom: 20px;
  }
  .modalContents ul.modalBanner li img {
    width: 100%;
    height: auto;
  }
  .modalContents dl dd ul.modalMenu_list li a:hover,
  .modalContents dl dd ul.modalMenu_maker li a:hover {
    text-decoration: underline;
  }
  
  #closeBtn {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin-top: -25px;
    margin-right: -35px;
    float: right;
    cursor: pointer;
  }
  #closeBtn::before, #closeBtn::after { /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px; /* 棒の幅（太さ） */
    height: 30px; /* 棒の高さ */
    background: #777;
  }
  #closeBtn::before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  #closeBtn::after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }  
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .modalWrapper {
    position: absolute;
    top: 143px;
    left: 50%;
    transform:translate(-50%,0%);
    width: 90%;
    height: 80%;
    overflow: auto;
    padding: 40px 50px 20px;
    background-color: #fff;
    border-radius: 20px;
    box-sizing: border-box;
  }
  .modalContents dl {
    width: 100%;
  }
  .modalContents ul.modalBanner {
    overflow: hidden;
    width: 100%;
    float: right;
    padding-top: 10px;
  }
}


.c-form-choice-list__item.is-disabled {
  pointer-events: none;
  cursor: default;
}

.c-form-choice-list__item.is-disabled::after {
  background: url("../image/common/ico/ico_triangle_white_under_01@2x.png") top left no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .c-form-choice-list__item.is-disabled:hover {
    opacity: 1.0;
  }
}

.c-form-choice-list__item.is-disabled .c-form-input-radio__label {
  background-color: #C5C9CE;
  color: #fff;
}

.c-form-choice-list__item.is-disabled .c-form-input-check__label {
  background-color: #C5C9CE;
  color: #fff;
}

@media all and (min-width: 768px) {
  .c-usedcar-plan-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-usedcar-plan-list__item {
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  .c-usedcar-plan-list__item {
    width: 50%;
    padding: 0 20px;
  }
}

.c-usedcar-plan-list__item:last-child {
  margin-bottom: 0;
}

.c-usedcar-plan-card__visual {
  max-width: 40%;
  padding-right: 10px;
  padding-left: 10px;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-usedcar-plan-card__visual {
    flex: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media all and (min-width: 992px) {
  .c-usedcar-plan-card__visual {
    max-width: 100%;
  }
}

.c-usedcar-plan-card__info {
  flex: 1 1;
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .usedcar-plan-card__info {
    width: 100%;
    flex: auto;
  }
}


@media all and (min-width: 768px) {
  .c-usedcar-plan-card-content {
    transform: translate3d(-2px, -2px, 0);
  }
}

.c-usedcar-plan-card-content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: #FEF7EC;
  padding: 16px 16px 16px 16px;
  border-radius: 8px 8px 0 0;
  z-index: 2;
}

@media all and (min-width: 768px) {
  .c-usedcar-plan-card-content {
    border-radius: 12px 12px 0 0;
    padding: 24px 24px 24px;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .c-usedcar-plan-card-content {
    padding: 24px 24px 13px;
  }
}

.c-usedcar-plan-check {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.c-usedcar-plan-check__label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 12px 10px 10px 36px;
  background-color: #FEF7EC;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-usedcar-plan-check__input {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 14px;
  height: 14px;
  margin: -7px 10px 0 0;
  background-color: #fff;
  border: 2px solid #C4C9CE;
  border-radius: 2px;
  z-index: 2;
}

.c-usedcar-plan-check .c-usedcar-plan-check__input:checked {
  border-color: #fff;
}

.c-usedcar-plan-check .c-usedcar-plan-check__input:checked::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  background: url("../image/common/ico/ico_checkbox_checked_01@2x.png") top left no-repeat;
  background-size: contain;
}

.c-usedcar-plan-check .c-usedcar-plan-check__input:checked + .c-usedcar-plan-check__label {
  background-color: #00B6FC;
  color: #fff;
}

.c-usedcar-plan-check .c-usedcar-plan-check__input:checked + .c-usedcar-plan-check__label .terms {
  color: #fff;
}

.c-usedcar-plan-check .c-usedcar-plan-check__input:checked + .c-usedcar-plan-check__label .c-usedcar-infomation-card__memo {
  color: #fff;
}

@supports (-ms-ime-align: auto) {
  /* Edge */
  .c-usedcar-plan-check__input {
    margin-top: -6px;
  }
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-usedcar-plan-check__label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 0;
    background-color: #fff;
    border: 2px solid #C4C9CE;
    border-radius: 2px;
    box-sizing: border-box;
  }
  *::-ms-backdrop, .c-usedcar-plan-check__input:checked + .c-usedcar-plan-check__label::before {
    background: #fff url("../image/common/ico/ico_checkbox_checked_01@2x.png") center center no-repeat;
    background-size: 10px 8px;
  }
  *::-ms-backdrop, .c-usedcar-plan-check__input {
    opacity: 0;
  }
  *::-ms-backdrop, .c-usedcar-plan-check__label {
    height: 56px;
  }
}

.c-usedcar-terms1 .terms {
  color: #00B6FC;
  font-style: normal;
  line-height: 1.0;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
}

.c-usedcar-plan-radio {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.c-usedcar-plan-radio__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 12px 15px 10px 36px;
  background-color: #FEF7EC;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.0;
  border-radius: 6px;
}

@media all and (min-width: 768px) {
  .c-usedcar-plan-radio__label {
    min-height: 56px;
    padding: 12px 15px 10px 28px;
    font-size: 1.4rem;
  }
}

.c-usedcar-plan-radio__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 16px;
  height: 16px;
  margin: -8px 10px 0 0;
  border: 2px solid #C4C9CE;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

@media all and (min-width: 768px) {
  .c-usedcar-plan-radio__label::before {
    left: 16px;
  }
}

.c-usedcar-plan-radio__input {
  opacity: 0;
}

.c-usedcar-plan-radio .c-usedcar-plan-radio__input:checked + .c-usedcar-plan-radio__label {
  /* 20241210 */
  /* background-color: #00B6FC; */
  color: #16283C;
  border: 6px solid #00B6FC;
}

.c-usedcar-plan-radio .c-usedcar-plan-radio__input:checked + .c-usedcar-plan-radio__label .terms {
  /* 20241210 */
  /* color: #fff; */
  color: #00B6FC;
}

.c-usedcar-plan-radio .c-usedcar-plan-radio__input:checked + .c-usedcar-plan-radio__label .c-usedcar-infomation-card__memo {
  /* 20241210 */
  /* color: #fff; */
  color: #16283C;
}

.c-usedcar-plan-radio .c-usedcar-plan-radio__input:checked + .c-usedcar-plan-radio__label::before {
  border-color: #fff;
  background-color: #00B6FC;
  background-image: url("../image/common/ico/ico_form_radio_checed_01.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 8px 8px;
}

@media all and (-ms-high-contrast: none) {
  /* IE11 */
  *::-ms-backdrop, .c-usedcar-plan-radio__label {
    height: 56px;
  }
}

/* simple with information */
.c-heading-band-information {
  max-width: 1080px;
  margin: 0 auto 10px;
  padding: 20px 16px 16px;
  background-color: #fff;
  color: #ff0000;
  text-align: center;
}

@media all and (min-width: 992px) {
  .c-heading-band-information {
    margin-top: 10px;
    border-radius: 12px;
  }
}

.c-heading-band-information__information em {
  display: block;
  margin-bottom: 0.25em;
  font-size: 1.5rem;
  font-weight: bold;
  font-style: normal;
}

/* 新ハンバーガーメニュー（2025.03） */

  .p-header-menu__car {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 5px 10px 10px;
  }
  .p-header-menu__car li {
    flex-basis: calc(50% - 5px);
  }
  .p-header-menu__car li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0045AD;
    height: 3.4rem;
    border-radius: 8px;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: bold;
    color: #fff;
  }
  .p-header-menu__car li:nth-child(2) a {
    /* background: #f7db4c;
    color: #0045AD; */
  }
  @media all and (min-width: 768px) {
    .p-header-menu__car {
      display: none;
    }
  }
  .p-menu-hamburger__inner {
    background: #fff!important;
    padding: 0!important;
  }
  .p-menu-hamburger__content {
    padding: 0!important;
  }
  .p-menu-hamburger-navi-new__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 18px;
  }
  .p-menu-hamburger-navi-new__head p a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0045AD;
    text-decoration: underline;
  }
  .p-menu-hamburger-new__close {
    display: block;
    width: 22px;
    height: 22px;
    background: url("/assets/image/common/ico/ico_close_blue_01.svg") top left no-repeat;
    background-size: 22px;
  }
  .p-menu-hamburger-navi-new ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 15px;
  }
  .p-menu-hamburger-navi-new__car {
    background: #dae6fb;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(1) {
    flex-basis: 100%;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(2),
  .p-menu-hamburger-navi-new__car li:nth-child(3) {
    flex-basis: calc(50% - 5px);
  }
  .p-menu-hamburger-navi-new__car li:nth-child(4),
  .p-menu-hamburger-navi-new__car li:nth-child(5),
  .p-menu-hamburger-navi-new__car li:nth-child(6) {
    flex-basis: calc(33.333% - 6.7px);
  }
  .p-menu-hamburger-navi-new__car li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0045AD;
    height: 4.5rem;
    border-radius: 8px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
    color: #fff;
  }
  .p-menu-hamburger-navi-new__car li a ._icon {
    display: block;
    width: 3rem!important;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(1) a {
    font-size: 1.8rem;
    color: #fff;
    border: 3px solid #fff;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(2) a,
  .p-menu-hamburger-navi-new__car li:nth-child(3) a {
    height: 5.6rem;
    flex-wrap: wrap;
    row-gap: none;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(4) a,
  .p-menu-hamburger-navi-new__car li:nth-child(5) a,
  .p-menu-hamburger-navi-new__car li:nth-child(6) a {
    height: 5rem;
  }
  .p-menu-hamburger-navi-new__car li:nth-child(2) a span,
  .p-menu-hamburger-navi-new__car li:nth-child(3) a span,
  .p-menu-hamburger-navi-new__car li:nth-child(4) a span,
  .p-menu-hamburger-navi-new__car li:nth-child(5) a span,
  .p-menu-hamburger-navi-new__car li:nth-child(6) a span {
    line-height: 1.4;
    display: block;
    width: 100%;
  }
  .p-menu-hamburger-navi-new__old {
    background: #fcf6d3;
  }
  .p-menu-hamburger-navi-new__old li {
    flex-basis: 100%;
  }
  .p-menu-hamburger-navi-new__old li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f7db4c;
    height: 4.5rem;
    border-radius: 8px;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: bold;
    column-gap: 6px;
    border: 3px solid #fff;
  }
  .p-menu-hamburger-navi-new__sub {
    background: #f0f1f2;
  }
  .p-menu-hamburger-navi-new__bnr li,
  .p-menu-hamburger-navi-new__sub li {
    flex-basis: calc(50% - 5px);
  }
  .p-menu-hamburger-navi-new__bnr li a {
  }
  .p-menu-hamburger-navi-new__sub li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    height: 4rem;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: bold;
  }
  .p-menu-hamburger-navi-new__cnt {
    flex-wrap: nowrap!important;
    padding: 0 15px!important;
  }
