@charset "UTF-8";
.kaitori_w {
  width: 90%;
  margin: auto;
  max-width: 1240px;
}
h1 {
  font-size: 1.6em;
  padding: 0 4% 20px 4%;
  text-align: center;
}
@media (min-width: 740px) {
  h1 {
    font-size: 2em;
    padding: 0 0 40px 0;
  }
}
/*ステップバー*/
.multi-steps {
  max-width: 640px;
  margin: 0 auto 0 auto;
}
.multi-steps > li.is-active ~ li:before,
.multi-steps > li.is-active:before {
  content: counter(stepNum);
  font-family: inherit;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.multi-steps > li.is-active ~ li:after,
.multi-steps > li.is-active:after {
  background-color: #ddd;
}
.multi-steps {
  display: table;
  table-layout: fixed;
  width: 90%;
  margin: 1em auto 3em auto;
}
.multi-steps > li {
  counter-increment: stepNum;
  text-align: center;
  display: table-cell;
  position: relative;
  /*color: var(--orange);*/
  margin: 0;
}
.multi-steps > li:before {
  content: "✓";
  display: block;
  margin: 0 auto 10px;
  background-color: var(--orange);
  color: #fff;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  position: relative;
  z-index: 5;
}
.multi-steps > li:after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--orange);
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 1;
}
.multi-steps > li:last-child:after {
  display: none;
}
.multi-steps > li.is-active:before {
  background-color: var(--orange);
}
.multi-steps > li.is-active ~ li {
  color: #999;
}
.multi-steps > li.is-active ~ li:before {
  background-color: #ddd;
  border-color: #ddd;
}
.multi-steps > li span {
  font-size: 0.75em;
  font-weight: bold;
  display: block;
  line-height: 1.4;
}
/*検索*/
.model_search_form {
  padding: 1.5em 0 1em;
  background: #f5f5f5;
}
.model_search_form input,
.model_search_form select {
  font-size: 0.93em;
  font-weight: 500;
  line-height: 24px;
  padding: 0.5em 1em;
}
.model_search_form input,
.model_search_form .select_box {
  margin-bottom: 0.5em;
}
.model_search_form .select_box.req select {
  padding-left: 3.5em;
}
.model_search_form .select_box.req::before {
  content: "必須";
  background: var(--orange);
  color: #fff;
  font-size: 0.65em;
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.5em;
  line-height: 1.8;
  border-radius: 2px;
}
.model_search_btn {
  text-align: center;
  padding: 5px 0 0 0;
}
.model_search_btn button {
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #333;
  line-height: 2.7;
  font-size: 0.93em;
  padding: 0 4em;
  border-radius: 3px;
  margin: auto;
}
.search_width {
  width: 90%;
  margin: auto;
  max-width: 860px;
}
.model_search_form hr {
  border-top: 1px solid #ddd;
  margin: 1em 0;
}
@media (min-width: 740px) {
  .model_search_form .flex_pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .model_search_form .flex_pc > div:first-child {
    width: calc(100% - 8em);
    padding-right: 1em;
    position: relative;
  }
  .model_search_form .flex_pc > div:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: calc(100% - 0.5em);
    border-right: 1px solid #ccc;
  }
  .model_search_form .flex_pc .model_search_btn {
    width: 8em;
    padding: 0 0 0.5em 1em;
  }
  .model_search_form .flex_pc .model_search_btn button {
    padding: 0.5em 0;
    width: 100%;
  }
  .model_search_form .flex {
    display: flex;
    flex: 1;
  }
  .model_search_form .flex > div {
    width: 100%;
  }
  .model_search_form .flex > div:last-child {
    padding-left: 0.5em;
  }
}
/*絞り込み*/
.model_filter dt {
  text-align: center;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
}
.model_filter dt span {
  display: inline-block;
  padding: 0 2.5em 0 1.5em;
  position: relative;
  line-height: 2.8;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fff;
  font-size: 0.93em;
}
.model_filter dt span::after {
  content: "";
  width: 2em;
  height: 2em;
  background-image: url(../images/icon_down.svg);
  background-size: cover;
  transition: 0.3s;
  position: absolute;
  right: 5px;
  border-radius: 50%;
  top: calc(50% - 1em);
}
.model_filter dt.active span::after {
  transform: rotate(180deg);
}
.model_filter dd {
  display: none;
}
.filter_button {
  display: flex;
  flex-wrap: wrap;
  padding: 0.8em 0 0.5em 0;
}
.filter_button div {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.filter_button button {
  margin: 0 2px 4px 2px;
  font-size: 1em;
  display: block;
  padding: 0.2em 0.8em;
  line-height: 2.2;
  cursor: pointer;
  letter-spacing: 0.05em;
  border: 1px solid #d5d5d5;
  background: #fff;
  border-radius: 40px;
  min-width: 2.8em;
  width: auto;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}
.filter_button button.active {
  color: #fff;
  border: 1px solid var(--orange);
  background: var(--orange);
}
.filter_button button:disabled {
  pointer-events: none;
  color: #ddd;
  border: 1px solid #eee;
  background: #fff;
}
.filter_button button.kana_num {
  font-size: 0.93em;
}
p.note {
  text-align: center;
  padding: 2em 0 0 0;
}
/*モデル一覧*/
.model_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 1.75em;
  width: 96%;
  margin: 3em auto;
}
.model_list li {
  position: relative;
}
.model_list li .campaign_label {
  position: absolute;
  display: inline-block;
  height: 2.2em;
  line-height: 2.2;
  padding: 0 0.8em 0 1em;
  background-color: #009e75;
  color: #ffff96;
  font-weight: bold;
  text-align: center;
  font-size: 0.7em;
  top: -1.4em;
  left: -3px;
  z-index: 5;
}
.model_list li .campaign_label::before {
  content: "キャンペーン対象";
}
.model_list li .campaign_label::after {
  position: absolute;
  content: "";
  top: 0;
  width: 0px;
  height: 0px;
  border-color: #009e75 transparent;
  border-style: solid;
  left: 100%;
  border-width: 1.1em 0.6em 1.1em 0;
}
.model_list li h3 {
  font-size: 0.93em;
  font-weight: 500;
  margin: 0.5em 0 0 0;
  line-height: 1.4;
}
.model_list figure {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  padding: 8px;
  background: url(/assets/images/loader.svg) no-repeat center center #fff;
  background-size: 30px 30px;
}
.model_list figure::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.model_list figure:has(.lazyloaded, .lazyloading) {
 background:  #fff;
}
.model_list figure img {
  aspect-ratio: 2/1;
  object-fit: contain;
  object-position: 50% 50%;
}
@media screen {
  .model_list figure img {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .model_list figure img:is(.lazyloaded, .lazyloading) {
    opacity: 1;
  }
}
@media (hover: hover) {
  .model_list a figure img,
  .model_list a figure::before {
    transition: 0.3s;
  }
  .model_list a:hover figure img {
    opacity: 0.6;
  }
  .model_list a:hover h3 {
   text-decoration: underline;
   text-underline-offset:3px;
 }
}
@media (min-width: 520px) {
  .model_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 740px) {
  .model_list {
    grid-template-columns: repeat(4, 1fr);
    margin: 3em auto 6em;
  }
}
@media (min-width: 1240px) {
  .model_list {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*エラー表示*/
.error_notfound {
  text-align: center;
  padding: 5em 0 10em;
  font-size: 1em;
}
.error_notfound p {
  opacity: 0.7;
}
.error_notfound p::before {
  content: "Not Found.";
  color: #ddd;
  font-size: 2.5em;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}
.select_box + .error {
  transform: translateY(-3px);
}
/*モデル詳細*/
.model_image figure {
  position: relative;
}
.model_image figure::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}
.model_status_name {
  text-align: center;
  padding: 1.5em 0 0 0;
}
.category_maker {
  font-weight: 500;
}
.category_maker span {
  display: inline-block;
}
.category_maker span:first-child::after {
  content: "/";
  font-weight: normal;
  padding: 0 0.5em;
  opacity: 0.5;
}
.model_status_name h2 {
  font-size: 1.6em;
  margin: 0.3em 0 1em 0;
  line-height: 1.2;
}
@media (max-width: 739px) {
  .model_image {
    margin-bottom: 1.5em;
  }
}
@media (min-width: 740px) {
  .model_status_wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
  }
  .model_image {
    width: 44%;
  }
  .model_status {
    width: 52%;
  }
  .model_status_name h2 {
    font-size: 2em;
  }
}
@media (min-width: 960px) {
  .model_image {
    width: calc(48% - 50px);
  }
}
.model_status_select dl {
  border: 1px solid #ddd;
  margin-bottom: 0.5em;
}
.model_status_select dt {
  padding: 0.7em 1.5em 0.7em 3.75em;
  background: #f5f5f5;
  border-bottom: 1px solid #dfdfdf;
  font-weight: bold;
  position: relative;
}
.model_status_select dt::before {
  content: "必須";
  background: var(--orange);
  color: #fff;
  font-size: 0.675em;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  left: 1.7em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.5em;
  line-height: 1.8;
  border-radius: 2px;
}
.model_status_select dd {
  padding: 1em 1.5em;
}
.select_rank p:not(.astarisk) {
  margin: 0.8em 0;
}
.select_rank p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.select_rank ul {
  margin: 0 0 0.3em 0;
  border: 1px solid #e0e0e0;
}
.select_rank li:not(:first-child) {
  border-top: 1px solid #e0e0e0;
}
.select_rank li {
  padding: 0.5em 1em;
}
.select_rank li span {
  font-weight: bold;
}
.select_rank li input[type="radio"] + label {
  margin: 0 0 0 0;
}
@media (max-width: 1080px) {
    .select_rank.campaign_item dd .radiobox {
        display: block;
    }
}
.select_shaft .select_box {
  margin: 0.8em 0 0.3em 0;
}
.campain_img {
  display: none;
}
.campain_img img {
  margin: 0.5em 0;
}
.explan_btn_detail {
  font-size: 0.8em;
  line-height: 1.8;
  border: 2px solid var(--orange);
  padding: 0 0.75em;
  border-radius: 20px;
  display: inline-block;
  background: #fff;
  font-weight: normal;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .explan_btn_detail:hover {
    color: var(--orange);
  }
  .select_rank p a:hover {
    color: var(--orange);
    text-decoration: none;
  }
}
.astarisk {
  padding-left: 1.2em;
  position: relative;
  font-size: 0.9em;
}
.astarisk::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.model_status_select .astarisk {
  color: #d00;
}
.buttons button {
  line-height: 3;
  font-size: 1em;
}
@media (min-width: 740px) {
  .buttons {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  .buttons button {
    margin-left: 0.6em;
    margin-right: 0.6em;
  }
}
/*買取カート*/
.appraisal_cart_item {
  margin: 0 0 5em 0;
}
.appraisal_cart_item li {
  padding: 1.5em 0;
  border-top: 1px solid #ccc;
}
.appraisal_cart_item .model_image {
  width: 33%;
  max-width: 112px;
  padding-right: 1em;
  margin-bottom: 0;
  float: left;
}
.category_maker_name {
  overflow: hidden;
}
.appraisal_cart_item .category_maker span {
  display: block;
  font-size: 0.9em;
}
.appraisal_cart_item .category_maker span:first-child::after {
  display: none;
}
.category_maker_name h3 {
  font-size: 1.3em;
  padding-bottom: 0.3em;
  line-height: 1.4;
}
.appraisal_cart_item dl.spec {
  display: grid;
  width: 100%;
  grid-template-columns: 6.3em 1fr;
  border: solid #ddd;
  border-width: 0 1px 1px 1px;
  clear: both;
}
.appraisal_cart_item dl.spec dt {
  font-size: 0.9em;
  border-top: 1px solid #ddd;
  background: #f5f5f5;
  padding: 0.5em 0.75em;
  white-space: nowrap;
  text-align: center;
}
.appraisal_cart_item dl.spec dd {
  font-size: 0.93em;
  font-weight: 500;
  border-top: 1px solid #ddd;
  border-left: 1px solid #e0e0e0;
  padding: 0.5em 0.75em;
}
.remove_btn {
  text-align: center;
}
.remove_btn button {
  font-size: 0.85em;
  padding: 0 1em 0.3em 1em;
  border: 2px solid #ddd;
  border-radius: 30px;
}
.remove_btn button::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: cover;
  margin-right: 0.5em;
  transform: translateY(0.3em);
  opacity: 0.4;
}
.remove_btn button.btn_remove_cart::before {
  background-image: url("../images/icon_trash.svg");
}
.appraisal_payment {
  margin: 1em 0 4em 0;
  padding: 1em 1.2em;
  border: 3px solid var(--orange);
  line-height: 2;
}
.appraisal_payment span {
  font-weight: bold;
  font-size: 1.07em;
  background: linear-gradient(transparent 30%, #fff587 30%);
  margin: 0 4px;
}
@media (max-width: 739px) {
  .remove_btn {
    padding: 1em 0 0 0;
  }
}
@media (min-width: 740px) {
  .appraisal_cart_item li {
    display: grid;
    grid-template-columns: 1fr 7em;
  }
  .remove_btn {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0 0 1.5em 0;
  }
}
@media (min-width: 960px) {
  .cart_page_wraapper {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .appraisal_cart_side {
    width: 250px;
  }
  .appraisal_cart_item {
    width: calc(100% - 320px);
  }
}
.cart_error_msg {
  border-top: 1px solid #ccc;
  padding: 3em 0 4em;
  text-align: center;
  font-feature-settings: normal;
  line-height: 2.2;
}
@media (min-width: 740px) {
  .cart_error_msg br {
    display: none;
  }
}
.appraisal_cart_side .side_img img {
  margin: 0 0 1em 0;
}
.side_txt_link li {
  padding-bottom: 5px;
}
.side_txt_link li a {
  display: flex;
  align-items: center;
  padding: 0.5em 1em 0.5em 1em;
  border: 2px solid #ddd;
  font-weight: bold;
}
.side_txt_link a img {
  width: 2.4em;
  height: 2.4em;
  margin-right: 0.5em;
  opacity: 0.3;
}
@media (max-width: 639px) {
  .appraisal_cart_side .side_img {
    text-align: center;
    margin-bottom: 1em;
  }
}
@media (min-width: 640px) and (max-width: 939px) {
  .appraisal_cart_side .side_img {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
  }
  .appraisal_cart_side .side_img img {
    margin: 0 0.5em 1em 0.5em;
  }
}
@media (min-width: 740px) and (max-width: 939px) {
  .side_txt_link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0.5em;
  }
}
@media (hover: hover) {
  .remove_btn button,
  .appraisal_cart_side .side_img a,
  .side_txt_link li a {
    transition: 0.3s;
  }
  .remove_btn button:hover,
  .side_txt_link li a:hover {
    /*color: var(--orange);*/
    border-color: var(--orange);
  }
  .appraisal_cart_side .side_img a:hover {
    opacity: 0.7;
  }
}
/*写真で査定*/
.satei_step {
  padding: 2em 1.5em 0.5em 1.5em;
  border: 1px solid var(--orange);
  max-width: 1100px;
  margin: 3em auto 5em;
  position: relative;
}
.satei_step h3 {
  text-align: center;
  position: absolute;
  width: 100%;
  top: -1em;
  left: 0;
  line-height: 2;
  color: var(--orange);
}
.satei_step h3 span {
  background: #fff;
  padding: 0 0.5em;
}
.satei_step h4 {
  font-size: 1.13em;
}
.satei_step p {
  font-size: 0.93em;
}
.satei_step ol {
  counter-reset: number 0;
}
.satei_step ol li {
  margin-bottom: 1em;
  position: relative;
}
.satei_step ol li::before {
  counter-increment: number 1;
  content: counter(number);
  position: absolute;
  width: 2.2em;
  height: 2.2em;
  font-weight: bold;
  display: block;
  border-radius: 50%;
  line-height: 2.2;
  color: #fff;
  background: var(--orange);
  text-align: center;
}
@media (max-width: 739px) {
  .image_upload_page h1 + p span {
    display: block;
    margin: 0.5em 0 0 0;
    padding: 0 0 0 1em;
    text-indent: -1em;
    font-size: 0.93em;
  }
  .satei_step ol li {
    padding-left: 3em;
  }
  .satei_step ol li::before {
    top: -0.2em;
    left: 0;
  }
}
@media (min-width: 740px) {
  .satei_step ol {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2em;
  }
  .satei_step ol li {
    padding: 3em 0 0 0;
  }
  .satei_step ol li::before {
    top: 0em;
    left: calc(50% - 1.1em);
  }
  .satei_step h4 {
    text-align: center;
    margin-bottom: 0.5em;
  }
}
@media (max-width: 959px) {
  .image_upload_guide dl {
    border: 2px solid #ddd;
  }
  .image_upload_guide dt {
    font-weight: 500;
    text-align: center;
    font-size: 1.07em;
    line-height: 3;
  }
  .image_upload_guide dt span {
    display: inline-block;
    padding: 0 3em 0 2em;
    position: relative;
  }
  .image_upload_guide dt span::after {
    content: "";
    width: 3em;
    height: 2em;
    background: url(../images/icon_down.svg) center center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: calc(50% - 1em);
    z-index: 2;
    opacity: 0.5;
  }
  .image_upload_guide dd {
    display: none;
    border-top: 1px solid #ddd;
  }
  .image_upload_guide dd > div {
    padding: 1em 1.5em;
  }
  .close_acd {
    text-align: center;
  }
  .close_acd button {
    display: inline-block;
    position: relative;
    font-size: 0.9em;
    line-height: 2.4;
    padding: 0 1.5em 0 2.5em;
    border: 2px solid #ccc;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    color: #111;
  }
  .close_acd button::before {
    content: "";
    display: block;
    width: 1.2em;
    height: 1.2em;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>')
      no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-51%);
  }
}
@media (min-width: 960px) {
  .image_upload_guide dt,
  .close_acd {
    display: none;
  }
  .image_upload_guide dd {
    display: block !important;
  }
}
.image_upload_wrapper {
  margin: 5em 0 0 0;
}
.inputSet input {
  display: none;
}
#inputContainer {
  counter-reset: number 0;
  /*margin-top: 2em;*/
  padding-bottom: 2em;
}
#inputContainer h3::before {
  counter-increment: number 1;
  content: "画像" counter(number) "枚目";
}
.inputSet {
  border: 1px solid #ddd;
  margin-bottom: 0.5em;
}
.inputSet h3 {
  font-size: 1em;
  padding: 0.7em 1.5em 0.7em 3.75em;
  background: #f5f5f5;
  border-bottom: 1px solid #dfdfdf;
  font-weight: bold;
  position: relative;
}
.inputSet h3::after {
  content: "任意";
  background: #aaa;
  color: #fff;
  font-size: 0.675em;
  font-weight: normal;
  display: inline-block;
  position: absolute;
  left: 1.7em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.5em;
  line-height: 1.8;
  border-radius: 2px;
}
.inputSet.reqinput h3::after {
  content: "必須";
  background: var(--orange);
}
.inputSet .upload_btn_image {
  padding: 1em 1.5em;
}
.descript_txt {
  padding: 0.5em 0 1.5em 0;
}
.previewblock figure {
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid #e5e5e5;
  margin: 1.5em 0 0.5em;
  text-align: center;
  position: relative;
}
.previewblock figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  color: #999;
  top: 0;
  left: 0;
}
.previewblock figcaption span {
  display: block;
}
.previewblock figcaption span::before {
  content: "";
  display: block;
  height: 50px;
  background-image: url("../images/image_upload.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 1em;
}
.imgPreview {
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: 50% 50%;
  position: relative;
  z-index: 3;
}
.input_buttons label {
  font-weight: bold;
  display: inline-block;
  line-height: 3;
  font-size: 0.93em;
  padding: 0 1.5em;
  border-radius: 30px;
  border: 3px solid var(--orange);
  text-align: center;
  width: auto;
  min-width: 12em;
  transition: .3s;
}
.input_buttons label.fileInput_label::before {
  content: "写真を撮る ・ 画像を選択";
}
@media (hover: hover) {
 .input_buttons label:hover {
  color: var(--orange);
 }
}
.inputSet .resetImage,
#addInputSet button {
  font-weight: bold;
  border-radius: 30px;
  border: 3px solid #ddd;
  line-height: 2.4;
  font-size: 0.9em;
  margin-top: 0.5em;
  padding: 0 2em;
}
#addInputSet {
  text-align: right;
}
#addInputSet button {
  margin: 0.5em 0 0 auto;
}
.inputSet .btnBlock {
  text-align: right;
}
.image_upload_guide ul {
  margin: 1.5em 0 2.5em;
}
.image_upload_guide ul li {
  list-style: disc;
  margin: 0 0 0.3em 1.3em;
}
.appraisal_sample_img h3 {
  font-size: 1em;
}
.sample_image_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1em;
  margin-top: 1em;
}
.sample_caption {
  font-size: 0.9em;
  margin: 1em 0 2em 0;
  color: #666;
}
.fancybox__button--fullscreen,
.fancybox__button--slideshow,
.fancybox__button--thumbs,
.fancybox__thumbs {
  display: none !important;
}
.fancybox__slide {
  padding: 48px 0px 8px 0px;
}
.fancybox__slide.has-iframe {
  padding: 48px 8px 8px 8px;
}
.fancybox__content {
  padding: 0px;
}
@media (max-width: 959px) {
  .inputarea {
    padding: 4em 0 0 0;
  }
  .inputarea h2 {
    padding: 0 0 2em 0;
  }
}
@media (min-width: 740px) {
  .fancybox__slide {
    padding: 48px 8px 8px 8px;
  }
  .image_upload_page h1 + p {
    text-align: center;
    line-height: 1.8;
  }
  .upload_btn_image {
    display: flex;
    justify-content: space-between;
  }
  .upload_btn_image > div {
    width: 47%;
  }
  .previewblock figure {
    margin: 0.5em 0 1em 0;
  }
  .input_buttons {
    padding: 0.5em 0 1em 0;
  }
}
@media (min-width: 960px) {
  .image_upload_wrapper {
    display: flex;
    justify-content: space-between;
  }
  .image_upload_guide {
    width: 35%;
    padding: 0 50px 0 0;
  }
  .inputarea {
    flex: 1;
  }
  .inputarea h2 {
    padding: 0 0 1.2em 0;
  }
}
@media (min-width: 960px) and (max-width: 1239px) {
  .image_upload_guide {
    width: 46%;
  }
  .upload_btn_image {
    display: flex;
    flex-direction: column;
  }
  .upload_btn_image > div {
    width: 100%;
  }
}
@media (min-width: 1240px) {
  .input_buttons label.fileInput_label::before {
    content: "画像を選択";
  }
  .image_upload_guide {
    width: 40%;
    padding: 0 70px 0 0;
  }
}
/*買取トップ*/
.campaign_block {
  padding: 3em 0 4em;
  background-color: #f1f4f6;
}
.campaign_tabs {
  display: flex;
  column-gap: 1px;
  position: relative;
  z-index: 5;
}
.campaign_tabs .tab {
  flex: 1;
  font-size: 0.8em;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 0;
  background: #ff9f61;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.campaign_tabs .tab.current {
  background: var(--orange);
  position: relative;
}
.campaign_tabs .tab.current::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: var(--orange) transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1px);
  left: calc(50% - 7px);
}
.tab-content .content {
  display: none;
}
.tab-content .is-show {
  display: block;
  animation: appear 0.5s ease;
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 740px) {
  .campaign_tabs .tab {
    font-size: 0.93em;
  }
}
@media (min-width: 960px) {
  .campaign_tabs .tab {
    font-size: 0.93em;
    padding: 0.8em 0;
  }
}
.campaign_block .campaign_check {
  font-weight: bold;
  color: var(--orange);
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 0.3em;
  letter-spacing: 0.05em;
}
.campaign_block .campaign_check span {
  display: inline-block;
  background: #fff;
  padding: 2px 0.5em;
  border: 1px solid var(--orange);
  transform: skewX(-10deg);
}
.campaign_block h2 {
  font-size: 2em;
  text-align: center;
  position: relative;
  margin: 0 0 0.5em 0;
}
.campaign_link > div {
  font-weight: bold;
  padding: 0 0 0.3em 0;
  font-size: 1.4em;
}
.campaign_info {
  padding: 0 0 2em 0;
  width: auto;
  max-width: 780px;
  margin: 0 auto;
}
.campaign_info a > div {
  background: #fff;
  margin-bottom: 1em;
}
.campaign_info h3 {
  margin: 0 0 0.5em 0;
}
.campaign_info p {
  font-size: 0.93em;
}
@media (max-width: 539px) {
  .campaign_info p br {
    display: none;
  }
}
@media (min-width: 740px) {
  .campaign_block {
    padding: 4em 0 4em;
  }
  .campaign_block h2 {
    font-size: 2.2em;
    margin: 0 0 1.2em 0;
  }
}
.campaign_maker {
  display: flex;
  column-gap: 0.6em;
  justify-content: center;
  margin-bottom: 0.5em;
}
.campaign_maker li {
  width: 20%;
  max-width: 120px;
  aspect-ratio: 200/120;
  overflow: hidden;
}
.campaign_maker li img {
  aspect-ratio: 200/120;
  object-fit: cover;
  object-position: 50% 50%;
}
.campaign_items {
  display: flex;
  column-gap: 0.6em;
  flex-wrap: wrap;
  padding: 0.5em 0;
  justify-content: center;
  /*background: #fff;*/
}
.campaign_items li {
  width: calc(100% / 3 - 0.4em);
  text-align: center;
  margin: 0.75em 0;
}
@media (min-width: 520px) {
  .campaign_items li {
    width: calc(100% / 4 - 0.4em);
  }
}
@media (min-width: 740px) {
  .campaign_items {
    column-gap: 1em;
  }
  .campaign_items li {
    width: calc(100% / 5 - 0.8em);
  }
}
@media (min-width: 740px) and (max-width: 959px) {
  .campaign_items li:nth-child(n + 6) {
    display: none;
  }
}
@media (min-width: 960px) {
  .campaign_items li {
    width: calc(100% / 3 - 0.75em);
  }
  .campaign_info_block {
    display: flex;
    justify-content: space-between;
  }
  .campaign_info {
    width: 52%;
    padding: 0;
  }
  .campaign_info p {
    font-size: 1em;
  }
  .campaign_model_list {
    padding: 0 0 0 30px;
    width: 48%;
  }
  .campaign_items {
    padding: 0.5em 0;
  }
}
.campaign_items figure {
  padding: 1px;
}
.campaign_items .thumbnail {
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: 30px 30px;
  transition: 0.3s;
  margin-bottom: 0.5em;
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  position: relative;
  background: url(/assets/images/loader.svg) no-repeat center center #fff;
  background-size: 30px 30px;
}
.campaign_items .thumbnail:has(.lazyloaded, .lazyloading) {
 background: #fff;
}
.campaign_items .thumbnail img {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.campaign_items .thumbnail img:is(.lazyloaded, .lazyloading) {
  opacity: 1;
}
.campaign_items .item_model_name {
  font-size: 0.93em;
}
.campaign_items .item_model_name span {
  display: block;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.campaign_items .item_model_name span:nth-of-type(2) {
  font-size: 0.9em;
}
.campaign_items .item_model_name span.model {
  font-weight: 700;
}
.rank_price {
  line-height: 1.3;
}
.rank_price .rank,
.rank_price .price {
  font-weight: 700;
  display: block;
}
.rank_price .price {
  font-size: 1.15em;
}
.rank_price .rank::after {
  content: "ランク";
  font-size: 0.8em;
  font-weight: normal;
}
.rank_price .price::before {
  content: "¥";
  font-size: 0.8em;
  font-weight: normal;
  padding-right: 0.2em;
}
.sankou {
  font-size: 0.75em;
}
.price_wrap {
  color: #c00;
  padding: 0.25em 0 0 0;
}
@media (min-width: 740px) {
  .rank_price .rank,
  .rank_price .price {
    font-weight: 700;
    display: inline-block;
  }
  .rank_price .rank {
    padding-right: 0.5em;
  }
  .price_wrap {
    white-space: nowrap;
  }
}
@media (min-width: 960px) {
  .campaign_items .item_model_name {
    font-size: 1em;
  }
}
.campaign_link {
  padding: 1em 0;
  text-align: center;
}
.campaign_link p {
  font-size: 0.9em;
  margin: 1em 0 0 0;
}
.campaign_link a {
  display: inline-block;
  padding: 0.7em 2em;
  font-weight: bold;
  border: 4px solid var(--orange);
  border-radius: 30px;
  background: #fff;
}
/*買取の流れ*/
.kaitori_step {
  padding: 5em 0 1em 0;
}
.kaitori_step ol li {
  padding: 1.5em 0;
}
.kaitori_step h2 {
  text-align: center;
  padding: 0 0 1em 0;
  font-size: 1.8em;
}
.kaitori_step h3 {
  font-size: 1.375em;
  text-align: center;
  padding: 0 0 0.8em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5em;
}
.kaitori_step h3::before {
  counter-increment: section;
  content: counter(section) "";
  width: 2em;
  line-height: 2;
  text-align: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}
.kaitori_step .step_frame {
  border: 1px solid #ccc;
  border-radius: 1em;
  overflow: hidden;
}
.kaitori_step ol > li {
  position: relative;
  padding: 2em 1.5em;
}
.kaitori_step p {
  padding: 0 0 1em;
}
.kaitori_step dl {
  padding: 0 0 0.5em;
}
.kaitori_step dt a {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--orange);
  display: inline;
}
.kaitori_step dt::before {
  content: "・";
  font-feature-settings: normal;
  color: var(--orange);
}
.kaitori_step dd {
  font-size: 0.92em;
  padding-left: 1.1em;
  padding: 0 0 0.5em 1.1em;
}
.bold {
  font-weight: bold;
  font-feature-settings: normal;
}
.kaitori_step ol {
  counter-reset: section;
}
.kaitori_step .step_img {
  width: 60%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 1em;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 739px) {
  .kaitori_step ol > li:not(:first-child) {
    padding-top: 4em;
  }
  .kaitori_step ol > li:not(:last-child)::before,
  .kaitori_step ol > li:not(:last-child)::after {
    content: "";
    width: 51.2%;
    height: 1px;
    background: #ccc;
    position: absolute;
    bottom: 1em;
  }
  .kaitori_step ol > li:not(:last-child)::before {
    left: 0;
    transform: rotate(12deg);
    transform-origin: left top;
  }
  .kaitori_step ol > li:not(:last-child)::after {
    right: 0;
    transform: rotate(-12deg);
    transform-origin: right top;
  }
}
@media (min-width: 740px) and (max-width: 959px) {
  .kaitori_step ol {
    padding: 1.5em 0 0 0;
  }
  .kaitori_step ol > li {
    display: flex;
    padding: 1em 2em;
  }
  .kaitori_step .step_img {
    width: 180px;
    height: 180px;
  }
  .kaitori_step .step_txt {
    width: calc(100% - 200px);
    padding: 0 0 0 1.5em;
  }
  .kaitori_step h3 {
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  .kaitori_step ol {
    display: grid;
    padding: 0 2.5em;
    column-gap: 2em;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .kaitori_step ol > li {
    position: relative;
    padding: 2em 0;
  }
}
@media (min-width: 1240px) {
  .kaitori_step ol {
    column-gap: 5em;
  }
  .kaitori_step ol > li:not(:last-child)::before,
  .kaitori_step ol > li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 51.2%;
    background: #ccc;
    position: absolute;
    left: calc(100% + 3.5em);
  }
  .kaitori_step ol > li:not(:last-child)::before {
    top: -1%;
    transform: rotate(350deg);
    transform-origin: right bottom;
  }
  .kaitori_step ol > li:not(:last-child)::after {
    bottom: -1%;
    transform: rotate(-350deg);
    transform-origin: right top;
  }
}
/*買取トップタイトル*/
.title_block {
  width: 90%;
  margin: auto;
  max-width: 1240px;
  position: relative;
}
.title_badge {
  display: flex;
}
.chara_img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}
@media (max-width: 959px) {
  .title_block > div.title_txt_badge {
    display: flex;
    flex-direction: column-reverse;
  }
  .title_block h2 {
    width: 57%;
    margin: 1em 0 2.5em 0;
    position: relative;
    z-index: 2;
  }
  .title_badge {
    width: 71%;
    transform: translateX(-3%);
  }
  .chara_img {
    width: 45%;
    right: 0;
  }
}
@media (max-width: 739px) {
  .title_block h2 {
    width: 80%;
    margin: 0.5em 0 2.5em 0;
  }
  .title_badge {
    width: 90%;
    transform: translateX(-1%);
  }
  .chara_img {
    width: 50%;
    right: -5%;
  }
}
@media (min-width: 960px) {
  .title_block > div.title_txt_badge {
    display: flex;
    align-items: center;
    width: 84%;
    max-width: 948px;
  }
  .title_block h2 {
    width: 49%;
    padding: 0 0 3em 0;
  }
  .title_badge {
    width: 51%;
    max-width: 472px;
    padding: 0 0 3em 0;
  }
  .chara_img {
    width: 21%;
    max-width: 270px;
    right: auto;
    left: 79%;
  }
}
@media (min-width: 1400px) {
  .title_block h2 {
    width: 475px;
  }
  .title_badge {
    width: 472px;
  }
  .chara_img {
    width: 270px;
    left: 902px;
  }
}
@media (min-width: 960px) {
  .top_model_search_wrapper {
    width: 90%;
    max-width: 1240px;
    margin: auto;
    display: flex;
    column-gap: 38px;
    margin-bottom: 6em;
  }
  .top_model_search_form {
    flex: 1;
    border: 3px solid var(--orange);
  }
  .appraisal_image_link {
    width: 35%;
    max-width: 380px;
  }
}
/*画像見積*/
.appraisal_image_link {
  margin-top: 2.5em;
  margin-bottom: 5em;
  text-align: center;
}
.appraisal_image_link a {
  display: block;
  max-width: 700px;
  margin: auto;
  position: relative;
}
.appraisal_image_link a::before {
  content: "モデル検索が面倒な方はこちら";
  display: inline-block;
  padding: 0 1em;
  line-height: 2.4;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 500;
  font-size: 0.93em;
  background: #222;
  position: absolute;
  top: -1.2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}
.appraisal_image_link img {
  border: 3px solid var(--orange);
}
@media (min-width: 740px) {
  .appraisal_image_link {
    margin-bottom: 6em;
  }
}
@media (max-width: 959px) {
  .appraisal_image_link .appraisal_photo_bg,
  .appraisal_image_link .pc_only {
    display: none;
  }
}
@media (min-width: 960px) {
  .appraisal_image_link {
    margin: 0;
    border: 3px solid var(--orange);
    position: relative;
    text-align: left;
  }
  .appraisal_image_link a {
    padding: 32px 22px 22px;
  }
  .appraisal_image_link img {
    border: none;
  }
  .appraisal_image_link a::before {
    display: none;
  }
  .appraisal_image_link::before {
    content: "モデル検索が面倒な方はこちら";
    display: inline-block;
    padding: 0 1em;
    line-height: 2.4;
    letter-spacing: 0.03em;
    color: #fff;
    font-weight: 500;
    font-size: 0.93em;
    background: #222;
    position: absolute;
    top: -1.2em;
    left: 2em;
    z-index: 2;
    white-space: nowrap;
  }
  .appraisal_image_link .kaitori_w {
    width: 100%;
    margin: auto;
  }
  .appraisal_image_link .pc_only {
    display: block;
  }
  .appraisal_image_link .pc_only::after {
    content: "";
    clear: both;
  }
  .appraisal_image_link .pc_only p {
    font-size: 0.93em;
    padding: 0.5em 0 0 0;
    width: 60%;
  }
  .appraisal_image_link .appraisal_photo_bg {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .appraisal_image_dir {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    font-weight: bold;
    margin: 0.7em 0 0 0;
  }
  .appraisal_image_dir img {
    width: 3.2em;
    margin-right: 0.5em;
  }
  .appraisal_image_qr {
    float: right;
  }
  .appraisal_image_qr img {
    width: 100px;
  }
}
.top_model_search_form {
  background: #fff2de;
  padding: 2em 0 2em;
}
.top_model_search_form h2 {
  font-size: 1.85em;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 0.5em;
}
.top_model_search_form .top_model_search_txt h2 span {
  border-bottom: 5px solid var(--orange);
}
.top_model_search_form .top_model_search_txt > p {
  text-align: center;
  font-size: 0.93em;
  font-weight: bold;
  margin: 0.3em 0 1em;
}
.top_model_search_form .select_box select {
  font-weight: 500;
  font-size: 1.05em;
  letter-spacing: 0.05em;
}
.top_model_search_form .select_box.req select {
  padding-left: 3em;
}
.top_model_search_form .select_box.req::before {
  content: "必須";
  background: var(--orange);
  color: #fff;
  font-size: 0.65em;
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0.5em;
  line-height: 1.8;
  border-radius: 2px;
}
.top_model_search_form .model_search_btn {
  text-align: center;
  padding: 12px 0 0 0;
}
.top_model_search_form .model_search_btn button {
  font-size: 1.05em;
  letter-spacing: 0.05em;
  line-height: 3.5;
  padding: 0 3.5em 0 4em;
  background: var(--orange);
  border-radius: 50px;
}
.translucent select {
  color: #999;
}
.top_model_search_title {
  position: relative;
  z-index: 5;
  width: 70%;
  background: var(--orange);
  margin: -3em auto 1.5em auto;
  padding: 0.7em 2em;
}
.top_model_search_title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: var(--orange) transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1px);
  left: calc(50% - 6px);
}
@media (min-width: 740px) {
  .top_model_search_form .search_width {
    display: flex;
    height: 100%;
  }
  .top_model_search_form .top_model_search_txt {
    width: 42%;
    padding-right: 1em;
  }
  .top_model_search_form .top_model_search_txt h2 {
    line-height: 1.6;
    text-align: left;
    font-size: 2.1em;
  }
  .top_model_search_form .top_model_search_txt p {
    text-align: left;
    font-size: 1em;
  }
  .top_model_search_form .top_model_search_select {
    width: 58%;
    padding-left: 1.5em;
    border-left: 1px solid rgba(236, 99, 0, 0.3);
  }
  .top_model_search_title {
    width: 404px;
    background: var(--orange);
    margin: -3em auto 2em 5%;
    padding: 0.25em 2em;
  }
  .top_model_search_title::after {
    left: 15%;
  }
}
@media (max-width: 959px) {
  .top_model_search_form .top_model_search_txt p span {
    display: inline-block;
  }
  .top_model_search_form .top_model_search_txt h2 br,
  .top_model_search_select h4 {
    display: none;
  }
}
@media (min-width: 960px) {
  .top_model_search_form {
    padding: 2em 0;
  }
  .top_model_search_form .top_model_search_txt h2 {
    padding-bottom: 0.3em;
    display: block;
  }
  .top_model_search_form .top_model_search_txt {
    width: 12em;
  }
  .top_model_search_form .top_model_search_txt p {
    padding-left: 0;
  }
  .top_model_search_form .top_model_search_select {
    flex: 1;
  }
  .top_model_search_select h4 {
    font-size: 1.2em;
  }
  .top_model_search_form .top_model_search_txt > p {
    font-weight: 500;
    font-size: 0.93em;
  }
  .top_model_search_title {
    width: 404px;
    background: var(--orange);
    margin: -4.25em auto 1.5em 5%;
    padding: 0.25em 2em;
  }
}
@media (min-width: 1240px) {
  .top_model_search_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .top_model_search_form .top_model_search_txt {
    width: 18em;
  }
  .top_model_search_form .top_model_search_txt h2 {
    font-size: 2.3em;
  }
  .top_model_search_form .top_model_search_txt h2 br {
    display: none;
  }
  .top_model_search_form .top_model_search_txt p {
    font-size: 1em;
  }
  .top_model_search_form .top_model_search_txt p span {
    display: inline-block;
  }
}
.translucent {
  pointer-events: none;
  opacity: 0.6;
}
.kaitori_fuka {
  text-align: center;
  padding: 1.5em 1.5em 2em;
  background: #fff2de;
  border-top: 1px solid #edccab;
}
.kaitori_fuka h2 {
  font-size: 1.375em;
  margin: 0 0 0.5em 0;
  padding: 0;
  text-align: center;
  color: var(--orange);
}
.kaitori_fuka a {
  display: inline-block;
  padding: 0.5em 2em;
  font-weight: bold;
  border: 3px solid rgba(236, 99, 0, 0.6);
  border-radius: 30px;
  background: #fff;
  margin: 0em 0 0 0;
}
@media (max-width: 739px) {
  .kaitori_fuka p {
    text-align: left;
  }
  .kaitori_fuka p br {
    display: none;
  }
}
/*おすすめポイント*/
.kaitori_point {
  padding: 8em 0 4em;
}
.kaitori_point h2 {
  padding: 0 0 0.5em 0;
  text-align: center;
  font-size: 1.7em;
}
.kaitori_point ul li {
  padding: 1em 0 2em;
}
.kaitori_point ul li h3 {
  padding: 0.5em 0 1em;
}
.kaitori_point ul li h3 span {
  border-bottom: 6px solid var(--orange);
}
@media (max-width: 739px) {
  .kaitori_point h2 .inline {
    display: inline-block;
    padding: 0 0.5em;
    background: var(--orange);
    color: #fff;
    line-height: 2;
    margin-bottom: 2px;
  }
  .kaitori_point ul li .point_img {
    width: 57%;
    padding: 0 0 0 0.5em;
    float: right;
  }
  .kaitori_point ul li:nth-of-type(even) .point_img {
    padding: 0 0.5em 0 0;
    float: left;
  }
}
@media (min-width: 740px) {
  .kaitori_point h2 {
    font-size: 2.2em;
  }
  .kaitori_point h2 > span {
    display: inline-block;
    padding: 0 0.5em;
    background: var(--orange);
    color: #fff;
    line-height: 2;
    letter-spacing: 0.03em;
  }
  .kaitori_point ul li {
    display: flex;
    align-items: center;
    padding: 0;
    column-gap: 2em;
    font-size: 1.07em;
    line-height: 1.8;
  }
  .kaitori_point ul li:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .point_img {
    width: 40%;
    max-width: 300px;
  }
  .point_txt {
    flex: 1;
  }
}
@media (min-width: 960px) {
  .kaitori_point h2 {
    margin-bottom: 1em;
  }
  .kaitori_point ul {
    display: flex;
    column-gap: 2em;
    align-items: flex-start;
    max-width: 1024px;
    margin: auto;
  }
  .kaitori_point ul li {
    flex: 1;
    flex-direction: column;
    column-gap: 0;
  }
  .kaitori_point ul li:nth-of-type(even) {
    flex-direction: column-reverse;
    row-gap: 1em;
  }
  .point_img {
    width: 100%;
    max-width: auto;
    text-align: center;
  }
  .point_img img {
    width: 86%;
    max-width: 300px;
  }
  .kaitori_point ul li h3 {
    text-align: center;
  }
}
.kaitori_faq {
  padding: 2em 0 0 0;
}
.kaitori_faq h2 {
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 1em;
}
.kaitori_faq dl {
  border: 1px solid #d5d5d5;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  max-width: 1024px;
  margin: auto;
}
.kaitori_faq dt,
.kaitori_faq dd > div {
  padding: 1.2em 1.5em 1.2em 4.8em;
  position: relative;
  min-height: 3.5em;
  background: #fff;
}
.kaitori_faq dt {
  padding: 1em 2.5em 1em 4em;
  border-top: 1px solid #dfdfdf;
  font-size: 1.05em;
  font-weight: 500;
  display: block;
  cursor: pointer;
  position: relative;
}
.kaitori_faq dl dt:first-child {
  border-top: none;
}
.kaitori_faq dd {
  display: none;
}
.kaitori_faq dd > div {
  border-top: 1px solid #dfdfdf;
  background: #f5f5f5;
  padding: 1.2em 1.5em 1.2em 4.3em;
}
.kaitori_faq dd a {
  display: inline;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kaitori_faq dt::before,
.kaitori_faq dd > div::before {
  font-size: 1em;
  width: 2em;
  line-height: 1.8;
  text-align: center;
  display: block;
  background: #fff;
  border-radius: 100%;
  border: 2px solid;
  position: absolute;
  top: 0.8em;
  left: 1em;
}
.kaitori_faq dt::before {
  content: "Q";
}
.kaitori_faq dd > div::before {
  content: "A";
  color: var(--orange);
  border: 2px solid var(--orange);
  font-size: 1.05em;
  font-weight: 500;
  top: 0.8em;
}
.kaitori_faq dt .open_close {
  display: inline-block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: calc(50% - 0.4em);
  right: 1em;
  transition: 0.3s;
}
.kaitori_faq dt .open_close::before,
.kaitori_faq dt .open_close::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #aaa;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
}
.kaitori_faq dt .open_close::after {
  transform: rotate(90deg);
}
.kaitori_faq dt.open .open_close {
  transform: rotate(45deg);
}
.kaitori_cart_btn {
  position: sticky;
  bottom: 1em;
  width: 94%;
  max-width: 1240px;
  margin: auto;
  padding: 3em 0 0 0;
  pointer-events: none;
  z-index: 12;
}
.kaitori_cart_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--orange);
  padding: 0.5em 1.5em;
  color: #fff;
  font-weight: bold;
  column-gap: 0.5em;
  border: 2px solid #fff;
  border-radius: 3em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: all;
}
.kaitori_cart_btn a::before {
  content: "";
  display: block;
  width: 3em;
  height: 2.34em;
  background: url("../images/icon_cart_appraisal.svg") no-repeat center center;
}
@media (min-width: 740px) {
  .kaitori_cart_btn {
    text-align: right;
    padding-right: 3em;
    bottom: 0.5em;
  }
  .kaitori_cart_btn a {
    padding: 1em 1.5em;
  }
}
@media (min-width: 1360px) {
  .kaitori_cart_btn {
    padding-right: 0;
  }
  .kaitori_cart_btn a {
    margin-right: -0.5em;
  }
}
@media (hover: hover) {
  .appraisal_image_link a,
  .campaign_info a > div img {
    transition: 0.3s;
  }
  .kaitori_cart_btn a:hover,
  .top_model_search_form .model_search_btn button:hover {
    background: var(--orange-hover);
  }
  .appraisal_image_link a:hover,
  .campaign_info a:hover > div img,
  .campaign_items a:hover .thumbnail img {
    opacity: 0.6;
  }
  .campaign_link a:hover,
  .kaitori_fuka a:hover {
    color: var(--orange);
  }
}
