@charset "UTF-8";
/*------------------------------------------------------------------
[COMMON STYLESHEET]
-------------------------------------------------------------------*/
@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium"), local("Yu Gothic");
  font-weight: 500;
  /*
    Chrome 58.0.3029.110 (64-bit) では
    "Yu Gothic Medium" を認識しないバグあるため
    "Yu Gothic" と font-weight も併せて指定。
  */
}
html {
  font-size: 62.5%;
}

body {
  min-width: 375px;
  margin: inherit;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
  font-size: 12px;
  color: #000000;
  background: #ffffff;
}
@media only screen and (min-width: 900px) {
  body {
    font-size: 15px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
a:hover {
  opacity: 0.4;
}

img {
  width: 100%;
  vertical-align: bottom;
  -webkit-user-drag: none;
}
img.common-image-resize-cancel {
  width: auto;
  max-width: 100%;
}

main {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  overflow: hidden;
}

/*------------------------------------------------------------------
h タイトル系
-------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
}

h1,
h2 {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Cormorant Garamond";
  line-height: 1;
  font-size: 5rem;
  font-weight: 700;
  -webkit-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 900px) {
  h1,
  h2 {
    font-size: 9rem;
  }
}
h1 > span,
h2 > span {
  display: inline-block;
  line-height: 0.85;
  vertical-align: middle;
}
@media only screen and (max-width: 899px) {
  h1 .for-pc,
  h2 .for-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 900px) {
  h1 .for-sp,
  h2 .for-sp {
    display: none !important;
  }
}
h1 .subscript,
h2 .subscript {
  padding-top: 30px;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
  font-size: 2rem;
}

h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
@media only screen and (min-width: 900px) {
  h3 {
    font-size: 2.2rem;
  }
}

h4 {
  margin-bottom: 20px;
  font-size: 2rem;
}

h5 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

h6 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/*------------------------------------------------------------------
mediaクエリ表示制御
-------------------------------------------------------------------*/
@media only screen and (max-width: 899px) {
  .common-display-pc {
    display: none !important;
  }
}

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

/*------------------------------------------------------------------
section系
-------------------------------------------------------------------*/
section {
  margin: auto;
  box-sizing: border-box;
  padding: 0 15px;
}
@media only screen and (min-width: 900px) {
  section {
    padding: 0 30px;
    max-width: 1260px;
  }
}

.common-section-full-width {
  max-width: 100%;
  padding: 0;
}

.common-section-full-image {
  position: relative;
  max-width: 100%;
  height: 150px;
  padding: 0;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .common-section-full-image {
    height: 360px;
  }
}
.common-section-full-image > * {
  width: 100%;
  box-sizing: border-box;
}
.common-section-full-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common-section-full-image > img.for-pc {
  display: none;
}
@media only screen and (min-width: 900px) {
  .common-section-full-image > img.for-pc {
    display: block;
  }
}
@media only screen and (min-width: 900px) {
  .common-section-full-image > img.for-sp {
    display: none;
  }
}

.common-section-margin {
  margin: 20vw auto;
}
.common-section-margin:first-of-type {
  margin-top: 30px;
}
@media only screen and (min-width: 900px) {
  .common-section-margin {
    margin: 10vw auto;
  }
  .common-section-margin:first-of-type {
    margin-top: 50px;
  }
}

/*------------------------------------------------------------------
section内のコンテンツ用
-------------------------------------------------------------------*/
.common-content-margin {
  display: block;
  margin: 30px auto;
}
.common-content-margin:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 900px) {
  .common-content-margin {
    margin: 50px auto;
  }
}

.common-content-thumbnail > a {
  display: block;
}
.common-content-thumbnail > .image,
.common-content-thumbnail > a > .image {
  position: relative;
  width: 100%;
  padding-top: 50%;
}
.common-content-thumbnail > .image > img,
.common-content-thumbnail > a > .image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------------------------------------------------------------------
flex-box系
-------------------------------------------------------------------*/
.common-flex-box {
  display: flex;
  flex-wrap: wrap;
}
.common-flex-box > * {
  min-width: 100%;
}
@media only screen and (min-width: 900px) {
  .common-flex-box {
    flex-wrap: unset;
  }
  .common-flex-box > * {
    flex: 1;
    min-width: auto;
  }
}
.common-flex-box[class*=col-] {
  flex-wrap: wrap;
}
.common-flex-box[class*=col-] > * {
  flex: initial;
}
.common-flex-box[class*=col-].stretch > * {
  flex: auto;
}
.common-flex-box.col-2 > * {
  width: 50%;
}
.common-flex-box.col-3 > * {
  width: 33.3333333333%;
}
.common-flex-box.col-4 > * {
  width: 25%;
}
.common-flex-box.col-5 > * {
  width: 20%;
}
.common-flex-box.col-6 > * {
  width: 16.6666666667%;
}

/*------------------------------------------------------------------
リスト系
-------------------------------------------------------------------*/
.common-table-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box;
  padding: 15px 0;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  .common-table-list > li {
    flex-wrap: unset;
    padding: 20px 10px;
  }
}
.common-table-list > li:nth-child(odd):before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  min-width: 375px;
  height: 100%;
  background: #f2f2f2;
  transform: translateX(-50%);
}
.common-table-list > li > * {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 900px) {
  .common-table-list > li > * {
    flex: 1;
  }
  .common-table-list > li > *:not(last-child) {
    padding-right: 10px;
  }
}

/*------------------------------------------------------------------
pagination
-------------------------------------------------------------------*/
.common-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 8px 0;
  font-size: 1.3rem;
}
@media only screen and (min-width: 900px) {
  .common-pagination > * + * {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 899px) {
  .common-pagination {
    flex-direction: column;
  }
  .common-pagination > * + * {
    margin-top: 27px;
  }
}
.common-pagination > .id-page-count-info {
  display: flex;
  font-weight: bold;
  font-size: 1.5em;
}
.common-pagination > .id-page-count-info > dt {
  display: none;
}
.common-pagination > .id-page-count-info > dd:last-child:before {
  content: "/";
  display: inline-block;
  position: relative;
  margin: 0 8px;
}
.common-pagination > .id-page-list > li {
  display: inline-block;
  position: relative;
  margin: 3px;
  font-weight: bold;
  color: #b2b2b2;
}
.common-pagination > .id-page-list > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2em;
  padding: 0.5em;
  box-sizing: border-box;
}
.common-pagination > .id-page-list > li.id-num > span {
  color: #0071bb;
}
.common-pagination > .id-page-list > li.id-head > span, .common-pagination > .id-page-list > li.id-tail > span {
  color: #f2f2f2;
}
.common-pagination > .id-button-list {
  display: flex;
}
@media only screen and (max-width: 899px) {
  .common-pagination > .id-button-list {
    align-self: stretch;
    justify-content: space-between;
  }
}
.common-pagination > .id-button-list > li {
  display: flex;
  margin: 5px;
  flex: 2 1;
  min-width: 80px;
}
.common-pagination > .id-button-list > li.id-head, .common-pagination > .id-button-list > li.id-tail {
  flex-basis: 20%;
}
.common-pagination > .id-button-list > li.id-back, .common-pagination > .id-button-list > li.id-next {
  flex-basis: 30%;
}
.common-pagination > .id-button-list > li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  border: 1px solid;
  flex-basis: 100%;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .common-pagination > .id-button-list > li > * {
    padding: 12px 26px;
  }
}
.common-pagination > .id-button-list > li > a {
  background: black;
  border-color: black;
  color: white;
}
.common-pagination > .id-button-list > li > span {
  border-color: #cccccc;
  color: #cccccc;
}

/*------------------------------------------------------------------
セレクトボックス
-------------------------------------------------------------------*/
.common-select {
  position: relative;
  background: white;
  cursor: pointer;
}
.common-select:before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 0;
  box-shadow: 6px -6px inset;
  transform: scale(0.5) translateY(-5%) translateX(-40%) rotate(-45deg);
}
.common-select > select {
  position: relative;
  border: 0;
  padding: 0.5em;
  padding-right: 2.5em;
  appearance: none;
  background: none;
  outline: none;
}

