@charset "UTF-8";
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}
@keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}
/*
FROM carsensor



SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}
/*
FROM carsensor



SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
.kaitoriInputModal {
  height: 100%;
  padding: 32px;
  overflow: hidden;
}
.kaitoriInputModal .modalSteps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  line-height: 16px;
}
.kaitoriInputModal .modalSteps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 350px;
          flex: 0 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 12px;
}
.kaitoriInputModal .modalSteps li:first-of-type {
  left: 0;
  padding-left: 0;
  border-radius: 3px 0 0 3px;
}
.kaitoriInputModal .modalSteps li:last-of-type {
  border-radius: 0 3px 3px 0;
}
.kaitoriInputModal .modalSteps li:last-of-type::before {
  display: none;
}
.kaitoriInputModal .modalSteps li:last-of-type::after {
  display: none;
}
.kaitoriInputModal .modalSteps__step {
  position: relative;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #808080;
  text-align: center;
  background: #ededed;
}
.kaitoriInputModal .modalSteps__step::before {
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  z-index: 2;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #ededed;
  border-style: solid;
  border-width: 24px 0 24px 12px;
}
.kaitoriInputModal .modalSteps__step::after {
  position: absolute;
  top: -18px;
  right: -20px;
  z-index: 1;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 42px 0 42px 20px;
}
.kaitoriInputModal .modalSteps__step:last-of-type::before {
  display: none;
}
.kaitoriInputModal .modalSteps__step:last-of-type::after {
  display: none;
}
.kaitoriInputModal .modalSteps__step--done {
  position: relative;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #ff6010;
}
.kaitoriInputModal .modalSteps__step--done::before {
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  z-index: 2;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #ff6010;
  border-style: solid;
  border-width: 24px 0 24px 12px;
}
.kaitoriInputModal .modalSteps__step--done::after {
  position: absolute;
  top: -18px;
  right: -20px;
  z-index: 1;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 42px 0 42px 20px;
}
.kaitoriInputModal .modalSteps__mainText {
  display: inline-block;
  width: 257px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kaitoriInputModal .modalSteps__subText {
  display: inline-block;
  max-width: 257px;
  padding-bottom: 2px;
  font-size: 12px;
  font-weight: 300;
  text-overflow: ellipsis;
}

.kaitoriInputModalMaker .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  line-height: 1.6;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalMaker .title5::before {
  top: 5px;
}
.kaitoriInputModalMaker .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriInputModalMaker .countryList__item {
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalMaker .countryList__item:last-of-type {
  border-bottom: 0;
}
.kaitoriInputModalMaker .countryList__item .media {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  margin-bottom: 6px;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalMaker .countryList__item .media__obj {
  margin-right: 10px;
}
.kaitoriInputModalMaker .countryList__item .media__obj > img {
  vertical-align: bottom;
}
.kaitoriInputModalMaker .countryList__item .media__body {
  font-size: 14px;
  font-weight: bold;
}
.kaitoriInputModalMaker .countryList__item__makerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px 0 28px;
  margin-bottom: 6px;
  font-size: 14px;
}
.kaitoriInputModalMaker .countryList__item__makerList > li {
  width: 220px;
}
.kaitoriInputModalMaker .countryList__item__makerList > li a {
  display: inline-block;
  width: 100%;
  height: 34px;
  padding: 10px 16px;
  line-height: 14px;
}
.kaitoriInputModalMaker .countryList__item__makerList > li a:hover {
  background: #fff2e6;
}
.kaitoriInputModalMaker .nationalFlag {
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.usa {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -24px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.aus {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -264px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.aut {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -48px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.bel {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -72px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.can {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -96px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.gbr {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -144px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.fra {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -168px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.ger {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -192px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.ind {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -216px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.ita {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -240px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.jpn {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 0;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.kor {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -288px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.mys {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -312px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.hol {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -336px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.rus {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -384px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.esp {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -456px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.tha {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -504px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.rsa {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -432px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.swe {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -480px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.cze {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -120px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.rou {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -360px;
  width: 32px;
  height: 24px;
}
.kaitoriInputModalMaker .nationalFlag.svn {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -408px;
  width: 32px;
  height: 24px;
}

.kaitoriInputModalType .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  line-height: 1.6;
  border-bottom: none;
}
.kaitoriInputModalType .title5::before {
  top: 5px;
}
.kaitoriInputModalType .modelFavorite {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  padding: 8px 0;
  margin-bottom: 16px;
  border: 2px solid #ebe9e4;
  border-radius: 3px;
}
.kaitoriInputModalType .modelFavorite__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 76px;
          flex: 0 76px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-align: left;
  text-indent: 22px;
}
.kaitoriInputModalType .modelFavorite__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.kaitoriInputModalType .modelFavorite__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 16px 0 0;
  font-size: 14px;
}
.kaitoriInputModalType .modelFavorite__list ul > li a {
  display: inline-block;
  padding: 10px 16px;
  line-height: 14px;
}
.kaitoriInputModalType .modelFavorite__list ul > li a:hover {
  background: #fff2e6;
}
.kaitoriInputModalType .modelLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40px;
  background: #f5f4f0;
  border-top: 3px solid #d6d4d0;
}
.kaitoriInputModalType .modelLink__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 92px;
          flex: 0 92px;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
}
.kaitoriInputModalType .modelLink__link, .kaitoriInputModalType .modelLink__link--disable {
  font-size: 13px;
  line-height: 38px;
}
.kaitoriInputModalType .modelLink__link a, .kaitoriInputModalType .modelLink__link--disable a {
  position: relative;
  padding: 10px 20px 10px 10px;
}
.kaitoriInputModalType .modelLink__link a::after, .kaitoriInputModalType .modelLink__link--disable a::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: inline-block;
  margin-top: -6px;
  margin-right: 4px;
  content: "";
  border-top: 10px solid #ff6010;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.kaitoriInputModalType .modelLink__link--disable a {
  color: #ccc;
  pointer-events: none;
}
.kaitoriInputModalType .modelLink__link--disable a::after {
  border-top: 10px solid #ccc;
}
.kaitoriInputModalType .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriInputModalType .modelList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0 14px 0;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalType .modelList__item:last-of-type {
  border-bottom: 0;
}
.kaitoriInputModalType .modelList__item .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 76px;
          flex: 0 0 76px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6px;
  text-align: center;
}
.kaitoriInputModalType .modelList__item .media__body {
  font-size: 14px;
  font-weight: bold;
}
.kaitoriInputModalType .modelList__item .media__body p {
  text-align: left;
  text-indent: 24px;
}
.kaitoriInputModalType .modelList__item__modelList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 16px 0 0;
  font-size: 14px;
}
.kaitoriInputModalType .modelList__item__modelList > li {
  width: 206px;
}
.kaitoriInputModalType .modelList__item__modelList > li a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  line-height: 21px;
}
.kaitoriInputModalType .modelList__item__modelList > li a:hover {
  background: #fff2e6;
}

.kaitoriInputModalGrade .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  line-height: 1.6;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalGrade .title5::before {
  top: 5px;
}
.kaitoriInputModalGrade .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriInputModalGrade .gradeList__item:first-of-type {
  margin-bottom: 6px;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriInputModalGrade .gradeList__item:first-of-type a {
  margin: 6px 0;
}
.kaitoriInputModalGrade .gradeList__item a {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 14px;
}
.kaitoriInputModalGrade .gradeList__item a:hover {
  background: #fff2e6;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes focusItem {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
            box-shadow: 0 0 0 0 rgba(255, 96, 16, 0);
  }
  40% {
    -webkit-box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
            box-shadow: 0 0 1px 3px rgba(255, 96, 16, 0.5);
  }
  50% {
    -webkit-box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
            box-shadow: 0 0 0 5px rgba(255, 96, 16, 0.3);
  }
  85% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.1);
  }
  90% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.07);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
            box-shadow: 0 0 0 8px rgba(255, 96, 16, 0.05);
  }
}
/*
FROM carsensor



SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
.hero {
  width: 100%;
  padding: 30px 32px 8px;
  margin-top: -23px;
  margin-bottom: 32px;
  background-color: #f7f5ee;
}
.hero__inner {
  width: 980px;
  margin: 0 auto;
}
.hero__inner .breadcrumb {
  margin-bottom: 0;
}
.hero__inner > div:first-child {
  padding-top: 3px;
  line-height: 10px;
}
.hero__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.hero__image {
  margin-top: 32px;
}
.hero__heading {
  margin-bottom: 24px;
  font-family: Hiragino Kaku Gothic ProN, Meiryo, Yu Gothic, sans-serif;
}
.hero__heading p {
  height: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.hero__heading p:first-of-type {
  margin-bottom: 15px;
}
.hero__heading p em {
  font-style: normal;
  color: #ff6010;
}
.hero__heading p span {
  position: relative;
  top: -16px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1;
  color: #666;
}
.hero__visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 416px;
  height: 158px;
  margin: 0 0 16px;
  background-color: #eeebe2;
  border-radius: 8px;
}
.hero__visual:last-of-type {
  margin-bottom: 0;
}
.hero__visualImage, .hero__visualImage--auction, .hero__visualImage--assessment {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__visualImage img, .hero__visualImage--auction img, .hero__visualImage--assessment img {
  width: 100%;
  height: auto;
}
.hero__visualImage--assessment {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  width: 130px;
  padding-left: 32px;
  margin-right: 21px;
}
.hero__visualImage--auction {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 109px;
          flex: 0 0 109px;
  width: 109px;
  padding-left: 32px;
  margin-right: 46px;
}
.hero__visualText {
  padding-top: 32px;
}
.hero__visualTextTitle {
  height: 20px;
  margin-bottom: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.hero__visualTextDescription {
  font-size: 18px;
  font-style: normal;
  line-height: 1.6;
}
.hero__visualTextDescription em {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  line-height: 28.8px;
  color: #ff6010;
}
.hero__visualTextDescription span {
  font-weight: 600;
  line-height: 28.8px;
  color: #ff6010;
}
.hero__contentTitle {
  height: 16px;
  margin: 3px auto auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #ff6010;
  text-align: right;
}
.hero__logoImage {
  width: auto;
  height: 16px;
  margin-right: 4px;
  vertical-align: top;
}
.hero__form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 540px;
          flex: 0 0 540px;
  width: 540px;
  margin: 0 0 0 10px;
  border-radius: 3px;
}
.hero__formInput {
  padding: 24px 32px;
  margin-top: 26px;
  background: #fff;
  border-radius: 3px;
}
.hero__formItemAct {
  margin-top: 28px;
}
.hero__formItemAct .btnAct--inquiry {
  position: relative;
  width: 320px;
  height: 56px;
  padding: 8px 0 0 28px;
  margin: 20px auto 0;
}
.hero__formItemAct .btnAct--inquiry span {
  font-size: 12px;
  line-height: 1.3;
}
.hero__formItemAct .btnAct--inquiry em {
  font-size: 20px;
  font-style: normal;
  line-height: 1.6;
}
.hero__formItemAct .btnAct--inquiry:hover .buttonBalloonWrap {
  background: none;
}
.hero__formItemAct .btnAct--inquiry:hover .buttonBalloon {
  background: #fff;
}
.hero__formItemAct .btnAct--inquiry .buttonBalloonWrap {
  position: absolute;
  top: -8px;
  right: 0;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  margin: auto;
  background: none;
}
.hero__formItemAct .btnAct--inquiry .buttonBalloon {
  position: relative;
  display: inline-block;
  width: auto;
  height: 20px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  color: #ff6010;
  text-align: center;
  background: #fff;
  border: 1px solid #ff6010;
  border-radius: 10px;
}
.hero__notice {
  font-size: 10px;
  color: #666;
  text-align: right;
}

.heroInputTable {
  width: 100%;
}
.heroInputTable input,
.heroInputTable select,
.heroInputTable textarea {
  background: #fff3d8;
}
.heroInputTable .is-set {
  background: #fff;
}
.heroInputTable .is-focus {
  border: solid 1px #ff6010;
  -webkit-animation: focusItem 1.2s linear infinite;
          animation: focusItem 1.2s linear infinite;
}
.heroInputTable.hide {
  display: none;
}
.heroInputTable .hide {
  display: none;
}
.heroInputTable .error {
  background: #fee8e6;
}
.heroInputTable tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}
.heroInputTable tr:first-of-type {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}
.heroInputTable th {
  width: 96px;
  font-size: 12px;
  font-weight: bold;
}
.heroInputTable td {
  position: relative;
  padding: 0 0 0 16px;
  font-size: 12px;
}
.heroInputTable__requireLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 12px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  background: #ff6010;
  border-radius: 2px;
}
.heroInputTable__modalButton {
  width: 364px;
  min-height: 52px;
  padding: 7px 16px;
  font-size: 12px;
  color: #666;
  background: #fff3d8;
  border: 1px solid #dedcd7;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}
.heroInputTable__modalButton.nextFrom {
  border: 2px solid #ff6010;
  border-radius: 2px;
}
.heroInputTable__modalButton.is-set {
  background: #fff;
}
.heroInputTable__modalButton.is-set:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #f9f8f6), to(#eee));
  background-image: -webkit-linear-gradient(top, #f9f8f6 85%, #eee 100%);
  background-image: linear-gradient(to bottom, #f9f8f6 85%, #eee 100%);
}
.heroInputTable__modalButton.is-focus {
  border: solid 1px #ff6010;
  -webkit-animation: focusItem 1.2s linear infinite;
          animation: focusItem 1.2s linear infinite;
}
.heroInputTable__modalButton:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f7edd2), color-stop(80%, #f7ecd2), to(#ebe0c7));
  background-image: -webkit-linear-gradient(top, #f7edd2 0%, #f7ecd2 80%, #ebe0c7 100%);
  background-image: linear-gradient(to bottom, #f7edd2 0%, #f7ecd2 80%, #ebe0c7 100%);
}
.heroInputTable .label--select {
  width: 364px;
}
.heroInputTable .label--select select {
  width: 100%;
}
.heroInputTable__notice {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.5;
  color: #666;
}
.heroInputTable__errorText {
  height: 12px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1;
  color: #fa220a;
  text-align: left;
}
.heroInputTable__radioWrap, .heroInputTable__radioWrap--mid {
  display: inline-block;
  min-width: 100px;
}
.heroInputTable__radioWrap--mid {
  width: 105px;
  margin-right: 11px;
}
.heroInputTable__checkboxWrap {
  width: 120px;
  margin-right: 16px;
}
.heroInputTable__textAreaWrap {
  width: 440px;
  min-height: 124px;
}
.heroInputTable__textAreaWrap textarea {
  width: 100%;
  height: 124px;
}
.heroInputTable__typeRadioWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
}
.heroInputTable__typeRadioWrap input[type=radio] {
  display: none;
}
.heroInputTable__typeRadioWrap input[type=radio]:checked + .heroInputTable__typeRadio {
  background-color: #fff2e6;
  border: solid 1px #dedcd7;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
}
.heroInputTable__typeRadioWrap input[type=radio]:checked + .heroInputTable__typeRadio .heroInputTable__typeRadioImage, .heroInputTable__typeRadioWrap input[type=radio]:checked + .heroInputTable__typeRadio .heroInputTable__typeRadioImage--active {
  display: none;
}
.heroInputTable__typeRadioWrap input[type=radio]:checked + .heroInputTable__typeRadio .heroInputTable__typeRadioImage--active {
  display: inline;
}
.heroInputTable__typeRadioWrap input[type=radio]:checked + .heroInputTable__typeRadio .heroInputTable__typeRadioText {
  color: #ff6010;
}
.heroInputTable__typeRadio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 178px;
  height: 64px;
  padding: 8px 16px;
  margin-right: 8px;
  background-color: #fff;
  border: solid 1px #dedcd7;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
}
.heroInputTable__typeRadio:last-of-type {
  margin-right: 0;
}
.heroInputTable__typeRadio:hover {
  cursor: pointer;
}
.heroInputTable__typeRadioImage, .heroInputTable__typeRadioImage--active {
  width: 48px;
  height: 48px;
}
.heroInputTable__typeRadioImage--active {
  display: none;
}
.heroInputTable__typeRadioText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.kaitoriTopInputModal {
  height: 100%;
  padding: 32px;
  overflow: hidden;
}
.kaitoriTopInputModal .modalSteps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  line-height: 16px;
}
.kaitoriTopInputModal .modalSteps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 350px;
          flex: 0 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 12px;
}
.kaitoriTopInputModal .modalSteps li:first-of-type {
  left: 0;
  padding-left: 0;
  border-radius: 3px 0 0 3px;
}
.kaitoriTopInputModal .modalSteps li:last-of-type {
  border-radius: 0 3px 3px 0;
}
.kaitoriTopInputModal .modalSteps li:last-of-type::before {
  display: none;
}
.kaitoriTopInputModal .modalSteps li:last-of-type::after {
  display: none;
}
.kaitoriTopInputModal .modalSteps__step {
  position: relative;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #808080;
  text-align: center;
  background: #ededed;
}
.kaitoriTopInputModal .modalSteps__step::before {
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  z-index: 2;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #ededed;
  border-style: solid;
  border-width: 24px 0 24px 12px;
}
.kaitoriTopInputModal .modalSteps__step::after {
  position: absolute;
  top: -18px;
  right: -20px;
  z-index: 1;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 42px 0 42px 20px;
}
.kaitoriTopInputModal .modalSteps__step:last-of-type::before {
  display: none;
}
.kaitoriTopInputModal .modalSteps__step:last-of-type::after {
  display: none;
}
.kaitoriTopInputModal .modalSteps__step--done {
  position: relative;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #ff6010;
}
.kaitoriTopInputModal .modalSteps__step--done::before {
  position: absolute;
  top: 0;
  right: -12px;
  bottom: 0;
  z-index: 2;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #ff6010;
  border-style: solid;
  border-width: 24px 0 24px 12px;
}
.kaitoriTopInputModal .modalSteps__step--done::after {
  position: absolute;
  top: -18px;
  right: -20px;
  z-index: 1;
  margin: auto;
  content: "";
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 42px 0 42px 20px;
}
.kaitoriTopInputModal .modalSteps__mainText {
  display: inline-block;
  width: 257px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kaitoriTopInputModal .modalSteps__subText {
  display: inline-block;
  max-width: 257px;
  padding-bottom: 2px;
  font-size: 12px;
  font-weight: 300;
  text-overflow: ellipsis;
}

.kaitoriTopInputModalMaker .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalMaker .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriTopInputModalMaker .countryList__item {
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalMaker .countryList__item:last-of-type {
  border-bottom: 0;
}
.kaitoriTopInputModalMaker .countryList__item .media {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  margin-bottom: 6px;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalMaker .countryList__item .media__obj {
  margin-right: 10px;
}
.kaitoriTopInputModalMaker .countryList__item .media__obj > img {
  vertical-align: bottom;
}
.kaitoriTopInputModalMaker .countryList__item .media__body {
  font-size: 14px;
  font-weight: bold;
}
.kaitoriTopInputModalMaker .countryList__item__makerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px 0 28px;
  margin-bottom: 6px;
  font-size: 14px;
}
.kaitoriTopInputModalMaker .countryList__item__makerList > li {
  width: 220px;
}
.kaitoriTopInputModalMaker .countryList__item__makerList > li a {
  display: inline-block;
  width: 100%;
  height: 34px;
  padding: 10px 16px;
  line-height: 14px;
}
.kaitoriTopInputModalMaker .countryList__item__makerList > li a:hover {
  background: #fff2e6;
}
.kaitoriTopInputModalMaker .nationalFlag {
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.usa {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -24px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.aus {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -264px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.aut {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -48px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.bel {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -72px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.can {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -96px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.gbr {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -144px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.fra {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -168px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.ger {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -192px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.ind {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -216px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.ita {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -240px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.jpn {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 0;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.kor {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -288px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.mys {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -312px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.hol {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -336px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.rus {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -384px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.esp {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -456px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.tha {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -504px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.rsa {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -432px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.swe {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -480px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.cze {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -120px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.rou {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -360px;
  width: 32px;
  height: 24px;
}
.kaitoriTopInputModalMaker .nationalFlag.svn {
  background-image: url(/static/pc/img/sprite/country/sprite.png);
  background-position: 0 -408px;
  width: 32px;
  height: 24px;
}

.kaitoriTopInputModalType .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: none;
}
.kaitoriTopInputModalType .modelFavorite {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50px;
  padding: 8px 0;
  margin-bottom: 16px;
  border: 2px solid #ebe9e4;
  border-radius: 3px;
}
.kaitoriTopInputModalType .modelFavorite__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 76px;
          flex: 0 76px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-align: left;
  text-indent: 22px;
}
.kaitoriTopInputModalType .modelFavorite__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.kaitoriTopInputModalType .modelFavorite__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 16px 0 0;
  font-size: 14px;
}
.kaitoriTopInputModalType .modelFavorite__list ul > li a {
  display: inline-block;
  padding: 10px 16px;
  line-height: 14px;
}
.kaitoriTopInputModalType .modelFavorite__list ul > li a:hover {
  background: #fff2e6;
}
.kaitoriTopInputModalType .modelLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40px;
  background: #f5f4f0;
  border-top: 3px solid #d6d4d0;
}
.kaitoriTopInputModalType .modelLink__header {
  -webkit-box-flex: 0;
      -ms-flex: 0 92px;
          flex: 0 92px;
  font-size: 14px;
  font-weight: 600;
  line-height: 38px;
  text-align: center;
}
.kaitoriTopInputModalType .modelLink__link, .kaitoriTopInputModalType .modelLink__link--disable {
  font-size: 13px;
  line-height: 38px;
}
.kaitoriTopInputModalType .modelLink__link a, .kaitoriTopInputModalType .modelLink__link--disable a {
  position: relative;
  padding: 10px 20px 10px 10px;
}
.kaitoriTopInputModalType .modelLink__link a::after, .kaitoriTopInputModalType .modelLink__link--disable a::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: inline-block;
  margin-top: -6px;
  margin-right: 4px;
  content: "";
  border-top: 10px solid #ff6010;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.kaitoriTopInputModalType .modelLink__link--disable a {
  color: #ccc;
  pointer-events: none;
}
.kaitoriTopInputModalType .modelLink__link--disable a::after {
  border-top: 10px solid #ccc;
}
.kaitoriTopInputModalType .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriTopInputModalType .modelList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 0 14px 0;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalType .modelList__item:last-of-type {
  border-bottom: 0;
}
.kaitoriTopInputModalType .modelList__item .media {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 76px;
          flex: 0 0 76px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 6px;
  text-align: center;
}
.kaitoriTopInputModalType .modelList__item .media__body {
  font-size: 14px;
  font-weight: bold;
}
.kaitoriTopInputModalType .modelList__item .media__body p {
  text-align: left;
  text-indent: 24px;
}
.kaitoriTopInputModalType .modelList__item__modelList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 16px 0 0;
  font-size: 14px;
}
.kaitoriTopInputModalType .modelList__item__modelList > li {
  width: 206px;
}
.kaitoriTopInputModalType .modelList__item__modelList > li a {
  display: inline-block;
  width: 100%;
  padding: 8px 16px;
  line-height: 21px;
}
.kaitoriTopInputModalType .modelList__item__modelList > li a:hover {
  background: #fff2e6;
}

.kaitoriTopInputModalGrade .title5 {
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalGrade .modalContent {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 48px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.kaitoriTopInputModalGrade .gradeList__item:first-of-type {
  margin-bottom: 6px;
  border-bottom: 1px solid #dedcd7;
}
.kaitoriTopInputModalGrade .gradeList__item:first-of-type a {
  margin: 6px 0;
}
.kaitoriTopInputModalGrade .gradeList__item a {
  display: inline-block;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 14px;
}
.kaitoriTopInputModalGrade .gradeList__item a:hover {
  background: #fff2e6;
}

.specialContentsHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.specialContentsHeading__link {
  display: inline-block;
  text-align: right;
}
.specialContentsHeading__link.arrowRight::before {
  top: 1px;
}

.specialContentsLink {
  margin-bottom: 32px;
  text-align: right;
}
.specialContentsLink:last-of-type {
  margin-bottom: 56px;
}
.specialContentsLink a {
  display: inline-block;
}
.specialContentsLink a.arrowRight::before {
  top: 1px;
}

.specialContents {
  width: 980px;
  margin-bottom: 16px;
}
.specialContents__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.specialContents__articleItem {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 233px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
}
.specialContents__itemLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.specialContents__itemLink:hover {
  text-decoration: none;
}
.specialContents__itemLink:hover .specialContents__title {
  text-decoration: underline;
}
.specialContents__img img {
  width: 100%;
  height: 175px;
  vertical-align: bottom;
}
.specialContents__title {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 15px 16px 12px;
  font-size: 14px;
  font-weight: bold;
}
.specialContents__description {
  height: 38px;
  margin: 0 16px 16px;
  overflow: hidden;
  font-size: 12px;
  color: #3a3a3a;
}

.specialContentsBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.specialContentsBox {
  width: 300px;
}
.specialContentsBox:nth-child(n+2) {
  margin-left: 40px;
}
.specialContentsBox .title5 {
  margin-bottom: 8px;
}
.specialContentsBox__list {
  display: block;
  margin-bottom: 15px;
  border: none;
}
.specialContentsBox__listItem {
  width: 100%;
  padding: 12px 0;
  border-top: solid 1px #dedcd7;
}
.specialContentsBox__listItem:last-child {
  border-bottom: solid 1px #dedcd7;
}
.specialContentsBox__link {
  display: block;
  padding: 0 10px;
}

.carValuation {
  padding: 16px 24px;
  margin-bottom: 52px;
  border: 1px solid #dedcd7;
  border-radius: 3px;
}

.maker {
  margin-bottom: 32px;
}

.maker__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  border: 1px solid #dedcd7;
}

.maker__list li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 109px;
  height: 110px;
  border-right: 1px solid #dedcd7;
}

.maker__list li:last-child {
  border-right: 0;
}

.maker__list li > a {
  display: block;
  width: 108px;
  height: 110px;
  padding: 26px 0;
}

.maker__list li > a p {
  width: 100%;
  text-align: center;
}

.maker__icon {
  position: relative;
  display: block;
  width: 53px;
  height: 36px;
  margin: 0 auto 8px;
}

.maker__icon:hover::before {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  opacity: 0.5;
}

.maker__icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.maker__icon.makerLE::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -360px;
}

.maker__icon.makerTO::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -252px;
}

.maker__icon.makerNI::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -612px;
}

.maker__icon.makerHO::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -288px;
}

.maker__icon.makerMA::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -432px;
}

.maker__icon.makerSB::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -396px;
}

.maker__icon.makerSZ::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -324px;
}

.maker__icon.makerMI::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 0;
}

.maker__icon.makerDA::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -216px;
}

.maker__icon.makerME + p {
  letter-spacing: -0.5px;
}

.maker__icon.makerME::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -504px;
}

.maker__icon.makerBM::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -72px;
}

.maker__icon.makerVW + p {
  letter-spacing: -0.5px;
}

.maker__icon.makerVW::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -108px;
}

.maker__icon.makerAD::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -36px;
}

.maker__icon.makerPO::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -468px;
}

.maker__icon.makerMN::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -576px;
}

.maker__icon.makerPE::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -540px;
}

.maker__icon.makerVO::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -180px;
}

.maker__icon.makerLR::before {
  width: 53px;
  height: 36px;
  background-image: url("/static/pc/img/sprite/revLogo/sprite.png");
  background-position: 0 -144px;
}

.maker__link {
  text-align: right;
}

/* 相場情報の染み出しランキング */
.flexibleRankingWrap {
  padding: 0 0 16px;
}

