/* cp-notice-text */
.cp-notice-text {
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
  border-radius: 4px;
  padding: 15px;
  margin-top: 0;
  color: #bf0000;
  margin-bottom: 0;
}

.cp-notice-text span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

@media (min-width: 768px) {
  .cp-notice-text {
    margin-top: 0;
    text-align: center;
    padding: 10px;
  }

  .cp-notice-text span {
    text-indent: 0;
    padding-left: 0;
  }
}

/* cp-bottom-inspection */
.cp-bottom-inspection {
  margin-top: 30px;
}

.cp-bottom-inspection__heading {
  color: #bf0000;
}

.cp-bottom-inspection__contents {
  background-color: #fff;
  padding: 15px 15px 20px;
}

/* cp-page-tips__block */
.cp-page-tips__block {
  margin-top: 45px;
}

/* cp-qa-box */
.cp-qa-box {
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 4px;
}

.cp-qa-box + .cp-qa-box {
  margin-top: 15px;
}

.cp-qa-box__question {
  padding: 15px 15px 15px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  margin-bottom: 0;
  background-image: url(/assets/img/tips/icon_q.png);
  background-repeat: no-repeat;
  background-position: 15px 16px;
  background-size: auto 16px;
}

.cp-qa-box__answer {
  padding: 15px 15px 15px 40px;
  background-image: url(/assets/img/tips/icon_a.png);
  background-repeat: no-repeat;
  background-position: 15px 17px;
  background-size: auto 15px;
}

@media (min-width: 768px) {
  .cp-qa-box {
    padding: 25px;
  }

  .cp-qa-box__question {
    padding: 0 0 15px 30px;
    background-image: url(/assets/img/tips/icon_q.png);
    background-position: 0 0;
    background-size: 19px auto;
    font-size: 1.6rem;
    line-height: 1.3125;
  }

  .cp-qa-box__answer {
    padding: 15px 0 0 30px;
    background-image: url(/assets/img/tips/icon_a.png);
    background-repeat: no-repeat;
    background-position: 0 17px;
    background-size: 18px auto;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/* cp-page-survey */
.cp-page-survey__name {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 15px 0;
}

.cp-page-survey__date {
  color: #7c7c7c;
  font-size: 1.2rem;
  margin: 15px 0;
}

.cp-page-survey__voice-img {
  display: block;
  width: 100%;
}

.cp-page-survey__voice-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .cp-page-survey__name {
    font-size: 1.6rem;
    margin: 20px 0;
  }

  .cp-page-survey__date {
    font-size: 1.2rem;
    margin: 20px 0;
  }

  .cp-page-survey__voice-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 25px 0;
  }
}

/* cp-survey-detail */
.cp-survey-detail {
  padding: 20px 15px;
  background-color: #fff;
  border-radius: 4px;
}

.cp-survey-detail__dl {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.cp-survey-detail__dl dt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  width: 120px;
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 20px;
  color: #686868;
  font-weight: normal;
  padding: 15px 0;
}

.cp-survey-detail__dl dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  width: calc(100% - 120px);
  margin: 0;
  font-size: 1.4rem;
  line-height: 20px;
  color: #333;
  font-weight: bold;
  padding: 15px 0;
}

.cp-survey-detail__dl dd span {
  color: #bf0000;
}

.cp-survey-detail__img {
  display: block;
  width: 100%;
}

.cp-survey-detail__btn {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .cp-survey-detail {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
  }

  .cp-survey-detail__left {
    width: calc(100% - 320px);
  }

  .cp-survey-detail__right {
    width: 300px;
  }

  .cp-survey-detail__dl {
    margin: 0;
  }

  .cp-survey-detail__dl dt {
    width: 135px;
    padding: 20px 0;
  }

  .cp-survey-detail__dl dd {
    width: calc(100% - 135px);
    padding: 20px 0;
  }

  .cp-survey-detail__btn {
    margin-top: 30px;
  }
}

/* cp-survey-nav */
.cp-survey-nav {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.cp-survey-nav__prev {
  display: block;
  margin: 0 10px;
  position: relative;
  padding-left: 15px;
}

.cp-survey-nav__prev::before,
.cp-survey-nav__prev::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-left: solid 1px #0085c7;
  border-bottom: solid 1px #0085c7;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3px;
}

.cp-survey-nav__prev::after {
  left: 4px;
}

.cp-survey-nav__next {
  display: block;
  margin: 0 10px;
  position: relative;
  padding-right: 13px;
}

.cp-survey-nav__next::before,
.cp-survey-nav__next::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: solid 1px #0085c7;
  border-bottom: solid 1px #0085c7;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transition: border-color 0.2s;
}

.cp-survey-nav__next::after {
  right: 4px;
}

.cp-survey-nav__prev:hover::before,
.cp-survey-nav__prev:hover::after,
.cp-survey-nav__next:hover::before,
.cp-survey-nav__next:hover::after {
  border-color: #f20000;
}

/* cp-interview-heading */
.cp-interview-heading__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  border-left: 4px solid #bf0000;
  padding: 5px 10px;
}

.cp-interview-heading__name {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 15px;
}

.cp-interview-heading__date {
  font-size: 1.2rem;
  color: #7c7c7c;
}

@media (min-width: 768px) {
  .cp-interview-heading {
    border-left: 4px solid #bf0000;
    padding: 10px 0 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 25px 0 30px;
  }

  .cp-interview-heading__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
    border-left: none;
    padding: 0;
    width: 100%;
    margin: 0 0 15px;
  }

  .cp-interview-heading__name {
    font-size: 1.6rem;
    margin: 0;
  }

  .cp-interview-heading__date {
    font-size: 1.2rem;
    margin: 3px 0 0;
  }
}

/* cp-page-interview */
.cp-page-interview__mv {
  height: 190px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 15px 0 30px;
}

.cp-page-interview__txt {
  margin: 35px 0;
  font-size: 1.6rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .cp-page-interview__mv {
    height: 400px;
    margin: 0 0 20px;
  }

  .cp-page-interview__txt {
    margin: 50px 0 40px;
  }
}

/* cp-interview-main */
.cp-interview-main {
  margin: 0 0 40px;
}

.cp-interview-main__q {
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.35;
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 1em;
}