/*------------------------------------------------------------------
テキスト系
-------------------------------------------------------------------*/
.common-text-wrap {
  display: inline-block;
}

.common-text-link {
  position: relative;
  display: inline-block;
}
.common-text-link:after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  margin-left: 4px;
  background-image: url(/CertifiedCar/assets/images/common/arrow.svg);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.common-text-link.white {
  color: #ffffff;
}
.common-text-link.white:after {
  filter: invert(100%);
}

.common-text-error {
  color: #bb0e81;
  font-weight: 500;
}

.common-text-attention {
  color: #999999;
  font-size: 1.2rem;
}

/*------------------------------------------------------------------
ボタン
-------------------------------------------------------------------*/
.common-button-main {
  width: max-content;
  min-width: 120px;
  box-sizing: border-box;
  padding: 5px 10px;
  border: solid 1px #000000;
  text-align: center;
  line-height: 1.7;
  color: #000000;
  transition: opacity 200ms ease;
}
.common-button-main:not(.disable):hover {
  opacity: 0.4;
}
.common-button-main.disable {
  pointer-events: none;
}
.common-button-main > a {
  display: block;
  height: 100%;
  margin: -5px -10px;
  padding: 5px 10px;
  box-sizing: border-box;
}
.common-button-main > a:hover {
  opacity: 1;
}
.common-button-main.id-dark {
  background: black;
  color: white;
}

/*------------------------------------------------------------------
ラベル系
-------------------------------------------------------------------*/
.common-label-new {
  display: inline-block;
  margin-top: -2px;
  padding: 0 10px;
  border: 1px solid #7d7d7d;
  color: #7d7d7d;
  background: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: middle;
}

/*------------------------------------------------------------------
スプラッシュ・ローディング
-------------------------------------------------------------------*/
#loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3000;
  opacity: 1;
  transition: opacity 1s;
  background: #000000;
  color: #ffffff;
}
#loading.loaded, #loading.loaded > * {
  pointer-events: none;
  animation: loading-loaded 0.4s forwards;
}
@keyframes loading-loaded {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loading.loaded {
  animation-duration: 0.6s;
  animation-delay: 0.4s;
}
#loading .logo,
#loading .gauge {
  width: 200px;
  -webkit-user-select: none;
          user-select: none;
}
#loading .gauge {
  height: 4px;
  margin-top: 12px;
  background: #4d4d4d;
}
#loading .gauge .bar {
  display: block;
  width: 0%;
  height: 100%;
  background: #ffffff;
}

/*------------------------------------------------------------------
//scrollmagicを使ったパララックス実装テスト
.parallax-special,
.parallax-special-2 {
  opacity: 0;
  transition: all 1s ease-out;
  &.active {
    opacity: 1;
  }
}
.parallax-special {
  transform: rotateY(0deg);
  &.active {
    transform: rotateY(720deg);
  }
}
.parallax-special-2 {
  transform: rotateX(0deg);
  &.active {
    transform: rotateX(720deg);
  }
}

//facebook
.common-facebook-wrap {
  display: flex;
  max-width: 500px; //fbの仕様で500px以上にはできない
  > *,
  > * > span,
  > * > span > iframe {
    display: flex;
    flex-basis: 100%;
    width: 100% !important;
  }
}
-------------------------------------------------------------------*/
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px;
    z-index: 1000;
    color: #ffffff;
    background-color: #000000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media screen and (min-width: 900px) {
    .header {
        height: auto;
        padding: 15px 20px;
        min-height: 65px;
    }
}

.header.fixed {
    position: fixed;
    background-color: transparent;
}

.header.fixed.transition {
    -webkit-transition: background-color 1s;
    transition: background-color 1s;
}

.header.fixed.scroll {
    background-color: #000000;
}

.header .left {
    position: relative;
    width: 35%;
    max-width: 200px;
}

@media screen and (max-width: 899px) {
    .header .left {
        z-index: 2;
    }
}

.header .left .logo {
    display: block;
    width: 100%;
}

.header .left .logo>img {
    min-height: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
}

@media screen and (max-width: 899px) {
    .header .right .menu-button {
        position: relative;
        width: 24px;
        height: 24px;
        z-index: 2;
        background-image: url(/CertifiedCar/assets/images/common02/bars-solid.svg);
        background-size: contain;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        cursor: pointer;
        -webkit-filter: invert(100%);
        filter: invert(100%);
    }

    .header .right .menu-button.close {
        background-image: url(/CertifiedCar/assets/images/common02/times-solid.svg);
    }
}

@media screen and (min-width: 900px) {
    .header .right .menu-button {
        display: none;
    }
}