.flexibleRanking {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexibleRanking:first-of-type .flexibleRankingRow:first-of-type {
  border-radius: 3px 0 0 0;
}
.flexibleRanking:first-of-type .flexibleRankingRow:last-of-type {
  border-radius: 0 3px 0 0;
}
.flexibleRanking:last-of-type .flexibleRankingRow:first-of-type {
  border-radius: 0 0 0 3px;
}
.flexibleRanking:last-of-type .flexibleRankingRow:last-of-type {
  border-radius: 0 0 3px 0;
}

.flexibleRankingRow {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 196px;
          flex: 0 0 196px;
  border-color: #dedcd7;
  border-style: solid;
  border-width: 1px 0 1px 1px;
}
.flexibleRankingRow a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 30px 12px 16px;
  text-decoration: none;
}
.flexibleRankingRow:last-of-type {
  border-width: 1px;
}
.flexibleRankingRow__img {
  width: 132px;
  height: 99px;
  margin: auto auto 12px;
}
.flexibleRankingRow__img img {
  width: 132px;
  height: 99px;
}
.flexibleRankingRow__maker {
  height: 16px;
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 16px;
  color: #333;
  letter-spacing: normal;
}
.flexibleRankingRow__name {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: #003a6b;
}
.flexibleRankingRow__data {
  font-size: 10px;
  line-height: 10px;
  color: #333;
}
.flexibleRankingRow__data span {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
}
.flexibleRankingRow__dataTitle {
  margin-bottom: 8px;
  line-height: 1.6;
}
.flexibleRankingRow__rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 32px;
  color: #fff;
  text-align: center;
  background-color: #918d86;
  border-radius: 16px;
}
.flexibleRankingRow__rank--first {
  background-color: #d9b340;
}
.flexibleRankingRow__rank--first::after {
  position: absolute;
  top: 1px;
  left: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  border: 3px solid #e4ca7a;
  border-radius: 15px;
}
.flexibleRankingRow__rank--second {
  background-color: #67727a;
}
.flexibleRankingRow__rank--second::after {
  position: absolute;
  top: 1px;
  left: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  border: 3px solid #929b9f;
  border-radius: 15px;
}
.flexibleRankingRow__rank--third {
  background-color: #9d5125;
}
.flexibleRankingRow__rank--third::after {
  position: absolute;
  top: 1px;
  left: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  border: 3px solid #bb8667;
  border-radius: 15px;
}