.cp-interview-main__q::before {
  content: "ー";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-interview-main__a {
  font-size: 1.6rem;
  line-height: 1.7;
}

.cp-interview-main__a + .cp-interview-main__a {
  margin-top: 1em;
}

.cp-interview-main__a span {
  color: #bf0000;
}

.cp-interview-main__img {
  display: block;
  width: 100%;
  margin: 0 0 1em;
}

@media (min-width: 768px) {
  .cp-interview-main {
    margin: 0 0 55px;
  }

  .cp-interview-main__q {
    margin-bottom: 1.5em;
  }

  .cp-interview-main__a + .cp-interview-main__a {
    margin-top: 1.5em;
  }
}

/* cp-interview-other */
.cp-interview-other {
  padding: 25px 15px;
  background-color: #fff;
  border-radius: 4px;
}

.cp-interview-other + .cp-interview-other {
  margin-top: 35px;
}

.cp-interview-other__ttl {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.cp-interview-other__ttl span:nth-of-type(1) {
  color: #bf0000;
  font-size: 1.2rem;
  font-weight: bold;
}

.cp-interview-other__ttl span:nth-of-type(2) {
  color: #7c7c7c;
  font-size: 1.2rem;
}

.cp-interview-other__img {
  width: 100%;
  padding: 63% 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cp-interview-other__heading {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0 0;
}

.cp-interview-other__lead {
  font-size: 1.4rem;
  margin: 10px 0 0;
  position: relative;
  height: 60px;
  overflow: hidden;
  line-height: 20px;
}

.cp-interview-other__lead::before {
  content: "…";
  position: absolute;
  width: 15px;
  text-align: right;
  bottom: 0;
  right: 0;
  background-color: #fff;
  font-size: 1rem;
}

.cp-interview-other__lead::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.cp-interview-other__car {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 15px 0 0;
  color: #686868;
  padding: 0 0 0 20px;
  background-image: url(/assets/img/interview/icon_car.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}

.cp-interview-other__more {
  text-align: center;
  margin: 20px 0 0;
}

.cp-interview-other__more a {
  display: inline-block;
  position: relative;
  padding-right: 13px;
}

.cp-interview-other__more a::before,
.cp-interview-other__more a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: solid 1px #0085c7;
  border-bottom: solid 1px #0085c7;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -3px;
  transition: border-color 0.2s;
}

.cp-interview-other__more a::after {
  right: 4px;
}

.cp-interview-other__more a:hover::before,
.cp-interview-other__more a:hover::after {
  border-color: #f20000;
}

@media (min-width: 768px) {
  .cp-interview-other {
    padding: 20px;
    position: relative;
    min-height: 320px;
    padding: 20px 20px 20px 340px;
  }

  .cp-interview-other + .cp-interview-other {
    margin-top: 15px;
  }

  .cp-interview-other__ttl {
    padding: 0 0 15px;
    margin: 0 0 15px;
  }

  .cp-interview-other__img {
    width: 300px;
    height: 280px;
    padding: 0;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .cp-interview-other__lead {
    height: 40px;
  }

  .cp-interview-other__lead::before {
    width: 20px;
  }

  .cp-interview-other__car {
    margin: 30px 0 0;
  }

  .cp-interview-other__more {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}

/* cp-table-vertical */
.cp-table-vertical {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1.4rem;
  line-height: 1.4;
}

.cp-table-vertical th {
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
}

.cp-table-vertical td {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background-color: #fff;
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .cp-table-vertical td {
    font-size: 1.6rem;
    line-height: 1.375;
    padding: 20px;
  }
}

/* cp-table-horizontal */
.cp-table-horizontal {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.4;
}

.cp-table-horizontal th {
  background-color: #f7f7f7;
  width: 120px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
}

.cp-table-horizontal td {
  width: calc(100% - 120px);
  border: 1px solid rgba(0, 0, 0, 0.18);
  background-color: #fff;
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .cp-table-horizontal th {
    width: 288px;
    vertical-align: middle;
    line-height: 1.5;
  }

  .cp-table-horizontal td {
    width: calc(100% - 288px);
    padding: 20px;
  }
}

/* cp-page-about__block */
.cp-page-about__block {
  background-color: #fff;
  border-radius: 4px;
  padding: 25px 15px;
}

@media (min-width: 768px) {
  .cp-page-about__block {
    padding: 25px;
  }
}

/* cp-page-antique */
@media (min-width: 768px) {
  .cp-page-antique .cp-table-horizontal th span {
    font-size: 1.6rem;
  }
}

/* cp-terms-body */
.cp-terms-body__section--lv1 {
  margin-top: 35px;
}

.cp-terms-body__section--lv2 {
  margin-top: 25px;
}

.cp-terms-body__section--lv3 {
  margin-top: 20px;
}

.cp-terms-body__h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}

.cp-terms-body__h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 15px;
}

.cp-terms-body__h4 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
}

.cp-terms-body__txt {
  font-size: 1.4rem;
  line-height: 1.5;
}

.cp-terms-body__ol-list--lv1 {
  font-size: 1.4rem;
  line-height: 1.5;
}

.cp-terms-body__ol-list--lv1 > li {
  counter-increment: list_item;
  padding: 0 0 0 20px;
  position: relative;
}

.cp-terms-body__ol-list--lv1 > li::before {
  content: counter(list_item) ".";
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-terms-body__ol-list--lv1 > li + li {
  margin-top: 10px;
}

.cp-terms-body__ol-list--lv2 {
  font-size: 1.4rem;
  line-height: 1.5;
}

.cp-terms-body__ol-list--lv1 .cp-terms-body__ol-list--lv2,
.cp-terms-body__ol-list--lv2 .cp-terms-body__ol-list--lv3 {
  margin-top: 10px;
}

.cp-terms-body__ol-list--lv2 > li,
.cp-terms-body__ol-list--lv3 > li {
  padding: 0 0 0 40px;
  position: relative;
}

.cp-terms-body__ol-list--lv2 > li {
  counter-increment: list_item2;
}

.cp-terms-body__ol-list--lv2 > li::before,
.cp-terms-body__ol-list--lv3 > li::before {
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 5px;
}

.cp-terms-body__ol-list--lv2 > li::before {
  content: "(" counter(list_item2) ")";
}

.cp-terms-body__ol-list--lv3 li:first-child::before {
  content: "(ア)";
}

.cp-terms-body__ol-list--lv3 li:nth-child(2)::before {
  content: "(イ)";
}

.cp-terms-body__ol-list--lv3 li:nth-child(3)::before {
  content: "(ウ)";
}

.cp-terms-body__ol-list--lv3 li:nth-child(4)::before {
  content: "(エ)";
}

.cp-terms-body__ol-list--lv3 li:nth-child(5)::before {
  content: "(オ)";
}

.cp-terms-body__ol-list--lv2 li + li,
.cp-terms-body__ol-list--lv3 li + li {
  margin-top: 10px;
}

.cp-terms-body__ul-list--lv1 li {
  padding-left: 1em;
  position: relative;
}

.cp-terms-body__ul-list--lv1 li + li {
  margin-top: 10px;
}

.cp-terms-body__ul-list--lv1 li::before {
  content: "●";
  width: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-terms-body__update {
  margin-top: 40px;
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.5;
}

/* cp-faq-list */
.cp-faq-list__q {
  font-size: 1.4rem;
  line-height: 1.5;
  background-color: #fff;
  padding: 20px 30px 20px 15px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.cp-faq-list__q::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #828282;
  border-bottom: 1px solid #828282;
  transform: rotate(-45deg);
  position: absolute;
  top: 23px;
  right: 15px;
}

.cp-faq-list__q.active::after {
  transform: rotate(135deg);
  top: 28px;
}

.cp-faq-list__a {
  height: auto;
  max-height: 0;
  transition: max-height 0.2s;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
}

.cp-faq-list__a.open {
  max-height: 3000px;
  transition: max-height 0.5s;
}

.cp-faq-list__a .cp-faq-list__contents {
  margin: 0 30px 20px 15px;
}

.cp-faq-list__a + .cp-faq-list__q {
  margin-top: 15px;
}

.cp-faq-list__contents {
  background-color: #f7f7f7;
  padding: 20px 15px;
}

@media (min-width: 768px) {
  .cp-faq-list__q {
    font-size: 1.6rem;
    line-height: 1.3125;
    background-color: #fff;
    padding: 20px 70px 20px 25px;
  }

  .cp-faq-list__q::after {
    right: 30px;
  }

  .cp-faq-list__a .cp-faq-list__contents {
    margin: 0 55px 40px 40px;
  }

  .cp-faq-list__contents {
    padding: 20px;
  }
}

/* cp-page-process__block */
.cp-page-process__block {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .cp-page-process__block {
    margin-top: 50px;
  }
}

/* cp-process-top */
.cp-process-top {
  margin-top: 15px;
}

.cp-process-top__label {
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
  background-color: #bf0000;
  border-radius: 16px;
  line-height: 1;
  padding: 6px 10px 5px;
  font-weight: bold;
}

.cp-process-top__ttl {
  font-size: 1.6rem;
  font-weight: bold;
}

.cp-process-top__movie {
  padding: 56.25% 0 0;
  position: relative;
  margin-bottom: 15px;
}

.cp-process-top__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-process-top__txt span {
  color: #bf0000;
}

@media (min-width: 768px) {
  .cp-process-top {
    margin-top: 25px;
    padding: 0 0 0 51.25%;
    position: relative;
    min-height: 260px;
  }

  .cp-process-top__label {
    font-size: 1.4rem;
    border-radius: 20px;
    padding: 6px 15px 5px;
    margin-bottom: 20px;
  }

  .cp-process-top__ttl {
    font-size: 2rem;
  }

  .cp-process-top__movie {
    width: 48.75%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin-bottom: 0;
  }

  .cp-process-top__movie-inner {
    padding: 56.25% 0 0;
    position: relative;
  }

  .cp-process-top__movie iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .cp-process-top__txt {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

/* cp-process-main */
.cp-process-main__item + .cp-process-main__item {
  margin-top: 15px;
}

.cp-process-main__body {
  background-color: #fff;
  border-radius: 4px;
  padding: 15px;
}

.cp-process-main__ttl {
  padding-right: 0;
}

.cp-process-main__ttl span {
  background-color: #bf0000;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  text-align: center;
  margin-right: 5px;
  display: inline-block;
  line-height: 24px;
}

.cp-process-main__img {
  margin-bottom: 15px;
}

.cp-process-main__img img {
  display: block;
  width: 100%;
}

.cp-process-main__attention {
  padding: 0 0 0 1em;
  position: relative;
}

.cp-process-main__attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.cp-process-main__txt-list li {
  padding: 0 0 0 1em;
  position: relative;
  margin: 5px 0;
}

.cp-process-main__txt-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #bf0000;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .cp-process-main {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
  }

  .cp-process-main__item {
    width: 50%;
    padding: 0 8px;
    margin: 0 0 16px;
  }

  .cp-process-main__item + .cp-process-main__item {
    margin-top: 0;
  }

  .cp-process-main__body {
    height: 100%;
    padding: 15px 20px 20px;
  }
}

/* cp-process-attention */
.cp-process-attention {
  background-color: #fff;
  border-radius: 4px;
  padding: 15px;
}

.cp-process-attention + .cp-process-attention {
  margin-top: 15px;
}

.cp-process-attention__img {
  margin-bottom: 15px;
}

.cp-process-attention__img img {
  display: block;
  width: 100%;
}

.cp-process-attention__dot {
  padding: 0 0 0 1em;
  position: relative;
  margin: 5px 0;
}

.cp-process-attention__dot::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #bf0000;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .cp-process-attention {
    position: relative;
    padding: 20px 20px 20px 350px;
    min-height: 280px;
  }

  .cp-process-attention__img {
    width: 300px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

/* cp-process-macaron */
.cp-process-macaron,
.cp-process-macaron-blue,
.cp-process-macaron-red {
  font-weight: bold;
  font-size: 13px;
  color: #0085c7;
  border: 2px solid #0085c7;
  border-radius: 20px;
  width: 90px;
  height: 28px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.cp-process-macaron-red {
  color: #bf0000;
  border-color: #bf0000;
}

/* cp-page-auction__block */
.cp-page-auction__block {
  margin-top: 40px;
}

.cp-auction-top__movie {
  padding: 56.25% 0 0;
  position: relative;
  margin-bottom: 15px;
}

.cp-auction-top__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .cp-auction-top {
    margin-top: 25px;
    padding: 0 0 0 51.25%;
    position: relative;
    min-height: 260px;
    margin-bottom: 0;
  }

  .cp-auction-top__movie {
    width: 48.75%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
  }

  .cp-auction-top__movie-inner {
    position: relative;
    padding: 56.25% 0 0;
  }

  .cp-auction-top__movie iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* cp-about-auction */
.cp-about-auction {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 4px;
}

.cp-about-auction__img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.cp-about-auction__txt {
  text-indent: -1em;
  padding-left: 1em;
  font-weight: bold;
}

.cp-about-auction__txt span {
  font-weight: normal;
}

.cp-about-auction__attention {
  padding: 0 0 0 1em;
  position: relative;
}

.cp-about-auction__attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.cp-about-auction__attention.cp-about-auction__attention--red {
  color: #bf0000;
}

.cp-about-auction__attentions {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .cp-about-auction {
    padding: 20px 25px;
  }
}

/* cp-page-voice__block */
.cp-page-voice__block {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .cp-page-voice__block {
    margin-top: 50px;
  }
}

/* cp-voice-top */
.cp-voice-top__car {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 15px 0 0;
  color: #686868;
  padding: 0 0 0 20px;
  background-image: url(/assets/img/interview/icon_car.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}

.cp-voice-top__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 10px;
}

.cp-voice-top__name {
  font-size: 1.4rem;
  line-height: 2;
}

.cp-voice-top__link {
  text-align: right;
}

.cp-voice-top__link a {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}

.cp-voice-top__link a::before,
.cp-voice-top__link a:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: solid 1px #0085c7;
  border-bottom: solid 1px #0085c7;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  transition: border-color 0.2s;
}

.cp-voice-top__link a::before {
  right: 0;
}

.cp-voice-top__link a::after {
  right: 4px;
}

.cp-voice-top__link a:hover::before,
.cp-voice-top__link a:hover::after {
  border-color: #f20000;
}

@media (min-width: 768px) {
  .cp-voice-top {
    margin-top: 20px;
  }

  .cp-voice-top__car {
    margin-top: 0;
  }

  .cp-voice-top__ttl {
    font-size: 2rem;
  }

  .cp-voice-top__name {
    font-size: 1.6rem;
  }
}

/* cp-voice-movie */
.cp-voice-movie {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 4px;
}

.cp-voice-movie .col-md-6 + .col-md-6 {
  margin-top: 15px;
}

.cp-voice-movie__movie {
  padding: 56.25% 0 0;
  position: relative;
}

.cp-voice-movie__movie iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cp-voice-movie__car {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 15px 0 0;
  color: #686868;
  padding: 0 0 0 20px;
  background-image: url(/assets/img/interview/icon_car.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}

.cp-voice-movie__ttl {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
}

@media (min-width: 768px) {
  .cp-voice-movie {
    padding: 25px;
  }

  .cp-voice-movie .col-md-6 + .col-md-6 {
    margin-top: 0;
  }
}

/* cp-voice-survey */
.cp-voice-survey {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cp-voice-survey__prof {
  color: #bf0000;
  font-size: 1.2rem;
  line-height: 20px;
  font-weight: bold;
}

.cp-voice-survey__date {
  color: #7c7c7c;
  font-size: 1.2rem;
  line-height: 20px;
}

.cp-voice-survey__name {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #686868;
  padding: 0 0 0 20px;
  background-image: url(/assets/img/interview/icon_car.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
}

.cp-voice-survey__img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.cp-voice-survey__ttl {
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  max-height: 40px;
  overflow: hidden;
  line-height: 20px;
}

.cp-voice-survey__ttl::before {
  content: "…";
  position: absolute;
  width: 15px;
  text-align: right;
  bottom: 0;
  right: 0;
  background-color: #fff;
  font-size: 1rem;
}

.cp-voice-survey__ttl::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.cp-voice-survey__ttl--one::before,
.cp-voice-survey__ttl--one::after {
  display: none;
}

.cp-voice-survey__btn {
  width: 100%;
}

@media (min-width: 768px) {
  .cp-voice-survey {
    padding: 20px 25px;
  }

  .cp-voice-survey__ttl {
    height: 40px;
  }
}

/* cp-page-documents */
.cp-page-documents__h4 {
  font-weight: bold;
  position: relative;
  padding: 0 0 0 1em;
  margin: 20px 0 15px;
}

.cp-page-documents__h4::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #bf0000;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
}

.cp-page-documents__block {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .cp-page-documents__block {
    margin-top: 50px;
  }
}

.cp-page-documents__block--s + .cp-page-documents__block--s {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .cp-page-documents__block--s + .cp-page-documents__block--s {
    margin-top: 25px;
  }
}

.cp-page-documents__attention {
  padding: 0 0 0 1em;
  position: relative;
  margin-top: 15px;
}

.cp-page-documents__attention::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.cp-page-documents__content {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 15px;
}

.cp-page-documents__content + .cp-page-documents__content {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .cp-page-documents__content {
    padding: 20px 25px;
  }
}

/* cp-documents-anchor */
.cp-documents-anchor .cp-documents-anchor__btn {
  background-color: #fff;
  position: relative;
  width: 100%;
  margin-top: 10px;
  font-weight: bold;
}

.cp-documents-anchor__btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 1px solid #bf0000;
  border-bottom: 1px solid #bf0000;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
}

@media (min-width: 768px) {
  .cp-documents-anchor .cp-documents-anchor__btn {
    margin-top: 30px;
  }
}

/* cp-documents-item */
.cp-documents-item {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 15px;
}

.cp-documents-item + .cp-documents-item {
  margin-top: 15px;
}

.cp-documents-item__label li {
  display: inline-block;
  text-align: center;
  font-size: 0.857em;
  color: #df0101;
  border: 1px solid #df0101;
  padding: 0 8px;
}

.cp-documents-item__label li + li {
  margin-left: 10px;
}

.cp-documents-item__img {
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.cp-documents-item__img::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(/assets/img/documents/icon_zoom.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.cp-documents-item__img img {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .cp-documents-item {
    padding: 30px 25px 20px 350px;
    position: relative;
    min-height: 325px;
  }

  .cp-documents-item__img {
    width: 300px;
    position: absolute;
    top: 20px;
    left: 25px;
  }

  .cp-documents-item__label {
    position: absolute;
    top: 30px;
    right: 25px;
  }

  .cp-documents-item__img::after {
    bottom: 10px;
    right: 10px;
  }
}

/* cp-documents-standard */
.cp-documents-standard__img img {
  display: block;
  width: 100%;
}

.cp-documents-standard__img {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.cp-documents-standard__img::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(/assets/img/documents/icon_zoom.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.cp-documents-standard__box {
  padding: 20px 15px;
  border-radius: 4px;
  background-color: rgba(191, 0, 0, 0.08);
}

.cp-documents-standard__box p {
  color: #bf0000;
  font-weight: bold;
}

.cp-documents-standard__box ul {
  margin: 0;
}

.cp-documents-standard__box li {
  padding: 0 0 0 1em;
  position: relative;
  margin: 5px 0 0;
}

.cp-documents-standard__box li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #bf0000;
  border-radius: 6px;
  position: absolute;
  top: 7px;
  left: 0;
}

@media (min-width: 768px) {
  .cp-documents-standard {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cp-documents-standard__img {
    width: 300px;
    margin-bottom: 30px;
  }

  .cp-documents-standard__txt {
    width: calc(100% - 320px);
  }

  .cp-documents-standard__box {
    width: 100%;
    padding: 15px 25px;
  }
}

/* cp-car-item__month */
.cp-car-item__month {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  background-color: #f7f7f7;
}

.cp-car-item__month dt {
  width: 60%;
  font-size: 1.2rem;
  padding-top: 7px;
  padding-left: 8px;
  font-weight: normal;
}

.cp-car-item__month dd {
  width: 40%;
  text-align: right;
  padding-top: 4px;
  padding-right: 8px;
  font-size: 1.4rem;
}

/* cp-clear-result */
.cp-clear-result {
  margin: 0;
  border: 2px solid #fc0;
  border-radius: 4px;
}

.cp-clear-result .cp-car-item__body {
  position: relative;
}

.cp-clear-result .cp-car-item__balloon {
  position: absolute;
  z-index: 10;
}

.cp-clear-result__box {
  position: relative;
  padding: 0;
  margin: 0;
  width: 101%;
  height: 70px;
  left: -2px;
  border-radius: 0px 0px 2px 2px;
  background-image: linear-gradient(
    135deg,
    #ffcc00 0%,
    #ffeb99 30%,
    #fff5cc 40%,
    #ffeb99 70%,
    #ffcc00 100%
  );
}

.cp-clear-result__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 90%;
}

.cp-clear-result__img {
  width: 10%;
  height: 10%;
}

.cp-clear-result__ttl2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 2%;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .cp-clear-result {
    border: inherit;
    position: relative;
  }

  .cp-clear-result .cp-car-item__balloon {
    position: relative;
  }

  .cp-clear-result .cp-car-item__name,
  .cp-clear-result .cp-car-item__info,
  .cp-clear-result .cp-car-item__bottom {
    border-right: 2px solid #fc0;
    border-left: 2px solid #fc0;
  }

  .cp-clear-result .cp-car-item__bottom {
    border-bottom: 2px solid #fc0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }

  .cp-clear-result__box {
    position: absolute;
    top: 213px;
    left: 0;
    height: 42px;
    width: 100%;
  }

  .cp-clear-result__ttl {
    position: absolute;
    align-items: flex-end;
    left: 16px;
    bottom: 5px;
  }

  .cp-clear-result__img {
    width: 17%;
    height: 17%;
  }

  .cp-clear-result__ttl2 {
    margin-bottom: 5px;
  }

  .cp-clear-result .cp-car-item__name {
    margin: 42px 0 0 0;
  }
}

/* cp-clear-detail */
.cp-clear-detail {
  border: 2px solid #fc0;
  border-radius: 4px;
}

.cp-clear-detail__box {
  position: relative;
  padding: 24px 13%;
  margin: 0;
  width: 101%;
  height: 42px;
  border-radius: 0px 0px 2px 2px;
  background-image: linear-gradient(
    135deg,
    #ffcc00 0%,
    #ffeb99 30%,
    #fff5cc 40%,
    #ffeb99 70%,
    #ffcc00 100%
  );
}

.cp-clear-detail__ttl {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 5%;
  bottom: 11%;
  width: 90%;
}

.cp-clear-detail__img {
  width: 15%;
  height: 15%;
}

.cp-clear-detail__ttl2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 6%;
}

@media (min-width: 768px) {
  .cp-clear-detail {
    position: relative;
  }

  .cp-clear-detail.cp-detail-main {
    margin: 0 0 72px;
  }

  .cp-clear-detail .cp-detail-main__img {
    width: calc(100% - 310px);
  }

  .cp-clear-detail__box {
    position: absolute;
    bottom: -49px;
    width: 100%;
  }

  .cp-clear-detail__ttl {
    justify-content: center;
    left: 16px;
    bottom: 3px;
  }

  .cp-clear-detail__ttl2 {
    font-size: 1.7rem;
    padding-left: 12px;
  }

  .cp-clear-detail__img {
    width: 56px;
    height: 56px;
  }
}

/* cp-clear-top */
.cp-clear-top {
  margin: 0 -12px;
  border: 2px solid #fc0;
  border-radius: 0px 0px 4px 4px;
}

.cp-clear-top__body {
  padding: 15px 12px 30px;
}

.cp-sales-item__img {
  margin: 0 -12px;
}

.cp-clear-top__box {
  position: relative;
  padding: 0px 5%;
  margin: 0;
  width: 101%;
  height: 42px;
  left: -2px;
  background-image: linear-gradient(
    135deg,
    #ffcc00 0%,
    #ffeb99 30%,
    #fff5cc 40%,
    #ffeb99 70%,
    #ffcc00 100%
  );
}

.cp-clear-top__ttl {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 16px;
  bottom: 11px;
  width: 90%;
}

.cp-clear-top__img {
  width: 17%;
  height: 17%;
}

.cp-clear-top__ttl2 {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 5%;
}

@media (min-width: 768px) {
  .cp-clear-top__body {
    padding: 15px 12px;
  }

  .cp-clear-top__ttl2 {
    padding-left: 18px;
  }
}

/* cp-campaign-lp-kanban */
.cp-campaign-lp-kanban {
  background-color: #54becc;
  overflow: hidden;
}

.cp-campaign-lp__free-inspection {
  margin-left: 0;
  margin-right: 0;
}

.cp-campaign-lp__free-inspection .cp-container__inner {
  background-color: #fff;
  padding-bottom: 15px;
  max-width: 796px;
  border: 1px solid #a2dce3;
  border-radius: 4px;
  padding-top: 10px;
}

.cp-campaign-lp__free-inspection .cp-top-content__free-inspection-catch-phrase {
  color: #333;
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}

.cp-campaign-lp__free-inspection .cp-top-content__free-inspection-catch-phrase span {
  color: #bf0000;
  white-space: nowrap;
}

.cp-recent-sales-campaign .cp-recent-sales-item {
  margin-bottom: 30px;
  margin-top: 40px;
}

.cp-recent-sales-campaign .cp-recent-sales-item-list {
  max-width: 400px;
  margin: 0 auto;
}

.cp-recent-sales-campaign .cp-recent-sales-item-pic {
  text-align: center;
  background-color: #ebebeb;
  height: auto;
  padding-bottom: 0;
  position: relative;
}

.cp-recent-sales-campaign .cp-recent-sales-item-pic img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
}

.cp-recent-sales-item-bubble {
  position: absolute;
  z-index: 2;
  top: -15%;
  left: 50%;
  transform: translate(-50%, 0);
}

.cp-campaign-lp .cp-top-widget {
  border: 1px solid #54becc;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .cp-recent-sales-campaign .cp-recent-sales-item-list {
    max-width: 700px;
  }
}

.cp-campaign-lp-kanban__overhead-wrapper {
  background-color: #fff;
  max-width: 450px;
  width: 100%;
  position: relative;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
  margin: 12px auto 20px auto;
}

.cp-campaign-lp-kanban__overhead-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #f6eddd;
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: -6px;
}

.cp-campaign-lp-kanban__overhead-subtitle {
  font-size: 17px;
  color: #fffc51;
  position: relative;
  text-align: center;
  display: inline-flex;
  font-weight: bold;
  max-width: calc(100% - 12px);
  align-items: center;
  margin-bottom: 0;
  z-index: 3;
}

.cp-campaign-lp-kanban__overhead-subtitle span {
  background-color: #54becc;
  padding: 4px 12px;
}

.cp-campaign-lp-kanban__overhead-subtitle::before,
.cp-campaign-lp-kanban__overhead-subtitle::after {
  content: "";
  display: block;
  height: 5px;
  border-top: 2px solid #54becc;
  border-bottom: 2px solid #54becc;
  width: 36px;
}

.cp-campaign-lp-kanban__overhead-title {
  color: #bf0000;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  line-height: 52px;
}

@media (min-width: 450px) {
  .cp-campaign-lp-kanban__overhead-title {
    font-size: 30px;
  }
}

.cp-campaign-lp-kanban .cp-container__inner {
  max-width: 860px;
}

.cp-campaign-lp-kanban__title {
  margin-bottom: 10px;
}

.cp-campaign-lp-kanban__title p {
  margin-bottom: 0;
  text-align: left;
  text-align: center;
}

.cp-campaign-lp-kanban__title p:first-child {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.cp-campaign-lp-kanban__title p:first-child > span {
  color: #fffc51;
  font-weight: bold;
}

.cp-campaign-lp-kanban__title p:nth-child(2) {
  color: #fffc51;
  font-size: 30px;
  letter-spacing: 0px;
  font-weight: bold;
}

.cp-campaign-lp-kanban__text {
  font-size: 12px;
  color: #fff;
  padding-left: 2em;
}

.cp-campaign-lp-kanban__text ul li {
  list-style-type: disc;
  font-weight: bold;
}

.cp-recent-sales-item-img {
  position: relative;
  display: inline-block;
}

.cp-recent-sales-item-img::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: -100vw;
  background: url("/assets/img/campaign/bg_points-repeat.png") left top repeat-x;
  background-size: auto 100%;
}

.cp-campaign-lp-kanban__pic {
  text-align: center;
  margin-bottom: 25px;
}

.cp-campaign-lp-kanban__points {
  margin-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .cp-campaign-lp-kanban__points,
  .cp-campaign-lp-kanban__pic {
    width: 400px;
    margin-bottom: 0;
  }

  .cp-campaign-lp-kanban__title {
    margin-bottom: 0;
  }

  .cp-campaign-lp-kanban__title p:nth-child(2) {
    font-size: 36px;
  }

  .cp-campaign-lp-kanban__title p:first-child {
    font-size: 26px;
  }
}

/* cp-campaign-lp-steps */
.cp-campaign-lp-steps-list {
  padding-top: 20px;
  align-items: stretch;
}

.cp-campaign-lp-steps .cp-container__inner > div {
  border: 1px solid #54becc;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.cp-campaign-lp-steps .cp-title__h1 {
  text-align: center;
  justify-content: center;
  background-color: #54becc;
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 0;
}

.cp-campaign-lp-steps-item {
  margin-bottom: 20px;
}

.cp-campaign-lp-steps-item-wrapper {
  border: 1px solid #54becc;
  height: 100%;
  flex-direction: column;
  display: flex;
}

.cp-campaign-lp-steps-item__head {
  display: flex;
  align-items: stretch;
}

.cp-campaign-lp-steps-item__head p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: bold;
  width: 100%;
}

.cp-campaign-lp-steps-item__head > div:first-child p {
  padding: 4px;
  font-size: 11px;
  color: #fff;
  display: inline-block;
  background-color: #54becc;
  text-align: center;
  line-height: 14px;
}

.cp-campaign-lp-steps-item__head > div:nth-child(2) {
  flex-grow: 1;
  padding: 0 6px;
  display: flex;
  align-items: center;
  height: 100%;
}

.cp-campaign-lp-steps-item__name {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  flex-grow: 1;
}

.cp-campaign-lp-steps-item__name > p {
  margin-bottom: 0;
  font-weight: bold;
}

.cp-campaign-lp-steps-item__name > p:first-child {
  font-size: 18px;
  line-height: 20px;
}

.cp-campaign-lp-steps-item__name > p:last-child {
  padding-bottom: 12px;
}

.cp-campaign-lp-steps-item--red .cp-campaign-lp-steps-item-wrapper {
  background-color: #bf0000;
  border: 1px solid #bf0000;
}

.cp-campaign-lp-steps-item--red .cp-campaign-lp-steps-item__head {
  color: #fff;
}

.cp-campaign-lp-steps-item--red .cp-campaign-lp-steps-item__head div:first-child p {
  color: #bf0000;
  background-color: #fff;
}

.cp-campaign-lp-steps-item--red .cp-campaign-lp-steps-item__head div:nth-child(2) p {
  font-size: 18px;
}

/* cp-campaign-telephone-block */
.cp-campaign-telephone-block > .col-12 {
  background-color: #fff;
  padding: 24px 16px;
}

.cp-campaign-telephone-number a {
  font-size: 32px;
  color: #bf0000;
  line-height: 26px;
}

/* pristine-error */
.pristine-error {
  display: none;
}

/* cp-campaign__sp-warning */
.cp-campaign__sp-warning {
  width: 100%;
  max-width: 500px;
  background-color: #54becc;
  display: flex;
  margin: 0 auto;
  align-items: center;
  padding: 8px;
  padding-left: 24px;
}

.cp-campaign__sp-warning > div {
  width: 50px;
  height: 50px;
}

.cp-campaign__sp-warning > div > img {
  width: 100%;
  height: auto;
}

.cp-campaign__sp-warning > p {
  color: #fff;
  margin-bottom: 0;
  font-weight: bold;
  font-size: 12px;
  padding-right: 8px;
  width: calc(100% - 50px);
}

@media (min-width: 500px) {
  .cp-campaign__sp-warning > div {
    width: 80px;
    height: 80px;
  }

  .cp-campaign__sp-warning > p {
    font-size: 14px;
    width: calc(100% - 80px);
  }
}

/* cp-campaign-lp__type02 */
.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-wrapper {
  background: url("/assets/img/campaign/img_cloud_01.png") no-repeat;
  background-position: center bottom;
  background-size: 420px auto;
  width: calc(100% + 24px);
  height: 153px;
  margin: 0 -12px;
  padding: 12px 12px 0 12px;
  max-width: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-wrapper::after,
.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-subtitle::before,
.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-subtitle::after {
  display: none;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-subtitle span {
  background-color: transparent;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__text {
  position: relative;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban .cp-container__inner {
  padding-bottom: 10%;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban .cp-container__inner > img {
  position: absolute;
  bottom: -5%;
  left: -30%;
  z-index: 0;
  max-width: none;
  width: 110%;
  max-width: 650px;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban .cp-container__inner > div {
  z-index: 1;
  position: relative;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__text > img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: none;
  width: 100%;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-title {
  font-size: 22px;
  color: #000;
  line-height: 30px;
  margin-top: 4px;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-title span {
  white-space: nowrap;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__pic img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 140%;
  height: auto;
  max-width: 690px;
}

.cp-campaign-lp__type02 .cp-campaign-lp-kanban__pic {
  margin-top: 10px;
  padding-top: 28%;
}

@media (min-width: 500px) {
  .cp-campaign-lp__type02 .cp-campaign-lp-kanban__pic img {
    width: 150%;
    max-width: 724px;
    margin-top: 10px;
  }
}

@media (min-width: 450px) {
  .cp-campaign-lp__type02 .cp-campaign-lp-kanban__overhead-wrapper {
    background-size: 816px auto;
  }
}

@media (min-width: 768px) {
  .cp-campaign-lp__type02 .cp-campaign-lp-kanban .cp-container__inner > img {
    bottom: -105px;
    left: -162px;
    width: 80%;
  }

  .cp-campaign-lp__type02 .cp-campaign-lp-kanban .cp-container__inner {
    padding-bottom: 0%;
  }

  .cp-campaign-lp__type02 .cp-campaign-lp-kanban__pic {
    padding-top: 21%;
  }
}

/* cp-campaign-horizontal-table */
.cp-campaign-horizontal-table th,
.cp-campaign-horizontal-table td {
  padding: 6px 12px;
  border-color: #54becc;
}

.cp-linkage-lp-rules-wrapper .cp-campaign-horizontal-table.cp-linkage-lp-rules-content {
  max-height: none;
}

.cp-campaign-horizontal-table.cp-linkage-lp-rules-content th,
.cp-campaign-horizontal-table.cp-linkage-lp-rules-content td {
  border-width: 0;
  border-bottom-width: 1px;
  border-style: solid;
}

.cp-campaign-horizontal-table.cp-campaign-horizontal-table th + th,
.cp-campaign-horizontal-table.cp-linkage-lp-rules-content td + td {
  border-left-width: 1px;
}

.cp-campaign-horizontal-table.cp-linkage-lp-rules-content th,
.cp-campaign-horizontal-table.cp-linkage-lp-rules-content td {
  display: table-cell;
}

.cp-campaign-horizontal-table.cp-linkage-lp-rules-content td:not(:first-child) {
  min-width: 98px;
}

.cp-campaign-horizontal-table.cp-linkage-lp-rules-content th,
.cp-campaign-horizontal-table.cp-linkage-lp-rules-content td {
  font-size: 11px;
}

.cp-campaign-horizontal-table.cp-linkage-lp-rules-content {
  border: 1px #54becc solid;
  border-bottom-width: 0px;
}

@media (min-width: 640px) {
  .cp-campaign-horizontal-table.cp-linkage-lp-rules-content th,
  .cp-campaign-horizontal-table.cp-linkage-lp-rules-content td {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* cp-campaign-lp__ana */
.cp-campaign-lp__ana .cp-campaign-lp-kanban__overhead-subtitle img {
  width: 70px;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__overhead-title span:first-child {
  color: #bf0000;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__overhead-title span:nth-child(2) {
  color: #073190;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__title p:nth-child(2) {
  color: #fff;
  font-size: 14px;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__title p:nth-child(2) span {
  color: #fffc51;
  font-size: 25px;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__button {
  display: block;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.cp-campaign-lp__ana .cp-campaign-lp-kanban__text .cp-campaign-lp-kanban__button {
  display: none;
}

@media (min-width: 745px) {
  .cp-campaign-lp__ana .cp-campaign-lp-kanban__title p:nth-child(2) {
    font-size: 36px;
  }

  .cp-campaign-lp__ana .cp-campaign-lp-kanban__title p:nth-child(2) span {
    font-size: 42px;
  }
}

@media (min-width: 500px) {
  .cp-campaign-lp__ana .cp-campaign-lp-kanban__button {
    display: none;
  }

  .cp-campaign-lp__ana .cp-campaign-lp-kanban__text .cp-campaign-lp-kanban__button {
    display: block;
  }
}

/* cp-campaign-lp__jal */
.cp-campaign-lp__jal .cp-campaign-lp-kanban__overhead-subtitle img {
  width: 256px;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__overhead-title span {
  color: #bf0000;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) {
  color: #fff;
  font-size: 14px;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) span {
  color: #fffc51;
  font-size: 25px;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) {
  color: #fff;
  font-size: 14px;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) span {
  color: #fffc51;
  font-size: 25px;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__button {
  display: block;
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

.cp-campaign-lp__jal .cp-campaign-lp-kanban__text .cp-campaign-lp-kanban__button {
  display: none;
}

@media (min-width: 745px) {
  .cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) {
    font-size: 36px;
  }

  .cp-campaign-lp__jal .cp-campaign-lp-kanban__title p:nth-child(2) span {
    font-size: 42px;
  }
}

@media (min-width: 500px) {
  .cp-campaign-lp__jal .cp-campaign-lp-kanban__button {
    display: none;
  }

  .cp-campaign-lp__jal .cp-campaign-lp-kanban__text .cp-campaign-lp-kanban__button {
    display: block;
  }
}

/* cp-campaign-lp__mitsui */
.cp-campaign-lp__mitsui .cp-campaign-lp-kanban .cp-container__inner {
  max-width: 960px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban__wrapper {
  position: relative;
  margin-bottom: 20px;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban {
  padding-top: 60px;
  background: url("/assets/img/campaign/bg_pattern01.png") repeat;
  padding-bottom: 40px;
}

.cp-campaign-lp-kanban-pic_pc {
  display: none;
}

.cp-campaign-lp-kanban-pic_sp {
  display: inline;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-phone,
.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-car,
.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-2persons {
  position: absolute;
  z-index: 2;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-phone {
  left: 50%;
  top: -35px;
  transform: translate(-50%, 0);
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-2persons {
  bottom: 0px;
  left: 0;
  width: 60%;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-2persons.cp-campaign-lp-kanban-pic_sp {
  bottom: -40px;
  left: 50%;
  width: 100%;
  max-width: 340px;
  transform: translate(-50%, 0);
  z-index: 1;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-2persons.cp-campaign-lp-kanban-pic_pc {
  bottom: 7px;
  left: 0;
  width: 31%;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-car {
  bottom: -20px;
  right: 10px;
  width: 36%;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban-btn {
  padding-top: 124px;
  z-index: 2;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban .cp-container__inner ol {
  margin-bottom: 0;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-kanban .cp-container__inner ol li {
  margin-top: 0;
}

@media (min-width: 550px) {
  .cp-campaign-lp__mitsui .cp-campaign-lp-kanban-btn {
    padding-top: 40px;
  }

  .cp-campaign-lp__mitsui .cp-campaign-lp-kanban .cp-container__inner {
    display: block;
  }

  .cp-campaign-lp-kanban-pic_pc {
    display: inline;
  }

  .cp-campaign-lp-kanban-pic_sp {
    display: none;
  }
}

@media (min-width: 850px) {
  .cp-campaign-lp__mitsui .cp-campaign-lp-kanban-2persons.cp-campaign-lp-kanban-pic_pc {
    bottom: 10px;
  }
}

/* cp-campaign-lp-user-present */
.cp-campaign-lp-user-present {
  padding-top: 0;
}

.cp-campaign-lp-user-present-pics .col-auto {
  max-width: 240px;
  text-align: center;
  width: 50%;
}

.cp-campaign-lp-user-present-pics .col-auto > img {
  max-width: 140px;
}

.cp-campaign-lp__mitsui .cp-campaign-lp-steps-item__head div:nth-child(2) p {
  font-size: 16px;
}

.cp-campaign-lp-steps-item__name > p:first-child small {
  font-size: 11px;
}

/* cp-campaign-lp__birthday-event */
.cp-campaign-lp__birthday-event {
  background-color: #fff1f1;
}

.cp-campaign-lp__birthday .cp-campaign-lp-kanban {
  background: url("/assets/img/campaign/img_kanban-birthday_sp.png") #54becc center top no-repeat;
  color: #fff;
  background-size: cover;
}

.cp-campaign-lp__birthday .cp-campaign-lp-kanban__title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.cp-campaign-lp__birthday .cp-campaign-lp-kanban__title span {
  font-size: 1.3em;
  color: #fffc51;
}

.cp-campaign-lp-kanban__birthday-title {
  color: #fffc51;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}

.cp-campaign-lp__birthday .cp-campaign-lp-kanban__pic {
  margin-bottom: 0;
}

@media (min-width: 870px) {
  .cp-campaign-lp-kanban__birthday-title {
    font-size: 42px;
  }
}

@media (min-width: 850px) {
  .cp-campaign-lp__birthday .cp-campaign-lp-kanban__title {
    font-size: 18px;
  }

  .cp-campaign-lp__birthday .cp-campaign-lp-kanban__title span {
    font-size: 1.3em;
  }

  .cp-campaign-lp__birthday .cp-campaign-lp-kanban__pic {
    max-width: 352px;
  }
}

@media (min-width: 640px) {
  .cp-campaign-lp__birthday .cp-campaign-lp-kanban {
    background: url("/assets/img/campaign/img_kanban-birthday.png") #54becc center top no-repeat;
  }
}

/* IE-error */
[data-ie-error="true"] {
  display: block;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ie-error {
    display: block !important;
    color: #bf0000;
  }
}

/* cp-text__red */
.cp-text__red {
  color: #bf0000;
}

/* cp-container */
.cp-container {
  max-width: none;
}

.cp-container__wrapper {
  font-size: 14px;
  color: #000;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .cp-container__wrapper {
    font-size: 16px;
  }
}

/* cp-campaign__section */
.cp-campaign__section {
  padding: 24px 12px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__section {
    padding: 32px 12px;
  }
}

/* cp-campaign__content */
.cp-campaign__content {
  max-width: 900px;
  margin: 0 auto;
}

/* cp-campaign__link */
.cp-campaign__link {
  text-underline-offset: 1px;
  text-decoration: underline;
}

.cp-campaign__link:hover {
  color: #19a8db;
  text-decoration-thickness: 2px;
}

/* cp-campaign__ttl */
.cp-campaign__ttl {
  font-weight: 700;
  font-size: 28px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__ttl {
    font-size: 32px;
  }
}

/* cp-campaign__ttl-sub */
.cp-campaign__ttl-sub {
  color: #bf0000;
  font-size: 16px;
}

/* cp-campaign__txt-lrg */
.cp-campaign__txt-lrg {
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__txt-lrg {
    font-size: 24px;
  }
}

/* cp-campaign__txt-mid */
.cp-campaign__txt-mid {
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__txt-mid {
    font-size: 16px;
  }
}

/* cp-campaign__txt-sml */
.cp-campaign__txt-sml {
  font-size: 12px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__txt-sml {
    font-size: 14px;
  }
}

/* cp-campaign__hero */
@media only screen and (min-width: 768px) {
  .cp-campaign__hero {
    position: relative;
    width: 100%;
    height: 336px;
    background: url("/assets/img/campaign/listing_2022/cp_hero_pc.png") no-repeat,
      radial-gradient(circle, #fcfcff 0%, #cdedff 52%);
    background-position: top center;
  }
}

/* cp-campaign__hero-ttl */
.cp-campaign__hero-ttl {
  font-size: 0;
  line-height: 0;
}

/* cp-campaign__hero-txt */
.cp-campaign__hero-txt {
  font-size: 10px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__hero-txt {
    text-align: left;
  }
}

/* cp-campaign__hero-wrap */
.cp-campaign__hero-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
}

/* cp-campaign__hero-img */
.cp-campaign__hero-img {
  width: 900px;
  margin: 0 auto;
}

/* cp-campaign__form */
.cp-campaign__form {
  margin: 24px 0;
  padding: 0 12px;
  background: #f7f7f7;
  border-top: 2px solid #bf0000;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__form {
    border: none;
    background: #fff;
  }
}

/* cp-campaign__movie-wrap */
.cp-campaign__movie-wrap {
  margin: 20px auto;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__movie-wrap {
    width: 420px;
  }
}

/* cp-campaign__movie-inner */
.cp-campaign__movie-inner {
  position: relative;
  padding: 56.25% 0 0;
}

/* cp-campaign__movie-iframe */
.cp-campaign__movie-iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* cp-campaign__point */
.cp-campaign__point {
  background: url("/assets/img/campaign/listing_2022/cp_campaign_sell_bg_sp.jpg") no-repeat;
  background-position: top center;
  background-size: contain;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__point {
    background: url("/assets/img/campaign/listing_2022/cp_campaign_sell_bg_pc.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}

/* cp-campaign__point-wrap */
.cp-campaign__point-wrap {
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
}

/* cp-campaign__sell-arrow */
.cp-campaign__sell-arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #19a8db;
}

/* cp-campaign__sell-ttl */
.cp-campaign__sell-ttl {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__sell-ttl {
    font-size: 32px;
  }
}

/* cp-campaign__sell-sub */
.cp-campaign__sell-sub {
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__sell-sub {
    font-size: 24px;
  }
}

/* cp-campaign__group */
.cp-campaign__group {
  background: url("/assets/img/campaign/listing_2022/cp_campaign_group_bg_sp.jpg") no-repeat;
  background-position: top center;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__group {
    background: url("/assets/img/campaign/listing_2022/cp_campaign_group_bg_pc.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}

/* cp-campaign__step */
.cp-campaign__step {
  background: url("/assets/img/campaign/listing_2022/cp_campaign_step_bg_sp.png") no-repeat;
  background-position: top center;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__step {
    background: url("/assets/img/campaign/listing_2022/cp_campaign_step_bg_pc.png") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}

/* cp-campaign__step-wrap */
.cp-campaign__step-wrap {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.9);
}

/* cp-campaign__step-ttl */
.cp-campaign__step-ttl {
  font-size: 20px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__step-ttl {
    font-size: 24px;
  }
}

/* cp-campaign__step-img */
.cp-campaign__step-img {
  max-width: 80px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__step-img {
    max-width: none;
  }
}

/* cp-campaign__item */
.cp-campaign__item {
  margin: 0 0 24px 0;
}

/* cp-campaign__item-wrap */
.cp-campaign__item-wrap {
  border-bottom: 1px solid #ffd3d3;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-wrap {
    border-bottom: none;
  }
}

/* cp-campaign__item-img */
.cp-campaign__item-img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-img {
    max-width: 141px;
  }
}

/* cp-campaign__item-name */
.cp-campaign__item-name {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-name {
    text-align: left;
    font-size: clamp(16px, 2vw, 18px);
  }
}

/* cp-campaign__item-info */
.cp-campaign__item-info {
  font-size: 11px;
  color: #686868;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-info {
    font-size: clamp(11px, 1.4vw, 12px);
  }
}

/* cp-campaign__item-row */
.cp-campaign__item-row {
  margin-top: 4px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-row {
    margin-top: -8px;
  }
}

/* cp-campaign__item-price */
.cp-campaign__item-price {
  font-size: 12px;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-price {
    justify-content: start;
  }
}

/* cp-campaign__item-price-original */
.cp-campaign__item-price-original {
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-price-original {
    font-size: clamp(16px, 2vw, 20px);
  }
}

/* cp-campaign__item-price-final */
.cp-campaign__item-price-final {
  font-size: 16px;
  font-weight: 700;
  color: #bf0000;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-price-final {
    font-size: clamp(16px, 2vw, 20px);
  }
}

/* cp-campaign__item-point */
.cp-campaign__item-point {
  margin-top: 8px;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 11px;
  color: #bf0000;
  border-radius: 6px;
  border: 1px solid #fb9a9a;
  background-color: #ffe8e8;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-point {
    font-size: clamp(11px, 1.4vw, 14px);
  }
}

/* cp-campaign__item-point-arrow */
.cp-campaign__item-point-arrow {
  margin: -4px 2px 0 0;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-point-arrow {
    margin: -8px 2px 0 0;
  }
}

/* cp-campaign__item-point-date */
.cp-campaign__item-point-date {
  font-size: 12px;
  color: #686868;
}

/* cp-campaign__item-point-num */
.cp-campaign__item-point-num {
  font-size: 22px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-point-num {
    font-size: clamp(22px, 3vw, 28px);
  }
}

/* cp-campaign__item-point-up */
.cp-campaign__item-point-up {
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__item-point-up {
    font-size: clamp(16px, 2vw, 20px);
  }
}
/*
@media only screen and (min-width: 768px) {
  .cp-campaign__review {
    border-top: 1px solid #d1d1d1;
  }
}


.cp-campaign__review-wrap {
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__review-wrap {
    margin-bottom: 40px;
  }
}


.cp-campaign__review-ttl {
  font-size: 16px;
}

.cp-campaign__review-box {
  position: relative;
  padding: 12px 20px 12px 12px;
  border-radius: 8px;
  background: rgba(0, 127, 180, 0.5);
  z-index: 2;
}

.cp-campaign__review-box::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  z-index: 1;
}

.cp-campaign__review-arrow {
  position: absolute;
  right: -5px;
  top: 20%;
  width: 0;
  height: 0;
  border-width: 24px 16px 0 0;
  border-color: rgba(0, 127, 180, 0.75) transparent transparent transparent;
  border-style: solid;
  z-index: 3;
}

.cp-campaign__review-arrow::after {
  content: "";
  position: absolute;
  top: -23px;
  left: -2px;
  width: 0;
  height: 0;
  border-width: 24px 16px 0 0;
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  z-index: 4;
}

.cp-campaign__review-comment {
  position: relative;
  font-size: 16px;
  color: #0074ad;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__review-comment {
    font-size: 18px;
  }
}

.cp-campaign__review-commentsub {
  position: relative;
  z-index: 2;
}

.cp-campaign__review-img {
  min-width: 84px;
  max-width: 120px;
}
*/
/* cp-campaign__faq */
.cp-campaign__faq {
  background: #f7f7f7;
}

/* cp-campaign__faq-accordion */
.cp-campaign__faq-accordion {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  color: #333;
  background: #fff;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__faq-accordion {
    font-size: 14px;
  }
}

.cp-campaign__faq-accordion:hover {
  color: #333;
}

.cp-campaign__faq-accordion::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 26px;
  right: 16px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  border-bottom: 6px solid transparent;
  z-index: 4;
}

.cp-campaign__faq-accordion.active {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cp-campaign__faq-accordion.active::after {
  top: 20px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid #333;
}

/* cp-campaign__faq-answer */
.cp-campaign__faq-answer {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 24px;
  text-align: left;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
  border: none;
  background: #fff;
}

.cp-campaign__faq-answer-txt {
  padding: 12px;
  border-radius: 4px;
  background: #f7f7f7;
}

/* cp-campaign__end */
.cp-campaign__end {
  background: #eefbff;
}

/* cp-campaign__decoration */
.cp-campaign__decoration {
  position: relative;
  z-index: 1;
}

.cp-campaign__decoration::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 134px;
  height: 13px;
  background: url("/assets/img/campaign/listing_2022/cp_campaign_brush.png") no-repeat;
  background-position: bottom center;
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__decoration::after {
    width: 216px;
    height: 21px;
  }
}

/* cp-campaign__floating */
.cp-campaign__floating {
  position: fixed;
  bottom: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9;
}

.cp-campaign__floating.visible,
.cp-campaign__floating.top {
  bottom: 0;
  transition: bottom 0.2s;
}

.cp-campaign__floating.bottom {
  bottom: -100%;
  transition: bottom 0.2s;
}

/* cp-campaign__floating-wrap */
.cp-campaign__floating-wrap {
  padding: 8px 12px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__floating-wrap {
    padding: 12px 8px;
  }
}

/* cp-campaign__btn */
.cp-campaign__btn {
  padding: 4px 0;
  max-width: 524px;
}

.cp-campaign__btn:hover {
  color: #fff;
  text-decoration: none;
}

/* cp-campaign__btn-deco */
.cp-campaign__btn-deco {
  font-size: 14px;
  color: #ffeb99;
}

/* cp-campaign__btn-register */
.cp-campaign__btn-register {
  font-size: 18px;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .cp-campaign__btn-register {
    font-size: 22px;
  }
}

/* cp-campaign-widget */
.cp-campaign-widget {
  padding: 16px 12px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget {
    padding: 24px 32px;
    border: 2px solid #bf0000;
    background: #f7f7f7;
  }
}

/* cp-campaign-widget__ttl */
.cp-campaign-widget__ttl {
  font-weight: 700;
  font-size: 18px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget__ttl {
    font-size: 24px;
  }
}

/* cp-campaign-widget__subttl */
.cp-campaign-widget__subttl {
  font-weight: 700;
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget__subttl {
    font-size: 20px;
  }
}

/* cp-campaign-widget__wrapper */
.cp-campaign-widget__wrapper {
  max-width: 416px;
  margin: 0 auto;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget__wrapper {
    font-size: 14px;
    max-width: none;
  }
}

/* cp-campaign-widget .cp-form-wrapper */
.cp-campaign-widget .cp-form-wrapper {
  background: #f7f7f7;
}

/* cp-campaign-widget .cp-form__error-text */
.cp-campaign-widget .cp-form__error-text {
  margin-top: 4px;
  font-size: 12px;
}

/* cp-campaign-widget .cp-form__error-bg */
.cp-campaign-widget .cp-form__error-bg {
  padding: 8px;
  text-align: left;
  background: #fff0f0;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget .cp-form__error-bg {
    text-align: center;
  }
}

/* cp-campaign-widget .cp-form__require */
.cp-campaign-widget .cp-form__require {
  padding: 2px 6px 0 6px;
  font-size: 9px;
  font-weight: 400;
  margin-left: 8px;
}

/* cp-campaign-widget .cp-form-notice */
.cp-campaign-widget .cp-form-notice {
  font-size: 11px;
  letter-spacing: -0.01em;
  line-height: 1.4em;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget .cp-form-notice {
    font-size: 12px;
    text-align: center;
  }
}

/* cp-campaign-widget .cp-form-border */
.cp-campaign-widget .cp-form-border {
  width: 1px;
  height: 100%;
  background: #d1d1d1;
}

/* cp-campaign-widget .cp-form-btn */
.cp-campaign-widget .cp-form-btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  max-width: 360px;
  height: 56px;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  color: #898989;
  background-color: #dfdfdf;
  pointer-events: none;
}

/* cp-campaign-widget .cp-form-btn--active */
.cp-campaign-widget .cp-form-btn--active {
  color: #fff;
  background-color: #bf0000;
  cursor: pointer;
  pointer-events: all;
}

.cp-campaign-widget .cp-form-btn--active:hover {
  background-color: #d80000;
}

/* cp-campaign-widget .cp-form__input */
.cp-campaign-widget .cp-form__input {
  max-width: 416px;
  padding: 7px;
  text-indent: 8px;
  height: 40px;
  border: 1px solid #828282;
}

.cp-campaign-widget .cp-form__input::placeholder {
  color: #686868;
}

/* cp-campaign-widget .cp-form__select */
.cp-campaign-widget .cp-form__select {
  max-width: 416px;
  padding: 7px;
  text-indent: 8px;
  height: 40px;
  font-size: 16px;
  border: 1px solid #828282;
  background-image: url("/assets/img/common/icon_arrow.svg");
  background-size: 10px 5px;
  background-position: 98% center;
}

.cp-campaign-widget .cp-form__select::placeholder {
  color: #686868;
}

.cp-campaign-widget .cp-form__select:disabled {
  border: none;
  opacity: 1;
}

/* cp-campaign-widget .cp-form__submit */
.cp-campaign-widget .cp-form__submit {
  padding: 12px 0;
  font-size: 16px;
  max-width: 360px;
}

/* cp-campaign-widget .cp-form__sub */
.cp-campaign-widget .cp-form__sub {
  font-size: 11px;
  letter-spacing: -0.01em;
  line-height: 1.4em;
}

@media only screen and (min-width: 768px) {
  .cp-campaign-widget .cp-form__sub {
    font-size: 12px;
  }
}

/* cp-container-2023nl */
.cp-container-2023nl {
  max-width: none;
}

.cp-container-2023nl__wrapper {
  font-size: 14px;
  color: #000;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .cp-container-2023nl__wrapper {
    font-size: 16px;
  }
}

/* cp-campaign-2037nl__section */
.cp-campaign-2037nl__section {
  padding: 24px 12px;
  background-color: #f7f7f7;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__section {
    padding: 32px 12px;
  }
}

/* cp-campaign-2037nl__end-section */
.cp-campaign-2037nl__end-section {
  padding: 24px 12px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__end-section {
    padding: 32px 12px;
  }
}

/* cp-campaign-2037nl__hero-title */
.cp-campaign-2037nl__hero-title {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

/* cp-campaign-2037nl__form */
.cp-campaign-2037nl__form {
  margin: 0;
  padding: 0 12px;
  background-color: #f7f7f7;
  border-top: 2px solid #bf0000;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__form {
    margin: 24px 0;
    border: none;
    background-color: #fff;
  }
}

/* cp-campaign-2037nl__content */
.cp-campaign-2037nl__content {
  max-width: 900px;
  margin: 0 auto;
}

/* cp-campaign-2037nl__bg */
.cp-campaign-2037nl__bg {
  padding: 0 24px 32px;
  background: rgba(255, 255, 255, 0.9);
}

/* cp-campaign-2037nl__banner-img */
.cp-campaign-2037nl__banner-img {
  width: 100%;
}

/* cp-campaign-2037nl__title */
.cp-campaign-2037nl__title {
  font-size: 28px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__title {
    font-size: 32px;
  }
}

/* cp-campaign-2037nl__title-sub */
.cp-campaign-2037nl__title-sub {
  font-size: 16px;
}

/* cp-campaign-2037nl__point-bg */
.cp-campaign-2037nl__point-bg {
  background: url("/assets/img/common-2307nl/cp_campaign_sell_bg_sp.jpg") no-repeat;
  background-position: top center;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__point-bg {
    background: url("/assets/img/common-2307nl/cp_campaign_sell_bg_pc.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
  }
}

/* cp-campaign-2037nl__point-content */
.cp-campaign-2037nl__point-content {
  border: 1px solid;
  padding: 12px;
}

/* cp-campaign-2037nl__point-desc */
.cp-campaign-2037nl__point-desc {
  display: flex;
  margin: 8px -12px 0;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__point-desc {
    flex-wrap: wrap;
  }
}

/* cp-campaign-2037nl__point-num */
.cp-campaign-2037nl__point-num {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

/* cp-campaign-2037nl__txt-lrg */
.cp-campaign-2037nl__txt-lrg {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__txt-lrg {
    font-size: 24px;
  }
}

/* cp-campaign-2037nl__link */
.cp-campaign-2037nl__link {
  text-underline-offset: 1px;
  text-decoration: underline;
}

/* cp-campaign-2037nl__txt-sml */
.cp-campaign-2037nl__txt-sml {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__txt-sml {
    font-size: 14px;
  }
}

/* cp-campaign-2037nl__sell-arrow */
.cp-campaign-2037nl__sell-arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #000;
}

/* cp-campaign-2037nl__sell-flow */
@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__sell-flow {
    border: 1px solid;
    padding: 20px 24px;
  }
}

/* cp-campaign-2037nl__sell-title */
.cp-campaign-2037nl__sell-title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}

/* cp-campaign-2037nl__sell-sub */
.cp-campaign-2037nl__sell-sub {
  font-size: 18px;
}

/* cp-campaign-2037nl__group-bg */
.cp-campaign-2037nl__group-bg {
  background-color: #f7f7f7;
}

/* cp-campaign-2037nl__group-link */
.cp-campaign-2037nl__group-link {
  color: #333;
  text-underline-offset: 1px;
  text-decoration: underline;
  font-weight: 700;
}

.cp-campaign-2037nl__group-link:hover {
  text-decoration-thickness: 0.2rem;
  color: #333;
}

/* cp-campaign-2037nl__step-wrap-nl */
.cp-campaign-2037nl__step-wrap-nl {
  padding: 16px 0;
}

/* cp-campaign-2037nl__step-title */
.cp-campaign-2037nl__step-title {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__step-title {
    font-size: 24px;
  }
}

/* cp-campaign-2037nl__step-bg */
.cp-campaign-2037nl__step-bg {
  background: url("/assets/img/common-2307nl/cp_campaign_step_bg_pc.png") no-repeat;
  background-position: top right;
  background-size: auto;
}

/* cp-campaign-2037nl__step-image */
.cp-campaign-2037nl__step-image {
  width: 100%;
  max-width: 112px;
  margin-right: 8px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__step-image {
    max-width: 265px;
  }
}

/* cp-campaign-2037nl__auction-bg */
.cp-campaign-2037nl__auction-bg {
  background: url("/assets/img/common-2307nl/cp_campaign_auction_bg_sp.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__auction-bg {
    background: url("/assets/img/common-2307nl/cp_campaign_auction_bg_pc.png") no-repeat;
    background-size: cover;
    background-color: #f7f7f7;
  }
}

/* cp-campaign-2037nl__auction-wrap */
.cp-campaign-2037nl__auction-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__auction-wrap {
    margin: 0 -16px;
    padding: 8px;
  }
}

/* cp-campaign-2037nl__auction-card */
.cp-campaign-2037nl__auction-card {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

/* cp-campaign-2037nl__auction-img */
.cp-campaign-2037nl__auction-img {
  max-width: 131px;
}

/* cp-campaign-2037nl__auction-detail */
.cp-campaign-2037nl__auction-detail {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  margin: 0 8px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__auction-item {
    max-width: 288px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 8px;
    margin: 8px;
  }
}

.cp-campaign-2037nl__auction-item:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.04);
  border: none;
}

/* cp-campaign-2037nl__auction-name */
.cp-campaign-2037nl__auction-name {
  font-weight: 700;
  font-size: 18px;
}

/* cp-campaign-2037nl__auction-info */
.cp-campaign-2037nl__auction-info {
  align-items: baseline;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__auction-info {
    display: flex;
    justify-content: space-between;
  }
}

/* cp-campaign-2037nl__auction-price-original */
.cp-campaign-2037nl__auction-price-original {
  font-size: 16px;
  font-weight: 700;
}

/* cp-campaign-2037nl__auction-final */
.cp-campaign-2037nl__auction-final {
  font-weight: 700;
}

/* cp-campaign-2037nl__auction-price-final */
.cp-campaign-2037nl__auction-price-final {
  font-size: 16px;
  font-weight: 700;
}

/* cp-campaign-2037nl__auction-point */
.cp-campaign-2037nl__auction-point {
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
}

/* cp-campaign-2037nl__auction-model */
.cp-campaign-2037nl__auction-model {
  width: 100%;
}

/* cp-campaign-2037nl__auction-point-num */
.cp-campaign-2037nl__auction-point-num {
  font-size: 24px;
  font-weight: 700;
}

/* cp-campaign-2037nl__auction-point-up */
.cp-campaign-2037nl__auction-point-up {
  font-size: 18px;
  font-weight: 700;
}

/* cp-campaign-2037nl__auction-start */
.cp-campaign-2037nl__auction-start {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}

/* cp-campaign-2037nl__auction-date */
.cp-campaign-2037nl__auction-date {
  font-size: 11px;
}

/* cp-campaign-2037nl__auction-arrow */
.cp-campaign-2037nl__auction-arrow {
  margin: -4px 2px 0 0;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__auction-arrow {
    margin: -8px 4px 0 0;
  }
}

/* cp-campaign-2037nl__price-yen */
.cp-campaign-2037nl__price-yen {
  font-size: 12px;
  font-weight: 700;
}

/* 
.cp-campaign-2037nl__review {
  background-color: #fff;
}

.cp-campaign-2037nl__review-header {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

.cp-campaign-2037nl__review-info {
  font-size: 14px;
  font-weight: 700;
  margin: 0 16px;
}

.cp-campaign-2037nl__review-desc {
  padding: 16px 0;
}

.cp-campaign-2037nl__review-title {
  font-weight: 700;
}

.cp-campaign-2037nl__review-sub {
  position: relative;
  z-index: 2;
}
*/
/* cp-campaign-2037nl__web-text */
.cp-campaign-2037nl__web-text {
  color: #fff;
  font-size: 14px;
}

/* cp-campaign-2037nl__register-text */
.cp-campaign-2037nl__register-text {
  color: #fff;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__register-text {
    font-size: 22px;
  }
}

/* cp-campaign-2037nl__faq-accordion */
.cp-campaign-2037nl__faq-accordion {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ebebeb;
  border-bottom: none;
  color: #333;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__faq-accordion {
    font-size: 14px;
  }
}

.cp-campaign-2037nl__faq-accordion::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 26px;
  right: 16px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  border-bottom: 6px solid transparent;
  z-index: 4;
}

.cp-campaign-2037nl__faq-accordion.active::after {
  top: 20px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid #333;
}

/* cp-campaign-2037nl__faq-answer */
.cp-campaign-2037nl__faq-answer {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 24px;
  text-align: left;
  font-size: 14px;
  color: #333;
  border-radius: 4px;
  border: 1px solid #ebebeb;
  border-top: none;
  background: #fff;
}

.cp-campaign-2037nl__txt-answer {
  padding: 12px;
  border-radius: 4px;
  background: #f7f7f7;
}

/* cp-campaign-2037nl__txt-mid */
.cp-campaign-2037nl__txt-mid {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__txt-mid {
    font-size: 16px;
  }
}

/* cp-campaign-2037nl__end-content */
.cp-campaign-2037nl__end-content {
  background-color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__end-content {
    font-size: 32px;
  }
}

/* cp-campaign-2037nl__end-sub */
.cp-campaign-2037nl__end-sub {
  color: #bf0000;
  font-size: 16px;
  margin: 0;
}

/* cp-campaign-2037nl__end-title */
.cp-campaign-2037nl__end-title {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__end-title {
    font-size: 24px;
  }
}

/* cp-campaign-2037nl__btn */
.cp-campaign-2037nl__btn {
  padding: 4px 0;
  max-width: 524px;
}

/* cp-campaign-2037nl__floating */
.cp-campaign-2037nl__floating {
  position: fixed;
  bottom: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9;
}

.cp-campaign-2037nl__floating.visible,
.cp-campaign-2037nl__floating.top {
  bottom: 0;
  transition: bottom 0.2s;
}

.cp-campaign-2037nl__floating.bottom {
  bottom: -100%;
  transition: bottom 0.2s;
}

/* cp-campaign-2037nl__floating-wrap */
.cp-campaign-2037nl__floating-wrap {
  padding: 8px 12px;
}

@media screen and (min-width: 768px) {
  .cp-campaign-2037nl__floating-wrap {
    padding: 12px 8px;
  }
}

/* cp-campaign-lp-faq */
.cp-campaign-lp-faq .cp-campaign__faq-accordion {
  border: 1px solid #ebebeb;
}

/* cp-breadcrumb--campaign */
.cp-breadcrumb--campaign {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  padding: 16px;
}

@media only screen and (min-width: 992px) {
  .cp-breadcrumb--campaign {
    padding-left: 24px;
  }
}

/* cp-breadcrumb__link--blue */
.cp-breadcrumb__link--blue {
  color: #0085c7;
}

a.cp-breadcrumb__link--blue {
  color: #0085c7;
}

/* cp-result-section__subtitle */
.cp-result-section__subtitle {
  width: 327px;
  height: 128px;
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section__subtitle {
    width: 447px;
    height: 128px;
  }
}

/* cp-result-section-warning */
.cp-result-section-warning {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff5cc;
  margin-bottom: 24px;
  padding: 16px;
}

.cp-result-section-warning__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwIDEuMjVDOC4yNjk0MiAxLjI1IDYuNTc3NjkgMS43NjMxOCA1LjEzODc2IDIuNzI0NjRDMy42OTk4MyAzLjY4NjEgMi41NzgzMiA1LjA1MjY3IDEuOTE2MDYgNi42NTE1MkMxLjI1Mzc5IDguMjUwMzcgMS4wODA1MSAxMC4wMDk3IDEuNDE4MTMgMTEuNzA3QzEuNzU1NzUgMTMuNDA0NCAyLjU4OTExIDE0Ljk2MzUgMy44MTI4MiAxNi4xODcyQzUuMDM2NTMgMTcuNDEwOSA2LjU5NTYzIDE4LjI0NDIgOC4yOTI5NiAxOC41ODE5QzkuOTkwMyAxOC45MTk1IDExLjc0OTYgMTguNzQ2MiAxMy4zNDg1IDE4LjA4MzlDMTQuOTQ3MyAxNy40MjE3IDE2LjMxMzkgMTYuMzAwMiAxNy4yNzU0IDE0Ljg2MTJDMTguMjM2OCAxMy40MjIzIDE4Ljc1IDExLjczMDYgMTguNzUgMTAwLjY3OTM2IDE3LjgyODEgNS40NTM3NiAxNi4xODcyIDMuODEyODJDMTQuNTQ2MiAyLjE3MTg3IDEyLjMyMDYgMS4yNSAxMCAxLjI1Wk0xMCA3LjU5Mzc1QzkuODY3MzEgNy41OTcyOCA5LjczNTM1IDcuNTcyOTcgOS42MTI2MyA3LjUyMjM3QzkuNDg5OTEgNy40NzE3OCA5LjM3OTE1IDcuMzk2MDIgOS4yODc1IDcuM0M5LjE5NjY2IDcuMjA5MDEgOS4xMjQ5OCA3LjEwMDc0IDkuMDc2NjcgNi45ODE1OUM5LjAyODM2IDYuODYyNDMgOS4wMDQ0MiA2LjczNDgxIDkuMDA2MjUgNi42MDYyNUM5LjAwNDUzIDYuNDc1ODUgOS4wMjkxNSA2LjM0NjQ1IDkuMDc4NjQgNi4yMjU4QzkuMTI4MTIgNi4xMDUxNCA5LjIwMTQ2IDUuOTk1NzIgOS4yOTQyNiA1LjkwNDA5QzkuMzg3MDUgNS44MTI0NyA5LjQ5NzM5IDUuNzQwNTIgOS42MTg2NiA1LjY5MjU2QzkuNzM5OTMgNS42NDQ2IDkuODY5NjQgNS42MjE2MiAxMCA1LjYyNUMxMC4xMzM5IDUuNjIxOTEgMTAuMjY3MSA1LjY0NTc3IDEwLjM5MTcgNS42OTUxNkMxMC41MTYyIDUuNzQ0NTQgMTAuNjI5NiA1LjgxODQ2IDEwLjcyNSA1LjkxMjVBMTUuODE1MyA2LjAwMzkxIDEwLjg4NjYgNi4xMTIyNSAxMC45MzQ5IDYuMjMxMzFDMTUuOTgzMSA2LjM1MDM2IDExLjAwNzQgNi40Nzc3OSAxMS4wMDYzIDYuNjA2MjVDMTEuMDA4MSA2LjczNDgxIDEwLjk4NDEgNi44NjI0MyAxMC45MzU4IDYuOTgxNTlDMTAuODg3NSA3LjEwMDc0IDEwLjgxNTggNy4yMDkwMSAxMC43MjUgNy4zQzEwLjYzMDggNy4zOTYwNiAxMC41MTc4IDcuNDcxNzEgMTAuMzkzIDcuNTIyMjRDMTUuMjY4MyA3LjU3Mjc4IDEwLjEzNDUgNy41OTcxMiAxMCA3LjU5Mzc1Wk05LjE1NjI1IDE0LjM3NVY4LjI2ODc1SDEwLjgxODhWMTQuMzc1SDkuMTU2MjVaIiBmaWxsPSIjQkYwMDAwIi8%2BCjwvZ3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 8px;
}

.cp-result-section-warning__text {
  color: #bf0000;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
}

.cp-result-section-warning__text--large {
  font-weight: 700;
}

/* cp-result-section-list */
.cp-result-section-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list {
    gap: 24px 16px;
  }
}

.cp-result-section-list-item {
  width: 327px;
  min-height: 496px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  border-radius: 4px;
  margin-bottom: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cp-result-section-list-item {
    margin-right: 8px;
  }
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item {
    min-width: 440px;
    min-height: 293px;
    padding-top: 16px;
    padding-bottom: 14px;
    margin-bottom: 0;
  }
}

.cp-result-section-list-item--alphard {
  background: url("/assets/img/campaign/listing_202309/img_bg_result_item_alp_sp.png"),
    linear-gradient(to bottom, #ffffff 0%, 50%, #bf0000 100px);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item--alphard {
    background-image: url("/assets/img/campaign/listing_202309/img_bg_result_item_alp_pc.png");
    background-size: cover;
  }
}

.cp-result-section-list-item--velfire {
  background: url("/assets/img/campaign/listing_202309/img_bg_result_item_vel_sp.png"),
    linear-gradient(to bottom, #ffffff 0%, 50%, #024a9f 100px);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item--velfire {
    background-image: url("/assets/img/campaign/listing_202309/img_bg_result_item_vel_pc.png");
    background-size: cover;
  }
}

.cp-result-section-list-item__unit {
  font-size: 16px;
}

.cp-result-section-list-item__footer .cp-result-section-list-item__unit {
  font-size: 10px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__unit {
    font-size: 14px;
  }

  .cp-result-section-list-item-auction-date__date .cp-result-section-list-item__unit {
    font-size: 16px;
  }
}

/* cp-result-section-list-item__header */
.cp-result-section-list-item__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__header {
    flex-direction: row;
  }
}

/* cp-result-section-list-item__body */
.cp-result-section-list-item__body {
  width: 249px;
  margin: auto;
  margin-bottom: 24px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__body {
    width: 100%;
    padding: 0 16px 0 64px;
    margin-bottom: 8px;
  }
}

/* cp-result-section-list-item__images */
.cp-result-section-list-item__images {
  width: 239px;
  height: 170px;
  margin-bottom: 16px;
  border-radius: 4px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__images {
    width: 206px;
    height: 146px;
  }
}

/* cp-result-section-list-item__description */
.cp-result-section-list-item__description {
  width: 249px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  margin: auto;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__description {
    margin-left: 16px;
  }
}

/* cp-result-section-list-item__title */
.cp-result-section-list-item__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 8px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__title {
    font-size: 20px;
  }
}

/* cp-result-section-list-item-auction-date */
.cp-result-section-list-item-auction-date {
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-auction-date::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 196px;
    background-color: #fff;
  }
}

/* cp-result-section-list-item-auction-date__title */
.cp-result-section-list-item-auction-date__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 130%;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 16px;
}

.cp-result-section-list-item--alphard .cp-result-section-list-item-auction-date__title {
  color: #bf0000;
}

.cp-result-section-list-item--velfire .cp-result-section-list-item-auction-date__title {
  color: #024a9f;
}

/* cp-result-section-list-item-auction-date__date */
.cp-result-section-list-item-auction-date__date {
  font-size: 28px;
  font-weight: 700;
}

/* cp-result-section-list-item__upper */
.cp-result-section-list-item__upper {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item__upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.cp-result-section-list-item__upper--alphard {
  border-bottom: 2px solid #860000;
}

.cp-result-section-list-item__upper--velfire {
  border-bottom: 2px solid #001e60;
}

/* cp-result-section-list-item-upper-list */
.cp-result-section-list-item-upper-list:first-of-type {
  order: 2;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-upper-list {
    display: table;
  }
}

/* cp-result-section-list-item-upper-list__title */
.cp-result-section-list-item-upper-list__title {
  float: left;
  font-size: 14px;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-upper-list__title {
    font-size: 12px;
    vertical-align: bottom;
    display: table-cell;
    margin-right: 1em;
  }
}

.cp-result-section-list-item-upper-list__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  border: dashed 1px #fff;
  left: 5em;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-upper-list__title::after {
    display: none;
  }
}

/* cp-result-section-list-item-upper-list__data */
.cp-result-section-list-item-upper-list__data {
  font-size: 20px;
  text-align: right;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-upper-list__data {
    font-size: 18px;
    vertical-align: bottom;
    display: table-cell;
  }
}

/* cp-result-section-list-item-data-list__title */
.cp-result-section-list-item-data-list__title {
  float: left;
  font-size: 14px;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-data-list__title {
    font-size: 12px;
  }
}

.cp-result-section-list-item-data-list__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  border: dashed 1px #fff;
  left: 5em;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-data-list__title::after {
    width: 130px;
    left: 80px;
  }
}

/* cp-result-section-list-item-data-list__data */
.cp-result-section-list-item-data-list__data {
  font-size: 20px;
  text-align: right;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-data-list__data {
    font-size: 18px;
  }
}

/* cp-result-section-list-item-last-list__title */
.cp-result-section-list-item-last-list__title {
  float: left;
  font-size: 14px;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-last-list__title {
    font-size: 16px;
  }
}

.cp-result-section-list-item-last-list__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  border: dashed 1px #fff;
  left: 5em;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-last-list__title::after {
    width: 130px;
    left: 80px;
  }
}

/* cp-result-section-list-item-last-list__data */
.cp-result-section-list-item-last-list__data {
  font-size: 28px;
  text-align: right;
}

@media only screen and (min-width: 992px) {
  .cp-result-section-list-item-last-list__data {
    font-size: 32px;
  }
}

/* font-face */
@font-face {
  font-family: "rakutenCondensed";
  font-weight: normal;
  font-style: normal;
  src: url("https://carservice.r10s.jp/font/rakutenSans/woff2/RakutenCondensed/RakutenCondensed_W_Rg.woff2")
      format("woff2"),
    url("https://carservice.r10s.jp/font/rakutenSans/woff/RakutenCondensed/RakutenCondensed_W_Rg.woff")
      format("woff");
}

/* cp-camp-ad-kougaku_2411_log */
.cp-camp-ad-kougaku_2411_log .cp-top-content-mypage {
  color: #333;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 0;
}

@media screen and (min-width: 360px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-mypage {
    font-size: 12px;
  }
}

@media screen and (min-width: 500px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-mypage {
    font-size: 16px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-mypage__phrase--red {
  color: #bf0000;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-mypage__link:hover {
  color: #0085c7;
  text-decoration: underline;
}

.cp-camp-ad-kougaku_2411_log .cp-top-widget__placeholder .cp-top-widget__wrapper {
  border: 1px solid #e0e0e0;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__content-wrapper.cp-top-merit-block {
  padding-top: 0;
  padding-bottom: 0;
}

.cp-camp-ad-kougaku_2411_log .cp-top-merit-block .cp-top-merit-block__title {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #333;
  font-weight: bold;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-merit-block .cp-top-merit-block__title {
    font-size: 24px;
    line-height: 30px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__bg-grey {
  background-color: #f7f7f7;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__content-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__about .cp-title__h2,
.cp-camp-ad-kougaku_2411_log .cp-top-content__about .cp-top-content__btn-wrapper {
  text-align: center;
}

@media (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content__about .cp-title__h2,
  .cp-camp-ad-kougaku_2411_log .cp-top-content__about .cp-top-content__btn-wrapper {
    text-align: left;
  }
}

@media (min-width: 640px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content__content-wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-faq {
  display: grid;
  font-weight: 700;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-faq__question {
  font-size: 24px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-faq__introduce {
  font-size: 18px;
  margin-left: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-faq__case {
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-faq__case {
    font-size: 24px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-title {
  margin-left: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-list {
  background-color: #fff;
  margin: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item {
  width: 100%;
  border: 1px solid #ebebeb;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item-head {
  padding: 20px;
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-right: 38px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item-head::after {
  content: "";
  display: block;
  background: url("//carservice.r10s.jp/img/repair/arrow_drop_down--gray.svg") no-repeat center center;
  width: 11px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item input {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item input:checked + .cp-top-content__faq-item-head::after {
  transform: translate(0, -50%) rotate(-180deg);
  margin-top: 3px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item-content {
  height: auto;
  max-height: 0;
  transition: max-height 0.2s;
  overflow: hidden;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-description {
  background-color: #f7f7f7;
  padding: 10px;
  margin: 0 20px 20px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item-content .col-12 {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__faq-item-content.open {
  max-height: 3000px;
  transition: max-height 0.5s;
}

.cp-camp-ad-kougaku_2411_log .cp-top-car--is-swiper-loading.cp-top-result-list-block .cp-top-car__loading-screen {
  background: #f7f7f7;
}

.cp-camp-ad-kougaku_2411_log .cp-top-car--is-swiper-loading .cp-top-car__loading-screen {
  animation: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-car--is-swiper-loading .cp-top-result-list__group-btns {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-car__loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10;
  animation: fadeOut 0.5s ease-in-out forwards;
}

.cp-camp-ad-kougaku_2411_log .cp-top-car__loading-screen p {
  display: inline-block;
  border: 4px solid #e5edff;
  border-left-color: #282ec1;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  animation: spinner 1.2s linear infinite;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list {
  background-color: #fff;
  margin-left: -12px;
  margin-right: -12px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list a {
  pointer-events: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__car-list {
  max-width: 960px;
  margin-top: 0;
  padding: 32px 0 27px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__car-list {
    padding: 40px 0 40px;
    margin: auto;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0 24px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__title {
    font-size: 22px;
    margin-left: 5px;
    margin: 0 0 0 5px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list-block {
  position: relative;
  margin-top: 16px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group {
  overflow-x: scroll;
  max-height: 300px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__group {
    overflow-x: hidden;
    position: relative;
    max-height: 100%;
    max-width: 960px !important;
    margin: 0 auto;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-inner {
  display: flex;
  align-items: stretch;
  padding: 0 24px;
  background: #fff;
  border-radius: 140px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-inner {
    padding: 0;
    border-radius: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-prev {
  display: none;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-prev {
    display: block;
    width: 24px;
    position: absolute;
    top: calc(50% - 12px);
    left: -12px;
    z-index: 2;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-prev.swiper-button-disabled {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-next {
  display: none;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-next {
    display: block;
    width: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: -12px;
    z-index: 2;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-btn-next.swiper-button-disabled {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable {
  margin: 0;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 43px);
  z-index: 2;
  opacity: 0.95;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable {
    display: none;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable em {
  width: 87px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 20px;
  background: #ebebeb;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable-img {
  display: block;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable-img img {
  width: 48px;
  display: inline-block;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__group-scrollable-txt {
  text-align: center;
  display: block;
  font-size: 10px;
  line-height: 1.2;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list--is-revealed .cp-top-result-list__group-scrollable-img {
  animation: moveLtoR 2s ease-in-out forwards;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list--is-scrolled .cp-top-result-list__group-scrollable {
  animation: fadeOut 0.5s ease-in-out forwards;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item {
  display: block;
  width: 200px !important;
  height: auto !important;
  background: #fff;
  border: 2px solid #EBEBEB;
  border-radius: 6px;
  margin-right: 16px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__item {
    width: auto;
    overflow: hidden;
    border-radius: 4px;
    padding: 12px 0;
  }
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item a {
  position: relative;
  padding: 12px;
  margin: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__item a {
    width: 190px !important;
    padding: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item a:hover {
  opacity: 0.8;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item img {
  width: 100%;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-head {
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-head {
    display: block;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-img {
  width: 160px;
  height: auto;
  margin: 0;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 1 / 0.75;
  overflow: hidden;
  margin: auto;
}

 .cp-top-result-list__item-body {
  vertical-align: top;
  padding-top: 12px;
}

@media screen and (min-width: 768px) {
   .cp-top-result-list__item-body {
    display: block;
    padding: 12px 6px 0;
  }
}

.cp-top-result-list__item-body table {
  font-size: 10px;
  color: #333;
  width: 100%;
}

.cp-top-result-list__item-body table th {
  white-space: nowrap;
  font-size: 11.5px;
}

.cp-top-result-list__item-body table td {
  text-align: right;
  font-size: 11.5px;
}

.cp-top-result-list__item-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0;
  display: -webkit-box;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2em;
  padding-bottom:6px ;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-distance th{
  padding-bottom: 10px;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-trade {
  border-top: 2px solid #EBEBEB;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-trade th{
  padding-top: 10px;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-rakuten {
  color: #bf0000;
  font-weight: bold;
  border: none;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-rakuten em {
  font-size: 16px;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-rakuten th{
  padding-top: 0;
}

.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-rakuten th,
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-rakuten td {
  vertical-align: bottom; 
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-gap{
  background-color: #043550;
  display: flex;
  justify-content: center;
  gap: 3px;
  height: 48px;
  margin-top: 12px;
  position: relative;
}
 .cp-top-result-list__item-gap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #043550;
  translate: -50% -100%;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-gap p{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-gap em{
  font-size: 32px;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-gap img{
  width: 24px;
}
.cp-camp-ad-kougaku_2411_log .cp-top-result-list__item-auc td {
  padding-top: 5px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-search {
  text-align: center;
  margin-top: 20px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-baloon {
  display: inline-block;
  padding-bottom: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-baloon span {
  position: relative;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 36px;
  border-radius: 18px;
  background: #bf0000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-baloon span:before {
  content: "";
  position: absolute;
  display: block;
  background: #bf0000;
  left: 50%;
  transform: translate(0, 6px);
  width: 12px;
  height: 12px;
  bottom: 0;
  rotate: 45deg;
  background-size: contain !important;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link {
  display: block;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link em {
  font-weight: bold;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link a {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 327px;
  height: 73px;
  border: 2px solid #0074ad;
  border-radius: 8px;
  background: #fff;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link a:hover {
  transition: 0.2s;
  background: rgba(0, 116, 173, 0.08);
  color: #0074ad;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link a:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/assets/img/top/btn_search_icon_car.png) no-repeat center;
  left: 18px;
  width: 44px;
  height: 44px;
  background-size: contain !important;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link a:after {
  content: "";
  position: absolute;
  display: block;
  right: 27px;
  border-top: 2px solid #0074ad;
  border-right: 2px solid #0074ad;
  rotate: 45deg;
  width: 12px;
  height: 12px;
  background-size: contain !important;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link-txt1 {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 12px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-link-txt2 {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-btn-more {
  display: inline-flex;
  max-width: 288px;
  color: #0074ad;
  width: 100%;
  height: 48px;
  border: 1px solid #0074ad;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-btn-more {
    margin-top: 12px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-btn-more:hover {
  transition: 0.2s;
  background: rgba(0, 116, 173, 0.08);
  color: #0074ad;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step-container {
  padding: 32px 16px 48px;
  background-color: #f7f7f7;
  margin: 0 -12px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 16px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step {
    background: none;
    max-width: 960px;
    margin: auto;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step img {
  width: 100%;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step-ttl {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  text-align: center;
}
.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list{
  background-color:#fff;
}
@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step-ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap:8px;
    margin-top: 24px;
    padding: 0 0 32px ;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-item {
  position: relative;
  padding: 16px 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-item {
    width: calc(40% - 8px);
    padding: 12px 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    height: 200px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-item:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/assets/img/top/step_line.png) no-repeat center;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-size: contain !important;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-item:before {
    background: url(/assets/img/top/step_line_pc.png) no-repeat center;
    left: 12px;
    bottom: -2px;
    width: calc(100% - 24px);
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-ttl {
  display: table;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-ttl {
    margin: 0;
    height: 48px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-ttl span {
  display: table-cell;
  width: 32px;
  vertical-align: middle;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-ttl em {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 700;
  padding-left: 14px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-ttl em {
    font-size: 16px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-img {
  width: 130px;
  margin-right: 12px;
}
.cp-top-content-step__list-content{
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-img {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt {
  margin-bottom: 0;
  text-align: left;
  width: 150px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 55px;
    margin: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt em {
  color: #bf0000;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt span {
  display: block;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt-nml {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt-thin {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt-thin {
    font-size: 14px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-step__list-txt-sml {
  font-weight: bold;
  font-size: 16px;
}

/*review*/
.cp-camp-ad-kougaku_2411_log .cp-top-content-review {
  margin-top: 40px;
  margin: 0 -12px;
  background-color: #f6f6f6;
  padding: 32px 0;
}
.cp-camp-ad-kougaku_2411_log .cp-top-content-review__inner{
  max-width: 1200px;
  margin: auto;
}
.cp-top-content-review__list{
  margin: 0 auto;
  max-width: 343px;
}
.cp-top-content-review__list-item{
  background-color: #fff;
  padding: 16px 12px;
  max-width: 343px;
  border-radius: 6px;
  margin-bottom: 24px;
}
.cp-top-content-review__car{
  display: flex;
  margin-bottom: 10px;
}
.cp-top-content-review__car-image{
  padding-right: 10px;
}
.cp-top-content-review__label{
  font-size: 12px;
}
.cp-top-content-review__user{
  display: flex;
}
.cp-top-content-review__avatar{
  width: 58px;
  height: 93px;
}
.cp-top-content-review__comment{
  padding: 14px 10px;
  border: 1.5px solid #ebebeb;
  border-radius: 6px;
  max-width: 260px;
}
.cp-top-content-review__comment em{
  font-weight: bold;
}
.cp-top-content-review__car-name{
  font-size:16px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__content {
    display: flex;
    justify-content: center;
  }
  .cp-top-content-review__list{
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  }
  .cp-top-content-review__list-item{
    margin-bottom: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__title-section {
  max-width: 960px;
  margin: 0 auto 20px;
  font-weight: 700;
  display: grid;
  text-align: center;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__title {
  font-size: 16px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__big-title {
  font-size: 28px;
}
/*
.cp-camp-ad-kougaku_2411_log .cp-top-content-review__slot {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__slot {
    margin: 0 8px 32px;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__slot:nth-child(n + 2) {
    border-top: 1px solid #ebebeb;
    padding-top: 28px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__description {
  text-align: start;
  position: relative;
  margin-top: 30px;
  padding-left: 8px;
}

@media screen and (max-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__description {
    margin-left: 8px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__description::before {
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: -7px;
  border-right: 5px solid #0074ad;
  height: 100%;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__description-red {
  text-align: start;
  position: relative;
  margin-top: 30px;
  padding-left: 8px;
}

@media screen and (max-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__description-red {
    margin-left: 8px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__description-red::before {
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: -7px;
  border-right: 5px solid #bf0000;
  height: 100%;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__img {
  width: 200px;
  margin-left: 40px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-review__img {
    width: 100%;
    margin: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__head-line {
  position: absolute;
  width: 69px;
  top: -28px;
  left: -8px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__head-line-red {
  position: absolute;
  width: 69px;
  top: -26px;
  left: -8px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__sale {
  font-size: 12px;
  margin-bottom: 0;
  padding-top: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__maker {
  font-size: 16px;
  font-weight: 700;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__voice {
  font-size: 14px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-review__voice em {
  font-weight: 700;
}
*/

/*キャンペーン一覧*/
/* Swiper の基本スタイル (不要なので削除) */
/* @import url('https://unpkg.com/swiper/swiper-bundle.min.css'); */

/* 新しいキャンペーンセクションのスタイル */
.cp-camp-ad-kougaku_2411_log .cp-top-content-campaign {
  margin-top: 40px;
  margin: 0 -12px;
  background-color: #fff;
  padding: 32px 0;
}

.cp-camp-ad-kougaku_2411_log .cp-top-content-campaign__inner {
  max-width: 1200px;
  margin: auto;
}

.cp-top-content-campaign__title-section {
  max-width: 960px;
  margin: 0 auto 20px;
  font-weight: 700;
  display: grid;
  text-align: center;
}

.cp-top-content-campaign__title {
  font-size: 16px;
}

.cp-top-content-campaign__big-title {
  font-size: 28px;
}

/* スライダーコンテナのスタイル (Flexboxの親要素として再定義) */
.cp-top-content-campaign__slider {
  /* max-width: 343px; はSPでの表示のため、ulに適用します */
  margin: 0 auto;
  /* overflow: hidden; も不要 */
}

/* スライダー内のリスト (Flexboxコンテナとして再定義) */
.cp-top-content-campaign__list {
  list-style: none; /* リストのデフォルトスタイルを解除 */
  padding: 0;
  margin: 0;

  display: flex; /* Flexbox を有効にする */
  flex-wrap: wrap; /* アイテムを折り返す */
  justify-content: center; /* アイテムを中央揃え */
  gap: 16px; /* アイテム間の隙間 */ /* gap プロパティが使えないブラウザのために margin を併用することも考慮 */

  /* SP時は2カラムにするための幅調整 */
  max-width: 340px; /* (160px * 2) + (10px * 2) = 340px */
  margin-left: auto;
  margin-right: auto;
}

/* スライダー内のリストアイテム */
.cp-top-content-campaign__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* SPの隙間 */

  /* SP時は2カラムにするための幅調整 */
  max-width: 343px; /* (160px * 2) + (10px * 2) = 340px */
  margin-left: auto;
  margin-right: auto;
}

.cp-top-content-campaign__list-item a {
  display: block;
  text-decoration: none;
}

.cp-top-content-campaign__list-item img {
  width: 160px; /* 画像の幅を160pxに固定 */
  height: 160px; /* 画像の高さを160pxに固定 */
  object-fit: cover; /* 画像をトリミングして領域を埋める */
  display: block;
}

/* Swiper Pagination (ドット) のスタイル (不要なので削除) */
/*
.swiper-pagination {
  position: static;
  margin-top: 20px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #e00000;
}
*/

/* レスポンシブ対応 */
@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content-campaign__inner {
    display: block;
  }

  .cp-top-content-campaign__slider {
    max-width: 1200px; /* PCでの最大幅 */
  }

  .cp-top-content-campaign__list {
    /* PCでは横並び一列にする */
    flex-wrap: nowrap;
    justify-content: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cp-top-content-campaign__list-item {
    flex-basis: 160px;
    max-width: 160px;
    margin-bottom: 0;
  }
}

Copy


/*キャンペーンここまで*/
.cp-camp-ad-kougaku_2411_log .cp-top-floating-section {
  position: relative;
  height: 56px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section {
    height: 88px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__area {
  width: 100%;
  height: 56px;
  position: fixed;
  background: rgba(0, 0, 0, 0.75);
  bottom: -88px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: bottom 0.2s;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__area {
    height: 88px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__area.show {
  bottom: 0;
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__button-area {
  display: flex;
  background: #bf0000;
  border-radius: 4px;
  width: 246px;
  height: 40px;
  align-items: center;
  font-weight: 700;
  justify-content: space-evenly;
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__button-area:hover {
  background: #d80000;
  transition: 0.2s;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__button-area {
    width: 288px;
    height: 56px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__white-box {
  color: #bf0000;
  background: #fff;
  border-radius: 4px;
  width: 47px;
  height: 32px;
  font-size: 10px;
  text-align: center;
  padding: 2px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__white-box {
    width: 56px;
    height: 42px;
    font-size: 11px;
    padding: 4px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__phrase-area {
  color: #fff;
  display: grid;
  margin-top: 4px;
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__sub-phrase {
  font-size: 11px;
  margin-bottom: -4px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__sub-phrase {
    font-size: 13px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__main-phrase {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__main-phrase {
    font-size: 18px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-floating-section__top-button {
  width: 44px;
  height: 44px;
  margin-top: 4px;
  background-image: url("/assets/img/top/img_top-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-floating-section__top-button {
    bottom: 30px;
  }
}

/* keyframes */
@keyframes moveLtoR {
  0% {
    transform: translateX(-10px);
  }
  20% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(-10px);
  }
  60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes bunbun {
  0% {
    transform: scale(1.05);
  }
  20% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    margin-left: 0;
  }
  100% {
    margin-left: -100000px;
  }
}

@keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* cp-camp-ad-kougaku_2411_log specific styles */
.cp-camp-ad-kougaku_2411_log .cp-top-widget__placeholder {
  background: #ecf9ff;
  padding: 0;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-widget__placeholder {
    border-radius: 20px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-widget__placeholder .cp-top-widget__wrapper {
  border: none;
  background: #ecf9ff;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-widget__placeholder .cp-top-widget__wrapper {
    padding-top: 16px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content.cp-container__inner {
  background: #ecf9ff;
  padding-bottom: 24px;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-top-content.cp-container__inner {
    background: #fff;
    margin-top: 12px;
    padding-bottom: 0;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list {
  padding: 20px 0 0;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__section {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__section + .cp-manufacturer-list__section {
  border-top: none;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type {
  display: block;
  color: inherit;
  font-weight: bold;
  padding: 10px 15px;
  font-size: 1.6rem;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  appearance: none;
  outline: none;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type:hover,
.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type:active {
  color: inherit;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-bottom: 6px solid #686868;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -2px;
  transform: rotate(180deg);
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type.active::after {
  transform: rotate(0);
  margin-top: -4px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__body {
  font-size: 1.4rem;
  max-height: 0;
  overflow: hidden;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__body.open {
  max-height: 3000px;
  transition: max-height 0.5s;
  padding: 10px 0 0;
  border-top: 1px solid #ebebeb;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__block + .cp-manufacturer-list__block {
  margin-top: 20px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__ttl {
  font-weight: bold;
  padding: 0 15px;
  margin-bottom: 15px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__list {
  padding: 0 0 0 15px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__item + .cp-manufacturer-list__item {
  margin-top: 15px;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__link {
  color: inherit;
  display: block;
  position: relative;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__link::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #686868;
  border-right: 1px solid #686868;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  transform: rotate(-45deg);
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__close {
  display: block;
  text-align: right;
  font-weight: bold;
  position: relative;
  padding: 0 25px 0 0;
  margin: 20px 0 10px;
  width: 100%;
  border: none;
  background: none;
  appearance: normal;
  outline: none;
  color: #0085c7;
}

.cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__close::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-bottom: 6px solid #0085c7;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -4px;
}

@media (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list {
    padding: 50px 0 0;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__heading {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    padding: 0 0 10px;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__section {
    border: none;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__section + .cp-manufacturer-list__section {
    margin-top: 30px;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type {
    padding: 0;
    font-size: 1.6rem;
    pointer-events: none;
    margin: 0 0 15px;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__type::after {
    display: none;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__body {
    display: block !important;
    border: none;
    font-size: 1.2rem;
    padding: 0;
    max-height: 3000px;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__body.open {
    border: none;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__ttl {
    padding: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__item {
    width: 25%;
    margin-bottom: 10px;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__item + .cp-manufacturer-list__item {
    margin-top: 0;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__link {
    display: inline;
    font-size: 1.4rem;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__link::after {
    display: none;
  }

  .cp-camp-ad-kougaku_2411_log .cp-manufacturer-list__close {
    display: none;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-camp__inner {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp__inner {
    max-width: 960px;
    margin: auto;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-camp__ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;

}

.cp-camp-ad-kougaku_2411_log .cp-camp-mv h1 {
  margin-bottom: 0;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-mv h1 span {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-mv__img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp-mv__img {
    background: url("/assets/img/campaign/tradein_2510_log/mv_pc.jpg") no-repeat center;
    background-size: auto 100%;
    height: 350px;
  }
}

  .cp-camp-ad-kougaku_2411_log .cp-camp-reason {
    padding: 32px 0;
  }


.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list {
  margin-top: 16px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp-reason__list {
    display: flex;
    gap: 4px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li {
  color: #fff;
  padding: 20px 16px 20px 20px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li {
    width: calc(100% / 3);
    padding: 24px 15px 15px 20px;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-01 {
  background: #043550 url("/assets/img/campaign/tradein_2510_log/bg_reason01_sp.png") no-repeat center;
  background-size: cover;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-01 .cp-camp-reason__list-num {
  color: #c0ccec;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-02 {
  background: #C3142B url("/assets/img/campaign/tradein_2510_log/bg_reason02_sp.png") no-repeat center;
  background-size: cover;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-02 .cp-camp-reason__list-num {
  color: #ffdbde;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-03 {
  background: #001F6C url("/assets/img/campaign/tradein_2510_log/bg_reason03_sp.png") no-repeat center;
  background-size: cover;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-li-03 .cp-camp-reason__list-num {
  color: #aacdff;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-num {
  font-family: "rakutenCondensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-cont {
  display: table;
  width: 100%;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-txt {
  display: table-cell;
  vertical-align: top;
  padding-right: 8px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-head {
  display: flex;
  gap: 16px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-img {
  display: table-cell;
  vertical-align: middle;
  width: 35%;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-img {
    width: 112px;
    padding-top: 20px;
  }
  .cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-head {
  display: block;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__list-last {
  font-size: 11px;
  margin-bottom: 0;
  margin-top: 15px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-main-upper {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-main-middle {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-main-middle em {
  font-size: 28px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-main-bottom {
  display: block;
  line-height: 1;
  margin-top: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-sub {
  font-size: 14px;
  margin-bottom: 0;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-reason__txt-sub em {
  font-weight: bold;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button {
  background: #ecf9ff;
  text-align: center;
  padding: 16px 10px 20px;
  margin-left: -12px;
  margin-right: -12px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button--is-revealed .cp-camp-button__ttl {
  animation: bunbun 1s ease-in-out forwards;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__ttl {
  margin-bottom: 0;
  text-align: center;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__ttl span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #bf0000;
  padding: 0 35px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__ttl span:before {
  content: "";
  position: absolute;
  display: block;
  background: url(/assets/img/campaign/ad-kougaku_2411_log/img_btn.svg) no-repeat center;
  top: calc(50% - 5px);
  left: 0;
  width: 22px;
  height: 9px;
  background-size: contain;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__ttl span:after {
  content: "";
  position: absolute;
  display: block;
  background: url(/assets/img/campaign/ad-kougaku_2411_log/img_btn.svg) no-repeat center;
  top: calc(50% - 5px);
  right: 0;
  width: 22px;
  height: 9px;
  transform: scale(-1, 1);
  background-size: contain;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__btn {
  margin-top: 10px;
}

.cp-camp-ad-kougaku_2411_log .cp-camp-button__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 326px;
  height: 48px;
  top: 44px;
  left: 24px;
  border-radius: 44px;
  background: #bf0000;
  margin: auto;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-camp-button__btn a:hover {
    background: #d80000;
  }
}

.cp-camp-ad-kougaku_2411_log .cp-top-content__btn-search {
  display: none;
}

.cp-camp-ad-kougaku_2411_log .cp-campaign__section {
  margin-left: -12px;
  margin-right: -12px;
}

@media screen and (min-width: 768px) {
  .cp-camp-ad-kougaku_2411_log .cp-campaign__section {
    margin-left: auto;
    margin-right: auto;
  }
}