.header .right .header-menu {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header .right .header-menu>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header .right .header-menu>ul>li {
    text-align: center;
    font-family: "Bodoni Moda";
    font-size: 2rem;
}

@media screen and (max-width: 899px) {
    .header .right .header-menu {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding-top: 50px;
        padding-bottom: 75px;
        z-index: 1;
        opacity: 0;
        background: rgba(0, 0, 0, 0.925);
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
        pointer-events: none;
    }

    .header .right .header-menu.open {
        opacity: 1;
        pointer-events: inherit;
    }

    .header .right .header-menu.open>ul {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .header .right .header-menu>ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        height: 100%;
        min-height: 400px;
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }

    .header .right .header-menu>ul>li {
        margin: 20px 0;
    }
}

@media screen and (min-width: 900px) {
    .header .right .header-menu>ul>li {
        margin: 0 15px;
    }

    .header .right .header-menu>ul>li:last-child {
        margin-right: 0;
    }

    .header .right .header-menu>ul>li>a {
        display: block;
    }
}
.footer {
  position: relative;
  z-index: 999;
  line-height: 1.6;
  color: #ffffff;
  background: #272727;
}
.footer > ul {
  color: #b2b2b2;
  text-align: center;
  padding: 35px 0;
}
@media only screen and (min-width: 900px) {
  .footer > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
}
.footer > ul > li {
  width: 100%;
  font-size: 1.4rem;
}
.footer > ul > li:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (min-width: 900px) {
  .footer > ul > li {
    max-width: 300px;
    font-size: inherit;
  }
  .footer > ul > li:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer .footer-move-page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  height: 60px;
  transition: margin 0.5s ease;
  cursor: pointer;
}
@media only screen and (min-width: 899px) {
  .footer .footer-move-page-top {
    right: 30px;
    bottom: 30px;
  }
}
.footer .footer-move-page-top .move-page-top-button {
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  background: #272727;
}
@media only screen and (min-width: 899px) {
  .footer .footer-move-page-top .move-page-top-button {
    width: 90px;
  }
}
@media only screen and (min-width: 899px) {
  .footer .footer-move-page-top .move-page-top-button:before {
    content: "SCROLL";
    position: absolute;
    z-index: 1;
    right: 12px;
    line-height: 60px;
    letter-spacing: 2px;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
  }
}
.footer .footer-move-page-top .move-page-top-button:after {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 20px;
  left: calc(50% - 13px);
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  background-image: url(/CertifiedCar/assets/images//common/arrow.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  filter: invert(100%);
}
@media only screen and (min-width: 899px) {
  .footer .footer-move-page-top .move-page-top-button:after {
    left: calc(50% - 40px);
  }
}
.footer-link-list {
    margin: 0 10px;
    padding: 35px 0 0 0;
}

@media only screen and (min-width: 900px) {
    .footer-link-list {
        margin: 0 15px;
        padding: 20px 0;
    }
}

.footer-link-list .main,
.footer-link-list .sub {
    display: block;
}

@media only screen and (min-width: 900px) {

    .footer-link-list .main,
    .footer-link-list .sub {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.footer-link-list .main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main {
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        width: 100%;
        border-bottom: 1px solid #404040;
    }
}

.footer-link-list .main>li {
    /*width: 50%;*/
    margin-bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 600;
    padding: 0 5px;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main>li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: aut0;
        /*min-width: 160px;
    max-width: max-content;
    min-height: 60px;*/
        margin-bottom: 60px;
        padding: 0 30px 0 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

.footer-link-list .main>li ul {
    font-weight: 300;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 0 10px;
    color: #000;
    background-color: #fff;
    padding: 0.8em;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main>li ul {
        color: #a6a6a6;
        background-color: transparent;
        padding: 0;
    }
}

.footer-link-list .main>li ul li {
    font-size: 1em;
}

.footer-link-list .main>li ul li:not(:last-child) {
    margin-bottom: 15px;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main>li ul li:not(:last-child) {
        margin-bottom: 10px;
    }
}

.footer-link-list .main>li ul li a::before {
    /*
    content: "";
   display: inline-block;
  transform: translateY(-50%) rotate(45deg);
     width: 5px;
     height: 5px;
     border-top: 1px solid #000000;
     border-right: 1px solid #000000;
    */
    margin-right: 0.5em;
}

.footer-link-list .main>li ul li a:hover {
    color: #EDEDED;
    text-decoration: none;
}

.footer-link-list .main>li ul li a {
    display: block;
    color: #000;
    text-decoration: none;
}

.footer-link-list .main>li ul li a:hover {
    color: #000;
    text-decoration: none;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main>li ul li a::before {
        display: none;
    }

    .footer-link-list .main>li ul li a {
        display: block;
        color: inherit;
        text-decoration: underline;
    }

    .footer-link-list .main>li ul li a:hover {
        color: inherit;
        text-decoration: none;
    }
}

.footer-link-list .main>li>ul {
    margin-top: 10px;
}

.footer-link-list .main li.item2 {
    -webkit-box-flex: 1.5;
    -ms-flex-positive: 1.5;
    flex-grow: 1.5;
}

.footer-link-list .main li.item3 {
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .main li.item3 {
        -webkit-box-flex: 1.5;
        -ms-flex-positive: 1.5;
        flex-grow: 1.5;
        max-width: 280px;
        overflow: visible;
        white-space: nowrap;
    }
}

.footer-link-list .sub {
    display: block;
    /*display: flex;*/
    text-align: center;
    margin-top: 35px;
    color: #b2b2b2;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .sub {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 20px;
        padding-bottom: 0;
    }
}

.footer-link-list .sub>li {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 35px;
}

@media only screen and (min-width: 900px) {
    .footer-link-list .sub>li {
        width: auto;
        margin-left: 5vw;
        text-align: center;
        font-size: inherit;
        margin-bottom: 0;
        /*
        &:not(:last-child) {
          margin-bottom: 0;
        }
    */
    }
}


.footer .footer-copyright {
  padding: 10px;
  text-align: center;
  background: #000000;
  font-size: 1.2rem;
  line-height: 20px;
}
@media only screen and (min-width: 900px) {
  .footer .footer-copyright {
    font-size: 1.4rem;
  }
}

.footer-cookie-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1001;
  box-sizing: border-box;
  padding: 0 15px;
  opacity: 0;
  color: #ffffff;
  background: #000000;
  transform: translateY(50px);
  pointer-events: none;
  transition: all 0.6s;
  animation: cookie-confirm-close 0.6s forwards;
}
@keyframes cookie-confirm-close {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
@media only screen and (min-width: 900px) {
  .footer-cookie-confirm {
    padding: 0 30px;
  }
}
.footer-cookie-confirm.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: visible;
  animation: cookie-confirm-open 0.6s forwards;
}
@keyframes cookie-confirm-open {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-cookie-confirm .text,
.footer-cookie-confirm .agree-button {
  margin: 15px auto;
}
.footer-cookie-confirm .text .policy-link {
  color: #00adef;
}
.footer-cookie-confirm .agree-button {
  display: inline-block;
  min-width: 120px;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  text-align: center;
  background: #00adef;
  color: inherit;
  letter-spacing: inherit;
  font: inherit;
  cursor: pointer;
  transition: opacity 500ms ease;
}
.footer-cookie-confirm .agree-button:focus {
  outline: none;
}
.footer-cookie-confirm .agree-button:hover {
  opacity: 0.4;
}

/*------------------------------------------------------------------
[トップページ]index.php
-------------------------------------------------------------------*/
.page-top-description {
  max-width: max-content;
  margin: 30px auto;
  padding: 0 30px;
  line-height: 2;
}
@media only screen and (max-width: 899px) {
  .page-top-description {
    padding: 0 15px;
  }
  .page-top-description.for-pc {
    display: none;
  }
  .page-top-description:not(.for-sp) br {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-description {
    text-align: center;
  }
  .page-top-description.for-sp {
    display: none;
  }
}

.page-top-hero-area .js-slider-banner-certified-top.slick-slider {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.page-top-dealers .list > li {
  position: relative;
  padding-top: 75%;
}
@media only screen and (min-width: 600px) {
  .page-top-dealers .list > li {
    padding-top: 40%;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li {
    display: flex;
    flex-direction: unset;
    min-height: 260px;
    padding-top: 0;
  }
}
.page-top-dealers .list > li:not(last-child) {
  margin-bottom: 15px;
}
.page-top-dealers .list > li .detail,
.page-top-dealers .list > li .image {
  position: absolute;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail,
  .page-top-dealers .list > li .image {
    position: relative;
  }
}
.page-top-dealers .list > li .detail {
  top: 0;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  height: 45%;
  z-index: 1;
  box-sizing: border-box;
  padding: 0 20px;
  color: #ffffff;
  background: #000000;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail {
    top: auto;
    width: 35%;
    height: auto;
    padding: 40px 20px;
  }
}
.page-top-dealers .list > li .detail:before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url(/CertifiedCar/assets/images/index/dealer_ornament_vertical.svg);
  background-position: 50% 0;
  background-size: calc(100% + 2px) auto;
  background-repeat: no-repeat;
  transform: translateX(-50%) scaleY(0.75);
  -webkit-transform: translateX(-50%) scaleY(0.75);
  transform-origin: top center;
  pointer-events: none;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail:before {
    top: 50%;
    left: calc(100% - 1px);
    background-image: url(/CertifiedCar/assets/images/index/dealer_ornament.svg);
    background-position: 0 50%;
    background-size: auto calc(100% + 2px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}
.page-top-dealers .list > li .detail .text {
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail .text {
    max-width: 400px;
    margin-left: auto;
  }
}
.page-top-dealers .list > li .detail .text .title {
  width: 100%;
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail .text .title {
    margin: 0 0 20px;
    text-align: left;
  }
}
.page-top-dealers .list > li .detail .text .link {
  width: max-content;
  margin: 0 auto 1px;
  border-color: #ffffff;
  color: #ffffff;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .detail .text .link {
    margin-left: 0;
  }
}
.page-top-dealers .list > li .image {
  bottom: 0;
  height: 55%;
  overflow: hidden;
}
@media only screen and (min-width: 900px) {
  .page-top-dealers .list > li .image {
    bottom: auto;
    width: 65%;
    height: auto;
  }
}
.page-top-dealers .list > li .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-top-search {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 60px;
}
.page-top-search:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  min-width: 375px;
  height: 100%;
  background: linear-gradient(rgba(196, 196, 196, 0), rgb(196, 196, 196) 300px);
  z-index: -1;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-top-search .page-certified-car-form-filter > details,
.page-top-search .page-certified-car-form-class {
  position: relative;
  margin: 15px auto;
  padding: 15px;
  box-sizing: border-box;
  background: #f5f5f5;
}
.page-top-search .page-certified-car-form-filter > details:before,
.page-top-search .page-certified-car-form-class:before {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #f5f5f5;
  transform: translate(-50%, -25%) rotate(90deg);
  -webkit-transform: translate(-50%, -25%) rotate(90deg);
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter details {
    min-height: 40px;
    line-height: 40px;
  }
}
.page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type {
  position: relative;
  box-sizing: border-box;
  padding-right: 30px;
  list-style: none;
  font-weight: 600;
  -webkit-appearance: none;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type {
    display: none;
  }
}
.page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type::-webkit-details-marker {
  display: none;
}
.page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type:focus {
  outline: none;
}
.page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  background-image: url(/CertifiedCar/assets/images//common/icon_plus.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translateY(-50%);
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type.for-pc {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type.for-pc {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 15%;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateY(-50%);
  }
  .page-top-search .page-certified-car-form-filter details > .page-certified-car-form-params-label:first-of-type.for-pc:before {
    display: none;
  }
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-select,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-button,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-checkbox {
    margin-top: 15px;
    padding-top: 16px;
  }
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-select:before,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-button:before,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-checkbox:before {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 100%;
    height: 1px;
    padding: 0 15px;
    background: #c4c4c4;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-select,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-button,
  .page-top-search .page-certified-car-form-filter details .page-certified-car-form-params-checkbox {
    width: 85%;
    margin-left: auto;
  }
}
.page-top-search .page-certified-car-form-filter details[open] > .page-certified-car-form-params-label:first-of-type:before {
  background-image: url(/CertifiedCar/assets/images//common/icon_minus.svg);
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select,
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button {
  position: relative;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li,
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li {
  position: relative;
  height: 30px;
  line-height: 30px;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li,
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li {
    height: 40px;
    line-height: 40px;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button,
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox {
  position: relative;
  margin-bottom: -10px;
  font-size: 0;
  -webkit-user-select: none;
          user-select: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li,
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li {
  display: inline-block;
  position: relative;
  margin: 0 10px 10px 0;
  font-size: 1.2rem;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li,
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li {
    font-size: 1.43rem;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li {
    box-sizing: border-box;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li {
    min-width: 250px;
  }
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li:nth-last-of-type(2) {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li:nth-last-of-type(2) {
    margin-right: 30px;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li:nth-last-of-type(2):before {
  content: "～";
  position: absolute;
  top: 50%;
  width: 30px;
  font-weight: 600;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li:nth-last-of-type(2):before {
    right: 0;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li:nth-last-of-type(2):before {
    left: 100%;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li > select {
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: inherit;
  border: 1px solid #c4c4c4;
  box-sizing: border-box;
  letter-spacing: inherit;
  line-height: inherit;
  font: inherit;
  color: inherit;
  background: #ffffff;
  cursor: pointer;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li > select {
    border-width: 0;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-select > li > select:focus {
  outline: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li > button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  text-align: center;
  letter-spacing: inherit;
  line-height: inherit;
  font: inherit;
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  transition: opacity 500ms ease;
  -webkit-appearance: none;
  -webkit-user-select: none;
          user-select: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li > button:focus {
  outline: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li > button:hover {
  opacity: 0.4;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-button > li > button.active {
  font-weight: 600;
  background: #0071bd;
  color: #ffffff;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li {
  min-height: 20px;
  line-height: 20px;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li {
    margin-top: 10px;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label {
  line-height: inherit;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span {
  display: flex;
  position: relative;
  box-sizing: border-box;
  padding-right: 5px;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input {
  position: static;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
  line-height: inherit;
  vertical-align: top;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  box-sizing: border-box;
  letter-spacing: inherit;
  line-height: inherit;
  font: inherit;
  color: inherit;
  background: #ffffff;
  -webkit-appearance: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  box-sizing: border-box;
  pointer-events: none;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:before {
    border-width: 0;
  }
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:focus {
  outline: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:checked:not(:disabled) {
  background: #0071bd;
  border-color: #0071bd;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:checked:not(:disabled):before {
  border-color: #0071bd;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:checked:not(:disabled):after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-image: url(/CertifiedCar/assets/images//common/icon_check_white.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.page-top-search .page-certified-car-form-filter .page-certified-car-form-params-checkbox > li > label > span input:disabled:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(245, 245, 245, 0.65);
}
.page-top-search .page-certified-car-form-exec input,
.page-top-search .page-certified-car-form-class-control input {
  display: block;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  text-align: center;
  letter-spacing: inherit;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 500ms ease;
  -webkit-appearance: none;
  -webkit-user-select: none;
          user-select: none;
}
.page-top-search .page-certified-car-form-exec input:focus,
.page-top-search .page-certified-car-form-class-control input:focus {
  outline: none;
}
.page-top-search .page-certified-car-form-exec input {
  padding: 25px 20px;
  color: #ffffff;
  background: #000000;
}
.page-top-search .page-certified-car-form-exec input:hover {
  opacity: 0.4;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-class-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
.page-top-search .page-certified-car-form-class-control input {
  padding: 10px;
  border: 2px solid #ffffff;
  color: #000000;
  background: #ffffff;
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-class-control input {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-class-control input {
    flex: 1;
    margin: 5px;
  }
}
.page-top-search .page-certified-car-form-class-control input#remove_check {
  background: transparent;
}
.page-top-search .page-certified-car-form-class-control input:hover {
  opacity: 0.4;
}
.page-top-search .page-certified-car-form-class {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-class {
    flex-direction: column;
  }
}
.page-top-search .page-certified-car-form-class .page-certified-car-form-class-list {
  flex: 1;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
}
.page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item {
  font-weight: 600;
}
.page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item.mix {
  display: none;
}
@media only screen and (max-width: 899px) {
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item img {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item {
    width: 20%;
    margin: 0;
    box-sizing: border-box;
    padding: 20px;
  }
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item > label {
    display: block;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 30px;
    border-bottom: 1px solid #c4c4c4;
  }
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item > label > img {
    height: 110px;
    object-fit: contain;
  }
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item .inputClass {
    height: calc(100% - 110px);
    padding: 0;
  }
  .page-top-search .page-certified-car-form-class .page-certified-car-form-class-list .page-certified-car-form-class-list-item .inputClass:after {
    content: attr(data-myorder);
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-weight: 400;
  }
}

.page-top-search-image {
  height: 240px;
  margin-top: 0;
}
@media only screen and (min-width: 900px) {
  .page-top-search-image {
    height: 620px;
  }
}

.page-top-about {
  margin-bottom: 0;
}
@media only screen and (min-width: 900px) {
  .page-top-about {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}
@media only screen and (max-width: 899px) {
  .page-top-about h1 .subscript {
    letter-spacing: -1.5px;
    text-indent: -1.5px;
  }
}
.page-top-about .content-list > li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  position: relative;
  min-height: 45vw;
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 2px solid #ffffff;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: 50% 50%;
}
@media only screen and (min-width: 900px) {
  .page-top-about .content-list > li {
    min-height: 20vw;
    border: 1px solid #ffffff;
  }
  .page-top-about .content-list > li:nth-child(odd) {
    border-left: 0;
  }
  .page-top-about .content-list > li:nth-child(even) {
    border-right: 0;
  }
}
.page-top-about .content-list > li.content-maintenance {
  background-image: url(/CertifiedCar/assets/images//index/background_maintenance.jpg);
}
.page-top-about .content-list > li.content-guarantee {
  background-image: url(/CertifiedCar/assets/images//index/background_guarantee.jpg);
}
.page-top-about .content-list > li.content-network {
  background-image: url(/CertifiedCar/assets/images//index/background_network.jpg);
}
.page-top-about .content-list > li.content-support {
  background-image: url(/CertifiedCar/assets/images//index/background_support.jpg);
}
.page-top-about .content-list > li.content-welcomeplan {
  background-image: url(/CertifiedCar/assets/images//index/background_welcomeplan.jpg);
}
.page-top-about .content-list > li.content-insurance {
  background-image: url(/CertifiedCar/assets/images//index/background_insurance.jpg);
}
.page-top-about .content-list > li > * {
  position: relative;
}
.page-top-about .content-list .content-title,
.page-top-about .content-list .content-text {
  width: 100%;
}
.page-top-about .content-list .content-title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.6;
}
.page-top-about .content-list .content-button {
  margin: 0 auto 1px;
  border-color: #ffffff;
  color: #ffffff;
}
.page-top-about .support-text {
  margin: 10px;
  padding: 40px 10px;
  text-align: center;
}
@media only screen and (min-width: 900px) {
  .page-top-about .support-text {
    padding: 40px 20px;
  }
}
.page-top-about .support-text .title {
  font-size: 2rem;
  font-weight: 700;
}
.page-top-about .support-text .text {
  max-width: max-content;
  margin: 30px auto 0;
  line-height: 2;
}
@media only screen and (max-width: 899px) {
  .page-top-about .support-text .text {
    text-align: left;
  }
}

.page-top-appointment {
  margin: 15px;
  padding: 40px 20px;
  text-align: center;
  background: none;
  color: #000;
}
.page-top-appointment .title {
  font-size: 2rem;
  font-weight: 700;
}
.page-top-appointment .text {
  max-width: max-content;
  margin: 30px auto 0;
  line-height: 2;
}
@media only screen and (max-width: 899px) {
  .page-top-appointment .text {
    text-align: left;
  }
}
.page-top-appointment .link {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0;
  padding: 20px;
  box-sizing: border-box;
  border: none;
  text-align: center;
  letter-spacing: inherit;
  font: inherit;
  font-weight: 600;
  color: #ffffff;
  background: #000000;
  cursor: pointer;
  transition: opacity 500ms ease;
}
.page-top-appointment .link:focus {
  outline: none;
}
.page-top-appointment .link:hover {
  opacity: 0.4;
}

.page-top-buy {
  margin: 15px;
  padding: 40px 20px;
  text-align: center;
  background: #1e508d;
  color: #ffffff;
}
.page-top-buy .title {
  font-size: 2rem;
  font-weight: 700;
}
.page-top-buy .text {
  max-width: max-content;
  margin: 30px auto 0;
  line-height: 2;
}
@media only screen and (max-width: 899px) {
  .page-top-buy .text {
    text-align: left;
  }
}
.page-top-buy .link {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0;
  padding: 20px;
  box-sizing: border-box;
  border: none;
  text-align: center;
  letter-spacing: inherit;
  font: inherit;
  font-weight: 600;
  color: #ffffff;
  background: #000000;
  cursor: pointer;
  transition: opacity 500ms ease;
}
.page-top-buy .link:focus {
  outline: none;
}
.page-top-buy .link:hover {
  opacity: 0.4;
}

.page-top-contact {
  position: relative;
  padding: 40px 20px;
}
.page-top-contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  min-width: 375px;
  height: 100%;
  background-image: url(/CertifiedCar/assets/images//index/background_contact.jpg);
  background-size: cover;
  background-position: 50% 50%;
  z-index: -1;
  transform: translateX(-50%);
}
.page-top-contact .link {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  border: none;
  text-align: center;
  letter-spacing: inherit;
  font: inherit;
  font-weight: 600;
  color: #ffffff;
  background: #000000;
  cursor: pointer;
  transition: opacity 500ms ease;
}
.page-top-contact .link:focus {
  outline: none;
}
.page-top-contact .link:hover {
  opacity: 0.4;
}

.page-top-philosophy {
  margin-top: 0;
}
.page-top-philosophy .philosophy-item {
  color: #ffffff;
  text-align: center;
}
.page-top-philosophy .philosophy-item > a {
  display: block;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  padding: 40px 20px;
}
.page-top-philosophy .philosophy-item .detail {
  position: relative;
}
.page-top-philosophy .philosophy-item .detail > .title {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
@media only screen and (min-width: 900px) {
  .page-top-philosophy .philosophy-item .detail > .title {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }
}
.page-top-philosophy .philosophy-item .detail > .text {
  font-size: 1.5rem;
}
@media only screen and (min-width: 900px) {
  .page-top-philosophy .philosophy-item .detail > .text {
    font-size: 2rem;
  }
}
.page-top-philosophy .philosophy-item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
}
.page-top-philosophy .philosophy-item .image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
@media only screen and (max-width: 899px) {
  .page-top-philosophy .philosophy-item .image > img {
    display: none;
  }
}

.page-top-content {
  position: relative;
  max-width: 1000px;
  z-index: 1;
  padding: 0;
}
.page-top-content .sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 0;
  text-align: center;
}
.page-top-content .sns > * {
  width: 100%;
  height: 500px;
  margin-bottom: 30px;
  box-sizing: border-box;
  padding: 0 15px;
}
.page-top-content .movie {
  position: relative;
  width: calc(100% - 30px);
  margin: auto;
  padding-top: 54%;
}
.page-top-content .movie > iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-top-access {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 20vw;
  line-height: 2;
  text-align: left;
  color: #e4e4e4;
}
@media only screen and (min-width: 900px) {
  .page-top-access {
    padding-bottom: 10vw;
  }
  .page-top-access .sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px auto 0;
    text-align: center;
  }
  .page-top-access .sns > * {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-top-access .sns > div {
    width: 45%;
    height: 500px;
    margin: 25px 20px;
    box-sizing: border-box;
    padding: 0;
  }
}
.page-top-access:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 115%;
  background: linear-gradient(rgba(0, 0, 0, 0), black 20%);
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 900px) {
  .page-top-access:before {
    height: 125%;
    background: linear-gradient(rgba(0, 0, 0, 0), black 30%);
  }
}
.page-top-access .map {
  width: 100% !important;
  height: 40vh !important;
}
.page-top-access .list > li:nth-child(even) {
  background: #282828;
}
.page-top-access .list > li .container {
  padding: 20px;
}
@media only screen and (min-width: 900px) {
  .page-top-access .list > li .container {
    max-width: 1000px;
    margin: auto;
    padding: 50px 30px;
  }
}
.page-top-access .list > li .image,
.page-top-access .list > li .text {
  position: relative;
  box-sizing: border-box;
}
@media only screen and (max-width: 899px) {
  .page-top-access .list > li .image {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-access .list > li .image {
    padding-top: 30%;
  }
  .page-top-access .list > li .image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 900px) {
  .page-top-access .list > li .text {
    padding-left: 30px;
  }
}
.page-top-access .list > li .text > .name {
  border-bottom: 1px dotted #575757;
  margin-bottom: 10px;
  padding-bottom: 5px;
  color: #fefefe;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.page-top-access .list > li .text > .root {
  margin-bottom: 10px;
}
.page-top-access .list > li .text > .root > p {
  display: block;
}
.page-top-access .list > li .text > .place,
.page-top-access .list > li .text > .tel {
  font-weight: 600;
}
@media only screen and (min-width: 900px) {
  .page-top-access .list > li .text > .place,
  .page-top-access .list > li .text > .tel {
    display: inline-block;
    margin-right: 30px;
  }
}

.slick-slider {
  position: relative;
}
.slick-slider .slider-dots {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
  height: 5px;
  box-sizing: border-box;
  padding: 0 5px;
}
@media only screen and (min-width: 900px) {
  .slick-slider .slider-dots {
    bottom: 30px;
  }
}
.slick-slider .slider-dots > li {
  flex: 1;
  display: block;
  max-width: 30px;
  height: 100%;
  margin: 0 5px;
  opacity: 0.4;
  transition: opacity 500ms ease;
}
@media only screen and (min-width: 900px) {
  .slick-slider .slider-dots > li {
    max-width: 40px;
  }
}
.slick-slider .slider-dots > li:hover, .slick-slider .slider-dots > li.slick-active {
  opacity: 1;
}
.slick-slider .slider-dots > li > button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: #ffffff;
  line-height: 100%;
  text-indent: -9999px;
  cursor: pointer;
}
.slick-slider .slider-dots > li > button:focus {
  outline: none;
}
.slick-slider .slider-button-prev,
.slick-slider .slider-button-next {
  position: absolute;
  top: calc(50% + 35px);
  width: 24px;
  height: 24px;
  margin: -12px 10px 0;
  z-index: 1;
  background-image: url(/CertifiedCar/assets/images/common/slider_arrow.svg);
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: opacity 200ms;
}
@media only screen and (min-width: 900px) {
  .slick-slider .slider-button-prev,
  .slick-slider .slider-button-next {
    width: 40px;
    height: 40px;
    margin: -20px 15px 0;
  }
}
.slick-slider .slider-button-prev:hover,
.slick-slider .slider-button-next:hover {
  opacity: 0.4;
}
.slick-slider .slider-button-prev {
  left: 0;
}
.slick-slider .slider-button-next {
  right: 0;
  transform: scaleX(-1);
}

/*------------------------------------------------------------------
[サーティファイドカー] CertifiedCar result/index.php
-------------------------------------------------------------------*/
/*--------------------------------------
  検索共通
 --------------------------------------- */
.page-search-title h2 {
  margin-bottom: 0;
  padding-bottom: 16px;
  color: black;
}
.page-search-title h2:before {
  content: none;
}
@media only screen and (max-width: 899px) {
  .page-search-title h2 {
    font-size: 3.5em;
  }
}
.page-search-title h3 {
  margin-top: 9px;
  margin-bottom: 34px;
  font-size: 2.5rem;
  text-align: center;
}
@media only screen and (max-width: 899px) {
  .page-search-title h3 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }
}

/*--------------------------------------
  検索結果 result/index.php
 --------------------------------------- */
@media only screen and (max-width: 899px) {
  .page-search > section {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search > section {
    padding: 43px 6.3vw;
  }
}
.page-search > section > .id-search-info-wrap {
  margin-bottom: 42px;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-search-info-wrap {
    margin-bottom: 18px;
  }
}
.page-search > section > .id-search-info-wrap .id-search-info-list {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-search-info-wrap .id-search-info-list {
    line-height: 1.7em;
  }
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-search-info-wrap .id-search-info-list {
    font-size: 0.9em;
  }
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li {
  display: inline-block;
  background: #f2f2f2;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li:not(.id-class) {
  margin: 2px 4px;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li > dl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li > dl > dt {
  margin-right: 16px;
  font-weight: bold;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li.id-class {
  background: none;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li.id-class > dl {
  padding: unset;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li.id-class > dl > dt {
  display: none;
}
.page-search > section > .id-search-info-wrap .id-search-info-list > li.id-class > dl > dd {
  margin: 2px 4px;
  padding: 4px 16px;
  background: #f2f2f2;
}
.page-search > section .page-search-edit-button {
  display: block;
  width: auto;
  font-size: 1.4em;
  font-weight: bold;
}
@media only screen and (min-width: 900px) {
  .page-search > section .page-search-edit-button {
    width: max-content;
    margin: 8px 0;
    padding: 7px 32px;
    font-size: unset;
    font-weight: unset;
  }
}
.page-search > section > .id-list-top {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding: 2px 8px;
  background: #f2f2f2;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list-top {
    padding: 10px 16px;
    line-height: 2.6em;
  }
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-list-top:before {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    min-width: 375px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f2f2f2;
    z-index: -1;
  }
}
.page-search > section > .id-list-top > .id-count {
  display: inline-flex;
  align-items: baseline;
}
.page-search > section > .id-list-top > .id-count > .id-value {
  margin-right: 4px;
  font-size: 2.5em;
  font-weight: bold;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list-top > .id-count > .id-value {
    font-size: 3em;
  }
}
.page-search > section > .id-list-top > .id-count dd:nth-child(2) {
  line-height: 1em;
}
.page-search > section > .id-list-top > .id-sort {
  display: inline-flex;
  align-items: center;
}
.page-search > section > .id-list-top > .id-sort form {
  display: contents;
}
.page-search > section > .id-list-top > .id-sort dl {
  display: inline-flex;
  align-items: center;
}
.page-search > section > .id-list-top > .id-sort dl > dt {
  font-weight: bold;
  margin: 0 8px;
}
.page-search > section > .id-list {
  margin-top: 4px;
}
.page-search > section > .id-list > li {
  display: grid;
  position: relative;
  grid-template-columns: 45% 1fr;
  gap: 4px;
  grid-row-gap: 4px;
  grid-column-gap: 4px;
  padding: 7px 0;
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-list > li {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li {
    padding: 40px 0;
    grid-template-columns: 30% 1fr 1fr;
    gap: 8px;
    grid-row-gap: 8px;
    grid-column-gap: 8px;
    cursor: pointer;
    border-bottom: 1px solid #cccccc;
  }
  .page-search > section > .id-list > li:hover {
    background-color: #ebf5ff;
  }
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-list > li:after {
    content: "";
    display: block;
    grid-column: 1/3;
    width: 120vw;
    height: 2px;
    margin-top: 10px;
    transform: translateX(-10vw);
    background-color: #f2f2f2;
  }
}
.page-search > section > .id-list > li > dl {
  display: flex;
  padding-bottom: 2px;
  margin-bottom: 1px;
  border-bottom: 1px dashed #cccccc;
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-list > li > dl:last-of-type {
    border-bottom: none;
  }
}
.page-search > section > .id-list > li > dl > dt {
  margin-right: 8px;
  font-weight: bold;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > dl > dt {
    min-width: 6em;
    padding-right: 16px;
    box-sizing: border-box;
  }
}
.page-search > section > .id-list > li > .link {
  width: auto;
  grid-column: 1/3;
  border: none;
  padding: 10px;
  border-radius: 4px;
  background-color: #ebf5ff;
  color: #0071bb;
  font-weight: bold;
  font-size: 1.4em;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .link {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    grid-column: unset;
  }
}
.page-search > section > .id-list > li > .id-title {
  grid-column: 1/3;
  font-size: 1.5em;
  line-height: 1.4em;
  font-weight: bold;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-title {
    grid-column: 2/4;
  }
}
.page-search > section > .id-list > li > .id-shop {
  display: block;
  grid-column: 1/3;
  margin-bottom: 4px;
  font-size: 0.9em;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-shop {
    margin: 0;
    grid-column: 3/4;
    grid-row: 2/3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.page-search > section > .id-list > li > .id-shop > span {
  background: #f2f2f2;
  padding: 2px 8px;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-shop > span {
    padding: 8px 16px;
  }
}
.page-search > section > .id-list > li > .id-image {
  grid-row: 3/7;
  margin-right: 12px;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-image {
    grid-row: 1/6;
  }
}
.page-search > section > .id-list > li > .id-price {
  display: block;
  font-weight: bold;
  font-size: 1.1em;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-price {
    display: flex;
    align-items: baseline;
    grid-row: 2/3;
    grid-column: 2/4;
    font-size: unset;
  }
}
.page-search > section > .id-list > li > .id-price .id-price-value {
  font-size: 2.8em;
  color: #0071bb;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-price .id-price-value {
    font-size: 3em;
  }
}
.page-search > section > .id-list > li > .id-price .id-price-listatt {
  font-size: 0.7em;
  text-align: right;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-price .id-price-listatt {
    font-size: 0.7em;
    text-align: right;
  }
}
.page-search > section > .id-list > li > .id-model-year {
  grid-column: 1/3;
}
@media only screen and (min-width: 900px) {
  .page-search > section > .id-list > li > .id-model-year {
    grid-column: unset;
  }
}
@media only screen and (max-width: 899px) {
  .page-search > section > .id-bottom-button {
    margin-top: 30px;
  }
}

/*------------------------------------------------------------------
[サーティファイドカー] CertifiedCar result/detail.php
-------------------------------------------------------------------*/
@media only screen and (min-width: 900px) {
  .page-search-detail > section {
    padding: 53px 7vw;
  }
  .page-search-detail > section > .page-search-title {
    margin-bottom: 54px;
  }
}
@media only screen and (max-width: 899px) {
  .page-search-detail > section {
    padding: 60px 15px;
  }
}
.page-search-detail .id-detail-wrap {
  border-top: 2px solid #f2f2f2;
  padding-top: 16px;
}
.page-search-detail .id-detail-wrap > * + * {
  margin-bottom: 12px;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > * + * {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-title {
    font-size: 1.7em;
    margin: 16px 0px 27px;
  }
}
.page-search-detail .id-detail-wrap > .id-image {
  display: grid;
  position: relative;
  grid-template-columns: 100%;
  gap: 8px;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-image {
    grid-template-columns: 54.9% 1fr;
    gap: 22px;
    grid-row-gap: 22px;
    grid-column-gap: 22px;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-nav-back,
.page-search-detail .id-detail-wrap > .id-image > .id-nav-next {
  position: absolute;
  grid-row: 1/2;
  grid-column: 1/2;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 50%;
}
.page-search-detail .id-detail-wrap > .id-image > .id-nav-back:before,
.page-search-detail .id-detail-wrap > .id-image > .id-nav-next:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 10%;
  padding-top: 10%;
  margin: 0 10px;
  box-shadow: 1vw 1vw white inset;
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-nav-back:before,
  .page-search-detail .id-detail-wrap > .id-image > .id-nav-next:before {
    margin: 0 20px;
    box-shadow: 5px 5px white inset;
    opacity: 0;
  }
  .page-search-detail .id-detail-wrap > .id-image > .id-nav-back:hover:before,
  .page-search-detail .id-detail-wrap > .id-image > .id-nav-next:hover:before {
    opacity: 1;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-nav-next {
  right: 0;
}
.page-search-detail .id-detail-wrap > .id-image > .id-nav-next:before {
  right: 0;
  transform: translateY(-50%) rotate(135deg);
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-main-image {
    min-height: calc((100vw - 15px) * 3 / 4);
  }
}
@media only screen and (max-width: 375px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-main-image {
    min-height: 270px;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-main-image > span.caption:not(:empty) {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-main-image > span.caption:not(:empty) {
    opacity: 1;
  }
}
.page-search-detail .id-detail-wrap > .id-image .id-nav-back:hover ~ .id-main-image > span.caption,
.page-search-detail .id-detail-wrap > .id-image .id-nav-next:hover ~ .id-main-image > span.caption {
  opacity: 1;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-image-list {
    padding-bottom: 10px;
    margin: 0 -15px;
    overflow-x: scroll;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled {
  display: flex;
  height: 12vw;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled > * + * {
    margin-left: 4px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: unset;
    gap: 8px;
    grid-row-gap: 8px;
    grid-column-gap: 8px;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled > li {
  background-color: black;
  height: inherit;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled > li {
    width: 16vw;
  }
}
.page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled > li > img {
  margin: unset !important;
  height: inherit !important;
  width: inherit !important;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-image > .id-image-list .gallery_demo_unstyled > li > img {
    height: auto !important;
    width: 100% !important;
  }
}
.page-search-detail .id-detail-wrap > .id-price {
  display: flex;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-price {
    flex-direction: column;
  }
  .page-search-detail .id-detail-wrap > .id-price > * + * {
    margin-top: 2vw;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-price {
    padding: 6px 0;
  }
  .page-search-detail .id-detail-wrap > .id-price > * + * {
    margin-left: 8px;
  }
}
.page-search-detail .id-detail-wrap > .id-price li dd > span:nth-child(2) {
  padding-bottom: 0.5em;
  font-size: 0.88em;
}
.page-search-detail .id-detail-wrap > .id-price > li {
  display: flex;
  flex: 50%;
  border-bottom: 4px solid;
  border-color: #cccccc;
}
.page-search-detail .id-detail-wrap > .id-price > li > dl {
  display: flex;
  align-items: flex-end;
  border-color: inherit;
}
.page-search-detail .id-detail-wrap > .id-price > li > dl > dt {
  border-bottom: 4px solid;
  border-color: inherit;
  padding: 0 2px;
  flex-shrink: 0;
}
.page-search-detail .id-detail-wrap > .id-price > li > dl > dd {
  display: flex;
  align-items: flex-end;
  /*
  &:nth-child(2){
  	>span{
  		&:nth-child(2){
  			padding-bottom: 0.5em;
  			font-size: 0.88em;
  		}
  	}
  }
  */
}
.page-search-detail .id-detail-wrap > .id-price > li > dl > dd .id-price-value {
  flex-shrink: 0;
  margin: 0 8px;
  font-size: 2.5em;
}
.page-search-detail .id-detail-wrap > .id-price > li.id-main {
  border-color: #0071bb;
}
.page-search-detail .id-detail-wrap > .id-price > li.id-main .id-price-value {
  color: #0071bb;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-price > li.id-main {
    font-size: 1.1em;
  }
  .page-search-detail .id-detail-wrap > .id-price > li.id-main > dl > dt {
    font-size: 1.2em;
  }
  .page-search-detail .id-detail-wrap > .id-price > li.id-main > dl .id-price-value {
    font-size: 3em;
  }
}
.page-search-detail .id-detail-wrap > .price-att {
  font-size: 0.88em;
  text-align: right;
}
.page-search-detail .id-detail-wrap > .id-info {
  line-height: 2em;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    line-height: 2.2em;
  }
}
.page-search-detail .id-detail-wrap > .id-info > li {
  padding: 2px 0;
}
.page-search-detail .id-detail-wrap > .id-info > li:nth-child(odd) {
  background-color: #f2f2f2;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-info > li {
    padding: 4px 0;
  }
}
.page-search-detail .id-detail-wrap > .id-info > li > dl {
  display: flex;
}
.page-search-detail .id-detail-wrap > .id-info > li > dl > dt {
  min-width: 9em;
  margin-right: 8px;
  padding-left: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 900px) and (max-width: 1205px) {
  .page-search-detail .id-detail-wrap > .id-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-search-detail .id-detail-wrap > .id-info > li:nth-child(4n+1), .page-search-detail .id-detail-wrap > .id-info > li:nth-child(4n) {
    background-color: transparent;
  }
  .page-search-detail .id-detail-wrap > .id-info > li:nth-child(4n+2), .page-search-detail .id-detail-wrap > .id-info > li:nth-child(4n+3) {
    background-color: #f2f2f2;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-trim {
    border-top: 1px dashed #cccccc;
    padding-top: 20px;
  }
  .page-search-detail .id-detail-wrap > .id-trim h3 {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-trim h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.page-search-detail .id-detail-wrap > .id-trim .id-trim-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  grid-row-gap: 4px;
  grid-column-gap: 4px;
  line-height: 1.5em;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-trim .id-trim-list {
    grid-template-columns: repeat(6, 1fr);
    font-size: 0.9em;
    line-height: 1.8em;
    gap: 6px;
    grid-row-gap: 6px;
    grid-column-gap: 6px;
  }
}
.page-search-detail .id-detail-wrap > .id-trim .id-trim-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2px 8px;
  border: 1px solid #f2f2f2;
  color: #cccccc;
}
.page-search-detail .id-detail-wrap > .id-trim .id-trim-list > li > span {
  margin: 0 8px;
  padding: 0 4px;
  border-radius: 4px;
  border: 1px solid #0071bb;
}
.page-search-detail .id-detail-wrap > .id-trim .id-trim-list > li.id-on {
  border: none;
  background-color: #ebf5ff;
  color: #0071bb;
  font-weight: bold;
}
.page-search-detail .id-detail-wrap > .id-trim .id-trim-list > li.id-wide {
  grid-column: span 2;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-trim .id-trim-list > li.id-wide {
    grid-column: span 3;
  }
}
.page-search-detail .id-detail-wrap > .id-law-info {
  line-height: 1.5em;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-law-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
  }
  .page-search-detail .id-detail-wrap > .id-law-info h4 {
    margin-bottom: 10px;
  }
}
.page-search-detail .id-detail-wrap > .id-law-info > * {
  margin-bottom: 16px;
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-law-info > * {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #cccccc;
  }
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-law-info .id-maintenance h4,
  .page-search-detail .id-detail-wrap > .id-law-info .id-security h4 {
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 4px;
    text-align: center;
  }
}
.page-search-detail .id-detail-wrap > .id-law-info .id-caution {
  padding-top: 8px;
  padding-left: 1.5em;
}
@media only screen and (max-width: 899px) {
  .page-search-detail .id-detail-wrap > .id-law-info .id-caution {
    border-top: 2px solid #f2f2f2;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail .id-detail-wrap > .id-law-info .id-caution {
    grid-column-start: span 2;
    font-size: 0.8em;
    padding-top: 16px;
    margin-top: 0;
  }
}
.page-search-detail .id-detail-wrap > .id-law-info .id-caution > li:before {
  content: "※";
  display: inline-block;
  position: absolute;
  transform: translateX(-1.3em);
}

.page-search-detail-footer {
  position: relative;
  padding-bottom: 40px;
  background: #ebf5ff;
  text-align: center;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer {
    padding: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail-footer:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    background: #ebf5ff;
    transform: translateX(-50vw);
    z-index: -1;
  }
}
.page-search-detail-footer > h3 {
  padding-top: 50px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer > h3 {
    padding-top: 8px;
    margin-bottom: 14px;
  }
}
.page-search-detail-footer .common-button-main {
  display: block;
  width: 100%;
  padding: 1.4em 0;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer .common-button-main {
    padding: 12px 0;
    font-size: 1.2em;
  }
}
.page-search-detail-footer > .id-contact-info {
  display: flex;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer > .id-contact-info {
    flex-direction: column;
  }
  .page-search-detail-footer > .id-contact-info > * + * {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail-footer > .id-contact-info > * + * {
    margin-left: 20px;
  }
}
.page-search-detail-footer > .id-contact-info > li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 50%;
  padding: 17px;
  border-radius: 10px;
  background: white;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer > .id-contact-info > li {
    padding: 10px;
  }
}
.page-search-detail-footer > .id-contact-info > li > dl {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 899px) {
  .page-search-detail-footer > .id-contact-info > li > dl {
    flex-direction: column;
  }
  .page-search-detail-footer > .id-contact-info > li > dl > * + * {
    margin-top: 5px;
  }
}
@media only screen and (min-width: 900px) {
  .page-search-detail-footer > .id-contact-info > li > dl > dt {
    margin-right: 20px;
  }
}
.page-search-detail-footer > .id-contact-info > li > dl > dd {
  flex-shrink: 0;
  font-size: 1.8em;
  font-weight: bold;
  color: #0071bb;
  -webkit-user-select: all;
          user-select: all;
}
.page-search-detail-footer > .id-contact-info > li > dl > dd.id-mail {
  font-size: 1.5em;
}

/*------------------------------------------------------------------
[サーティファイドカー] CertifiedCar dealer/index.php
-------------------------------------------------------------------*/
@media only screen and (min-width: 900px) {
  .page-dealer > section {
    padding: 53px 7vw;
  }
  .page-dealer > section > .page-search-title {
    margin-bottom: 54px;
  }
}
@media only screen and (max-width: 899px) {
  .page-dealer > section {
    padding: 60px 15px;
  }
}
.page-dealer > section > * + * {
  margin-top: 20px;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > * + * {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 899px) {
  .page-dealer > section .id-off-side-padding-sp {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 900px) {
  .page-dealer > section .id-off-side-padding-pc {
    max-width: inherit;
    margin-left: -7vw;
    margin-right: -7vw;
  }
}
.page-dealer > section > .id-title-wrap {
  margin-bottom: 20px;
  border-bottom: 2px solid #f2f2f2;
}
.page-dealer > section > .id-image {
  display: flex;
  height: 48vw;
  max-height: 558px;
  overflow: hidden;
  align-items: center;
}
.page-dealer > section > .id-sentence {
  line-height: 1.6em;
}
.page-dealer > section > .id-sentence > h3 {
  font-size: 1.3em;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-sentence > h3 {
    font-size: 1.4em;
    letter-spacing: 1px;
  }
}
.page-dealer > section > .id-sentence > p {
  font-size: 1.1em;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-sentence > p {
    font-size: 0.9em;
    line-height: 2em;
  }
  .page-dealer > section > .id-sentence > p .id-br-pc {
    display: block;
  }
}
.page-dealer > section > .id-map > iframe {
  width: 100vw;
  min-width: 375px;
  max-width: inherit;
  height: 83vw;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-map > iframe {
    height: 500px;
  }
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap {
    display: flex;
  }
  .page-dealer > section > .id-data-wrap > * + * {
    margin-left: 20px;
  }
}
.page-dealer > section > .id-data-wrap > .id-data {
  font-size: 1.1em;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-data {
    flex-basis: 55%;
    font-size: 1em;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li {
  padding: 8px 20px;
  line-height: 1.5em;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-data > li {
    padding: 11px 20px;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li:nth-child(odd) {
  background: #f2f2f2;
}
.page-dealer > section > .id-data-wrap > .id-data > li dl {
  display: flex;
  flex-direction: column;
}
.page-dealer > section > .id-data-wrap > .id-data > li dl > * + * {
  margin-top: 2px;
}
.page-dealer > section > .id-data-wrap > .id-data > li dl > dt {
  font-weight: bold;
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-name {
  border-left: 3px solid black;
  box-sizing: border-box;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5em;
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-name dt {
  display: none;
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 15px;
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > * + * {
  margin-top: 25px;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > * + * {
    margin-top: 5px;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > * + * {
  border-top: 1px solid white;
  padding-top: 13px;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > * + * {
    padding-top: 9px;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > * + *,
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > * + * {
  margin-top: 13px;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > * + *,
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > * + * {
    margin-top: 5px;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > dd,
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > dd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  grid-row-gap: 8px;
  grid-column-gap: 8px;
  align-items: center;
}
@media only screen and (max-width: 899px) {
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > dd,
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > dd {
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    background: white;
  }
}
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > dd > .id-phone,
.page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > dd > .id-phone {
  margin: 0 4px;
  font-weight: bold;
  font-size: 2em;
  line-height: 1em;
  -webkit-user-select: all;
          user-select: all;
}
@media only screen and (max-width: 899px) {
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-support > dd > .id-phone,
  .page-dealer > section > .id-data-wrap > .id-data > li.id-contact > .id-service > dd > .id-phone {
    color: #0071bb;
  }
}
.page-dealer > section > .id-data-wrap > .id-facebook {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 900px) {
  .page-dealer > section > .id-data-wrap > .id-facebook {
    flex-basis: 45%;
  }
}
@media only screen and (max-width: 899px) {
  .page-dealer > section > .id-data-wrap > .id-facebook {
    margin: 40px 0;
  }
}
.page-dealer > section > .id-data-wrap > .id-facebook > * {
  flex-basis: 100%;
}

/*------------------------------------------------------------------
[ご案内]/guidance/index.php
-------------------------------------------------------------------*/
@media only screen and (min-width: 900px) {
  .page-guidance > section {
    padding: 53px 7vw;
  }
  .page-guidance > section > hl {
    margin-bottom: 54px;
  }
}
@media only screen and (max-width: 899px) {
  .page-guidance > section {
    padding: 60px 15px;
  }
}

.page-guidance-content {
  font-size: 1.1em;
  width: 90%;
  margin: 60px auto;
}
.page-guidance-content:first-of-type {
  margin-top: 30px;
}
@media only screen and (min-width: 900px) {
  .page-guidance-content {
    font-size: 1.07em;
    width: 100%;
    margin: 100px auto;
  }
  .page-guidance-content:first-of-type {
    margin-top: 50px;
  }
}
.page-guidance-content h2 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f1;
  text-align: left;
  color: inherit;
  font-family: inherit;
  font-size: 2.2rem;
}
@media only screen and (min-width: 900px) {
  .page-guidance-content h2 {
    padding-bottom: 20px;
    font-size: 3rem;
  }
}
.page-guidance-content h2:before {
  left: 0;
  width: 100%;
  transform: none;
}
.page-guidance-content h3,
.page-guidance-content h4 {
  border-left: 5px solid #cccccc;
  padding-left: 10px;
  margin: 20px auto;
}
.page-guidance-content a {
  position: relative;
  word-break: break-all;
  border-bottom: solid 1px #999999;
}
.page-guidance-content > div {
  margin: 30px auto;
}
@media only screen and (min-width: 900px) {
  .page-guidance-content > div {
    margin: 50px auto;
  }
}
.page-guidance-content > div p {
  line-height: 2;
}
.page-guidance-content > div ul {
  margin-top: 30px;
  list-style: square;
}
.page-guidance-content > div ul li {
  margin: 0 0 10px 40px;
  line-height: 2;
}
.page-guidance-content .sub-section {
  margin: 30px auto 30px 20px;
}

/*------------------------------------------------------------------
[エラー画面]
-------------------------------------------------------------------*/
.page-error {
  min-height: calc(100vh - 50px - 40px);
  margin-top: 50px;
  padding-top: 50px;
  box-sizing: border-box;
}
@media only screen and (min-width: 900px) {
  .page-error {
    min-height: calc(100vh - 60px - 40px);
    margin-top: 60px;
    padding-top: 60px;
  }
}
.page-error p {
  max-width: max-content;
  margin: auto;
  line-height: 2;
}