.flexibleRanking + .flexibleRanking li {
  border-top: none;
}

.applicationRankingLink {
  margin-bottom: 32px;
  text-align: right;
}
.applicationRankingLink a {
  margin-left: 8px;
}
.applicationRankingLink__satei-souba {
  margin-top: 16px;
}
.applicationRankingLink__purchasePrice {
  margin-top: 16px;
  line-height: 1;
  text-align: right;
}

.bodyTypeRanking {
  margin-bottom: 52px;
}

.bodyTypeRanking ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #dedcd7;
  border-radius: 3px;
}

.bodyTypeRanking__block {
  width: 25%;
  padding: 16px;
  border-right: 1px solid #dedcd7;
}

.bodyTypeRanking__block:nth-child(4),
.bodyTypeRanking__block:nth-child(8) {
  border-right: 0;
}

.bodyTypeRanking__block:nth-child(1),
.bodyTypeRanking__block:nth-child(2),
.bodyTypeRanking__block:nth-child(3),
.bodyTypeRanking__block:nth-child(4) {
  border-bottom: 1px solid #dedcd7;
}

.bodyTypeRanking__title {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.bodyTypeRanking__car {
  margin-left: 12px;
  list-style-type: decimal;
}

.bodyTypeRanking__car > a {
  display: block;
}

.searchPtternWrapper {
  padding-bottom: 32px;
}

.searchPttern {
  padding: 10px 16px;
  margin-bottom: 16px;
  background-color: #fff;
  border: 1px solid #dedcd7;
  border-radius: 3px;
}

.searchPttern__nameList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.searchPttern__nameList > li {
  margin-right: 20px;
}

.searchPttern--area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.searchPttern__area {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.searchPttern__areaList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  line-height: 1;
}

.searchPttern__areaList:last-child {
  margin-bottom: 0;
}

.searchPttern__areaList dt {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 92px;
}

.searchPttern__areaList dd {
  margin-right: 8px;
}

.searchPttern__areaList dd:last-child {
  margin-right: 0;
}

.searchPatternLinkWrapper {
  text-align: right;
}

.reviewCaution {
  font-size: 14px;
  line-height: 1.6;
}

.reviewCautionModal {
  margin-top: 16px;
  line-height: 1;
}

.shopRanking {
  margin: 32px 0;
}
.shopRanking__item {
  padding: 16px;
  border-bottom: 1px solid #dedcd7;
}
.shopRanking__item:hover {
  cursor: pointer;
  background-color: #fff2e6;
}
.shopRanking__shopName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.shopRanking__rank {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background: #918d86;
  border-radius: 50%;
}
.shopRanking__rank--first, .shopRanking__rank--second, .shopRanking__rank--third {
  position: relative;
}
.shopRanking__rank--first::after, .shopRanking__rank--second::after, .shopRanking__rank--third::after {
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  width: 22px;
  height: 22px;
  content: "";
  border-radius: 50%;
}
.shopRanking__rank--first {
  background: #d9b340;
}
.shopRanking__rank--first::after {
  border: 2px solid #e4ca7a;
}
.shopRanking__rank--second {
  background: #6f7b83;
}
.shopRanking__rank--second::after {
  border: 2px solid #9aa3a8;
}
.shopRanking__rank--third {
  background: #a15326;
}
.shopRanking__rank--third::after {
  border: 2px solid #bd8768;
}
.shopRanking__shopAddress {
  margin-top: 8px;
}
.shopRanking__cassetteReview {
  display: none;
  margin-top: 24px;
}
.shopRanking__latestReview {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.shopRanking__reviewInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
  margin-top: 16px;
}
.shopRanking__reviewInfoData {
  font-weight: bold;
}
.shopRanking__comment {
  margin-top: 8px;
}
.shopRanking__replyWrap {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px dotted #dedcd7;
}
.shopRanking__replyTitle {
  padding-left: 16px;
  font-weight: bold;
  line-height: 2;
  border-left: 4px solid #dedcd7;
}
.shopRanking__reply {
  margin-top: 8px;
}
.shopRanking__moreButton {
  display: block;
  width: 100%;
  padding: 16px 0 0;
  color: #003a6b;
  text-align: center;
}
.shopRanking__moreButton:hover {
  text-decoration: underline;
}
.shopRanking__moreButtonArrow {
  display: inline-block;
  margin-right: 4px;
}
.shopRanking__moreLink {
  margin-top: 16px;
  text-align: right;
}

.evaluationWrap {
  margin-top: 12px;
}
.evaluationWrap--latestReview {
  margin-top: 8px;
}
.evaluationWrap div.evaluationWrap__contents {
  margin-bottom: 0;
}
.evaluationWrap__contentsComprehensive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
}
.evaluationWrap__comprehensiveTitle {
  margin-right: 8px;
}
.evaluationWrap__starWrap {
  margin-right: 8px;
}
.evaluationWrap p.evaluationWrap__contents__star i {
  width: 17px;
  height: unset;
  font-size: 17px;
  line-height: 1;
}
.evaluationWrap__contentsScore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-right: 0;
}
.evaluationWrap__contentsScore--latestReview {
  margin-right: 16px;
}
.evaluationWrap__reviewNumber {
  font-size: 10px;
  line-height: 1;
  color: #808080;
}
.evaluationWrap__contents--detail {
  gap: 0 8px;
}
.evaluationWrap__detailPoint {
  font-size: 14px;
  font-weight: bold;
}

.newShop {
  margin-bottom: 32px;
  border: 1px solid #ebe9e4;
}

.newShop ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newShop li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
  padding: 10px;
  font-size: 12px;
  border-right: 1px solid #ebe9e4;
}

.newShop li:last-child {
  border-right: 0;
}

.newShop li > a {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.purchaseFlow {
  width: 736px;
  margin-bottom: 52px;
  border: 3px solid #ebe9e4;
  border-radius: 3px;
}

.purchaseFlow dt {
  padding: 12px 24px;
  font-weight: 700;
  color: #ff9500;
  background-color: #f9f8f6;
}

.purchaseFlow dt > span {
  padding-left: 4px;
  font-size: 18px;
}

.purchaseFlow dd {
  padding: 16px 24px;
  border-bottom: 1px solid #ebe9e4;
}

.purchaseFlow dd:last-child {
  border-bottom: 0;
}

.purchaseFlow__title {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.purchaseFlow__moreLink {
  margin-top: 16px;
  text-align: right;
}

.mobileCS {
  padding: 10px;
  margin-bottom: 52px;
  background-color: #f5f4f0;
}

.mobileCS .media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobileCS .media__img {
  margin-right: 10px;
}

.mobileCS .media__img img {
  vertical-align: bottom;
}

.supervision {
  margin-bottom: 64px;
}

.supervision .media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.supervision .media__img {
  margin-right: 10px;
}

.supervision .media__img img {
  width: 75px;
  height: auto;
  vertical-align: bottom;
}

.supervision .media__body {
  font-size: 10px;
}

.modalWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: 100%;
}

.modalWrap.is-active {
  display: block;
}

.modalBG {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}

.modalMain {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 102;
  padding: 20px 16px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modalMain .title3 {
  margin-bottom: 20px;
}

.modalMain__formItemWrap {
  padding: 20px 16px;
  margin-bottom: 20px;
  border-top: 1px solid #dedcd7;
  border-bottom: 1px solid #dedcd7;
}

.modalMain__formItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.modalMain__formItem:last-child {
  margin-bottom: 0;
}

.modalMain__formItem .label--select + .label--select {
  margin-left: 12px;
}

.modalMain__formItem .label--select.label--selectLong {
  width: 100%;
}

.modalMain__formItem .label--select.label--selectLong select {
  width: 100%;
}

.modalMain__result {
  display: none;
  padding: 0 16px 20px;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 1px solid #dedcd7;
}

.modalMain__result.is-active {
  display: block;
}

.modalMain__result p {
  font-size: 16px;
  line-height: 1;
}

.modalMain__result .address {
  padding-right: 24px;
  font-size: 16px;
}

.modalMain__result .postalCode {
  font-size: 22px;
  color: #ff6010;
}

.modalMain__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.modalMain__action .btnFunc {
  padding: 10px 12px;
  line-height: 1;
}

.modalMain__action .btnSearch {
  width: 180px;
  padding: 10px 12px;
  margin-left: 12px;
  font-size: 12px;
  line-height: 1;
}

.scrollLock {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  padding: 14px 0 10px;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #ccc;
}

.scrollLock.is-active {
  display: block;
}

.scrollLock::before,
.scrollLock::after {
  position: absolute;
  top: 0;
  display: inline-block;
  height: 4px;
  content: "";
}

.scrollLock::before {
  left: 0;
  width: 15%;
  background-color: #ff9500;
}

.scrollLock::after {
  right: 0;
  width: 85%;
  background-color: #ff6010;
}

.scrollLock__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 980px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.scrollLock__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 370px;
  font-size: 14px;
  font-weight: 700;
}

.scrollLock__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.scrollLock__action p {
  margin-right: 12px;
  font-weight: 700;
}

.scrollLock__action .btnAct--inquiry {
  width: 245px;
  padding: 17px 15px 16px 44px;
  font-size: 16px;
}

.scrollLock__action .btnAct--inquiry span {
  height: 49px;
  padding: 9px 8px;
}

.scrollLock__action .btnAct--inquiry em {
  font-style: normal;
}

.scrollLock__closeBtn {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -7px;
}

.scrollLock .scrollLockCSA {
  padding-top: 5px;
  font-weight: 400;
}

/* カーセンサーを選ぶべき理由 */
.reason {
  margin: 0 auto 56px;
}
.reason__text {
  width: 416px;
  margin: auto 0;
}
.reason__textTitle {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: #ff6010;
}
.reason__textTitle span {
  font-size: 38px;
}
.reason__textDiscription {
  font-size: 16px;
}
.reason__textDiscription span {
  font-weight: bold;
}
.reason__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px 56px;
  margin-bottom: 24px;
  border: 1px solid #dedcd7;
  border-radius: 3px;
}
.reason__contents--logo .reason__textTitle:first-of-type {
  margin-bottom: 4px;
  line-height: 1;
}
.reason__contents--logo .reason__textTitle:first-of-type span {
  position: relative;
  font-size: 48px;
  line-height: 1;
}
.reason__contents--logo .reason__textTitle:first-of-type img {
  position: absolute;
  top: -6px;
  right: -16px;
  z-index: 3;
}
.reason__contents--graph {
  margin-bottom: 32px;
}
.reason__contents--graph .reason__textTitle {
  line-height: 1;
}
.reason__image {
  width: 410px;
}
.reason__image img {
  width: 100%;
  height: 100%;
}
.reason__image--logo {
  height: 159.9px;
}
.reason__image--graph {
  height: 191.33px;
}
.reason__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 422px;
  height: 56px;
  margin: auto;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff551a), color-stop(77.51%, #ff551a), to(#f34a10));
  background: -webkit-linear-gradient(top, #ff551a 0%, #ff551a 77.51%, #f34a10 100%);
  background: linear-gradient(180deg, #ff551a 0%, #ff551a 77.51%, #f34a10 100%);
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.reason__button:hover {
  text-decoration: none;
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #e54b17), to(#d2400f));
  background-image: -webkit-linear-gradient(top, #e54b17 85%, #d2400f 100%);
  background-image: linear-gradient(to bottom, #e54b17 85%, #d2400f 100%);
}
.reason__button:hover .reason__buttonLabel {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #e68600), to(#d77c00));
  background-image: -webkit-linear-gradient(top, #e68600 85%, #d77c00 100%);
  background-image: linear-gradient(to bottom, #e68600 85%, #d77c00 100%);
}
.reason__buttonLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  padding: 12px 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff9500), color-stop(77.51%, #ff9500), to(#f38e00));
  background: -webkit-linear-gradient(top, #ff9500 0%, #ff9500 77.51%, #f38e00 100%);
  background: linear-gradient(180deg, #ff9500 0%, #ff9500 77.51%, #f38e00 100%);
  border-radius: 6px 0 0 6px;
}
.reason__buttonText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 13px 0 11px;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.reason__buttonSubText {
  position: absolute;
  top: 0;
  left: calc(50% + 12px);
  padding: 4px 12px;
  font-size: 10px;
  line-height: 1;
  color: #ff6010;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #ff6010;
  border-radius: 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.reason__buttonMainText {
  font-size: 20px;
  color: #fff;
}

/* カスタマーの声 */
.review {
  margin: 0 auto 56px;
}
.review .reviewList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.review .reviewList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 478px;
}
.review .reviewList__item--right {
  position: relative;
  width: 100%;
  min-height: 121px;
  padding: 20px 24px;
  margin-left: 28px;
  background: #f5f4f0;
  border-radius: 8px;
}
.review .reviewList__item--right::before {
  position: absolute;
  top: calc(50% - 6px);
  left: -18px;
  content: "";
  border: 6px solid transparent;
  border-right: 12px solid #f5f4f0;
}
.review .reviewList__item--left {
  position: relative;
  margin: auto 0;
}
.review .reviewList__item__age {
  display: block;
  margin-top: 4px;
  font-weight: bold;
  text-align: center;
}
.review .reviewList__item__name {
  display: block;
  font-weight: bold;
  text-align: center;
}
.review .reviewList__item__title {
  font-size: 14px;
  font-weight: bold;
}
.review .reviewList__item__text {
  margin-top: 12px;
}

.jpuc {
  margin-bottom: 56px;
}
.jpuc__text {
  padding: 16px 24px;
  margin: 17px auto 16px auto;
  font-size: 12px;
  line-height: 19px;
  border: 1px solid #dedcd7;
  border-radius: 3px;
}
.jpuc__link {
  height: 12px;
  line-height: 12px;
  text-align: right;
}

.purchasePriceModalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: none;
  width: 100%;
  height: 200%;
  background-color: rgba(0, 0, 0, 0.5);
}

.purchasePriceModal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  display: none;
  width: 530px;
  padding: 28px 16px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.purchasePriceModal__closeButton {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 0 0.3px rgba(204, 200, 184, 0.5);
          box-shadow: 0 1px 0 0.3px rgba(204, 200, 184, 0.5);
}
.purchasePriceModal__closeButton::before, .purchasePriceModal__closeButton::after {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: #333;
}
.purchasePriceModal__closeButton::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.purchasePriceModal__closeButton::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.purchasePriceModal__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.purchasePriceModal__content {
  margin-top: 16px;
}
.purchasePriceModal__text {
  margin-top: 16px;
}

.cautionModalMainWrap {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  display: none;
  width: 530px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cautionModalMain {
  position: relative;
  padding: 28px 16px;
  background: #fff;
  border-radius: 5px;
}
.cautionModalMain__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.cautionModalMain__text {
  margin-top: 16px;
}

.cautionModalBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.scrollAction {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 74px;
  background-color: rgba(255, 243, 216, 0.9);
  -webkit-box-shadow: 0 -1px 6px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 -1px 6px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.scrollAction.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.scrollAction__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 569px;
  margin: 10px auto 0;
}
.scrollAction__catchArea {
  width: 293px;
}
.scrollAction__catchArea img {
  width: 112px;
  margin-bottom: -5px;
}
.scrollAction__catchArea .scrollAction__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  text-align: right;
}
.scrollAction__catchArea .scrollAction__title span {
  font-size: 20px;
}
.scrollAction__catchArea .scrollAction__title em {
  font-style: normal;
  color: #ff6010;
}
.scrollAction__btnArea .btnAct--inquiry {
  width: 244px;
  padding: 15px 15px 13px 47px;
  font-size: 16px;
}
.scrollAction__btnArea .btnAct--inquiry span {
  width: 30px;
  height: 44px;
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.3;
}
.scrollAction__btnArea .btnAct--inquiry em {
  font-style: normal;
}

.footer {
  padding: 30px 0 94px;
}
