/* 売却査定住所モーダル */
.sell-form-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
  display: none;
}
.js-sell-form-modal .overlay {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sell-form-modal .modal-inner {
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 95%;
  max-width: 600px;
  height: calc(100% - 80px);
  border-radius: 5px;
  display: none;
}
.sell-form-modal .modal-inner.is-show {
  display: block;
}
.sell-modal-header .close-btn {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  cursor: pointer;
  float: right;
  z-index: 110;
}
.sell-form-modal .modal-inner ul {
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
  padding-bottom: 1px;
  box-sizing: border-box;
}
.sell-form-modal .modal-inner ul li img {
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
  max-width: 40px;
}
.sell-form-modal .modal-inner ul li:not(.data-list)::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sell-form-modal .modal-inner .sell-modal-header::after {
  display: none !important;
}
.sell-form-modal .modal-inner .sell-modal-header {
  justify-content: flex-end;
  padding: 10px;
  display: flex;
  background-color: #1fafc7;
  border-radius: 5px 5px 0 0;
}
.sell-form-modal .modal-inner .modal-title {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 800;
  padding-bottom: 2px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 7px;
  z-index: 10;
}
.sell-form-modal .button-back {
  font-size: 1.2rem;
  color: #fff;
  padding: 0 4px 3px;
  border: solid 1px #fff;
  border-radius: 3px;
  position: absolute;
  top: 11px;
  left: 12px;
  bottom: auto;
  z-index: 10;
  cursor: pointer;
}
.sell-form-modal .button-back::before {
  display: none;
}
.sell-modal-header .close-btn span::before,
.sell-modal-header .close-btn span::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  left: 50%;
  width: 84%;
  height: 10%;
  margin: -8% 0 0 -42%;
  background: #b7cfc5;
}
.sell-modal-header .close-btn span::before {
  transform: rotate(-45deg);
}
.sell-modal-header .close-btn span::after {
  transform: rotate(45deg);
}
.sell-form-modal .modal-inner .sell-modal-list {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  overflow-y: scroll;
  height: calc(100% - 42px);
  border: solid 2px #1fafc7;
  border-top: none;
  box-sizing: border-box;
  border-radius: 0 0 5px 5px;
  display: none;
}
.sell-form-modal .modal-inner .sell-modal-list.is-show {
  display: block;
}
.sell-form-modal .modal-inner ul li.totch {
  background: rgba(31, 175, 199, 0.3);
  color: #03697a;
}
.sell-form-modal .modal-inner ul li.selected {
  background: rgba(31, 175, 199, 0.3);
  color: #03697a;
  padding: 10px 25px 10px 25px;
}
.sell-form-modal .modal-inner ul li.data-list.selected li.selected {
  background: rgba(31, 175, 199, 0.3);
  color: #03697a;
  padding: 10px 25px 10px 35px;
}
.sell-form-modal .modal-inner ul li.selected::before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  top: calc(50% - 6px);
  left: 10px;
  border-color: transparent transparent transparent #ffffff;
  background-color: transparent;
}
.sell-form-modal .modal-inner ul li.data-list::before {
  display: none;
}
.sell-form-modal .modal-inner ul li.data-list.selected li.selected::before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  top: calc(50% - 6px);
  left: 20px;
  border-color: transparent transparent transparent #ffffff;
  background-color: transparent;
}
.sell-form-modal .modal-inner ul li {
  display: block;
  position: relative;
  margin: 0 0 -1px 0;
  padding: 10px 25px 10px 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 1.7rem;
}
.sell-form-modal .modal-inner ul li.data-list {
  padding: 0;
  border-bottom: none;
}
.sell-form-modal .modal-inner ul li.data-list li {
  margin: 0 0 -1px 0;
  padding: 10px 25px 10px 25px;
  position: relative;
}
.sell-form-modal
  .modal-inner
  ul
  li.data-list:not(:last-of-type)
  li:last-of-type {
  border-bottom: none;
}
.sell-form-modal .modal-inner .data-list .list-name {
  font-size: 1.6rem;
  font-weight: 800;
  background-color: #eeeeee;
  padding: 5px 15px;
}
.errorTxt {
  display: none !important;
}
.sell-form-ttlbox {
  width: 1080px;
  margin: 0 auto;
}
.sell-form-ttlbox p.ttlbox-checktxt {
  background-image: linear-gradient(
    to right,
    #ce4508,
    #ce4508 7px,
    transparent 7px,
    transparent 8px
  );
  background-size: 14px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
  line-height: 1;
  padding-bottom: 15px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  width: 68%;
}
.sell-form-ttlbox p.ttlbox-checktxt::after {
  position: relative;
  left: 47.5%;
  top: 40px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 12px solid #ce4508;
  border-bottom: 0;
}
.sell-form-ttlbox p.ttlbox-howmach {
  background: url(/trend/img/bg_sell_pc.jpg) 50% 75% no-repeat;
  background-size: 100%;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  padding: 10px;
  text-align: center;
}
.sell-form-ttlbox .sell-form-input-wrapper {
  padding-top: 0;
  margin-top: 0;
  border: #3b3049 solid 2px;
}
@media screen and (max-width: 767px) {
  .sell-form-ttlbox {
    width: 100%;
    margin-top: 30px;
  }
  .sell-form-ttlbox p.ttlbox-checktxt {
    font-size: 1.5rem;
    width: 94%;
    padding-bottom: 0;
    margin: 0 auto 30px auto;
  }
  .sell-form-ttlbox p.ttlbox-checktxt::after {
    left: 46%;
    top: 20px;
  }
  .sell-form-ttlbox p.ttlbox-howmach {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .sell-form-ttlbox .sell-form-input-wrapper {
    border: none;
  }
}

.sell-form-input-wrapper {
  background-color: #f6f6f6;
  padding: 25px 0 20px;
  margin: 25px auto 55px;
}
@media screen and (max-width: 767px) {
  .sell-form-input-wrapper {
    z-index: 1000;
    padding: 13px 20px 7px;
    margin: 20px 0 20px;
  }
  .sell-form-input-wrapper.none-input-form .input-box .step-txt {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .sell-form-input-wrapper.none-input-form .sell-CTA-wrapper {
    padding-top: 5px;
  }
  .input-area-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 630px;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .input-area-wrapper {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .input-area-wrapper > .txt-inner .txt {
    height: 45px;
    display: flex;
    align-items: center;
  }
}
.input-area-wrapper > .txt-inner .txt p {
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .input-area-wrapper > .txt-inner {
    padding: 4px 0 8px;
  }
  .input-area-wrapper > .txt-inner .txt {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .input-area-wrapper > .txt-inner .txt::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #333;
    left: 0;
    top: 50%;
  }
  .input-inner.white-inner .input-area-wrapper > .txt-inner .txt::before {
    background-color: #333;
  }
  .input-area-wrapper > .txt-inner .txt p {
    padding: 0 8px;
    background-color: #f6f6f6;
    position: relative;
    font-size: 1.4rem;
  }
}
.address-list-inner {
  position: relative;
}
.address-list-inner .address-list {
  position: absolute;
  display: none;
  min-width: 380px;
  max-height: 135px;
  overflow-y: scroll;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.8);
  border: 1px solid #e9e9e9;
  background-color: #ffffff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .address-list-inner .address-list {
    min-width: 100%;
    max-height: 153px;
  }
}
.address-list-inner .address-list.is-active {
  display: block;
}
.address-list-inner .address-list li {
  transition: 0.2s linear;
}
@media screen and (min-width: 768px) {
  .address-list-inner .address-list li:hover {
    background-color: #f1f1f1;
  }
}
.address-list-inner .address-list li p {
  color: #1d87b7;
  display: block;
  text-decoration: underline;
  font-size: 1.4rem;
  padding: 11px 10px;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .address-list-inner .address-list li p {
    font-size: 1.3rem;
    padding: 9px 10px;
  }
}
.input-area-wrapper .information-box {
  padding: 4px 0 0;
  background: transparent;
  border: none;
}
@media screen and (min-width: 768px) {
  .post-code-address-inner {
    padding: 0;
    width: 270px;
  }
}
.input-area-wrapper .post-inner {
  width: 270px;
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .post-inner {
    width: 100%;
    padding: 0;
  }
}
.input-area-wrapper .information {
  height: 45px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .information {
    height: 50px;
  }
}
.input-area-wrapper .information {
  box-sizing: border-box;
  padding: 2px 10px 0;
  background: #fff;
  border: solid 3px #1fafc7;
  border-radius: 6px;
  cursor: auto;
  text-transform: none;
  user-select: none;
  appearance: none;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 400;
}
.input-area-wrapper .information::placeholder {
  color: #707070 !important;
  -webkit-text-fill-color: #707070 !important;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.input-area-wrapper .information.error {
  font-weight: 400;
  padding: 2px 10px 0;
  background: #e9d0d0;
  border: solid 2px #bb0000;
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .information {
    padding: 0 34px 3px 10px;
  }
  .input-area-wrapper .information.error {
    padding: 0 10px 3px;
  }
}
.input-area-wrapper .select-btn-inner {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .select-btn-inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .input-area-wrapper .pref-select-btn-inner .select-btn-inner {
    width: 270px;
  }
  .input-area-wrapper
    .city-subsequent-wrapper
    .select-btn-inner:not(:first-of-type) {
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .select-btn-inner:not(:first-of-type) {
    margin-top: 10px;
  }
  .input-area-wrapper .city-subsequent-wrapper .select-btn-inner {
    margin-top: 10px;
  }
  .input-area-wrapper
    .city-subsequent-wrapper
    .select-btn-inner:not(:first-of-type) {
    width: calc((100% - 10px) / 2);
  }
  .input-area-wrapper
    .city-subsequent-wrapper
    .select-btn-inner:nth-of-type(2n + 3) {
    margin-left: 10px;
  }
}
.input-area-wrapper .select-btn {
  height: 45px;
  padding: 0 38px 1px 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  white-space: nowrap;
  background: #fff;
  border: solid 3px #1fafc7;
  border-radius: 6px;
  cursor: pointer;
  text-transform: none;
  user-select: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .input-area-wrapper .select-btn {
    height: 50px;
  }
}
.input-area-wrapper .select-btn input {
  display: none;
}
.input-area-wrapper .select-btn p {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-weight: 800;
  font-size: 1.7rem;
  white-space: nowrap;
  overflow-x: hidden;
}
.input-area-wrapper .select-btn.error {
  background: #f5d7bd;
  border: solid 2px #d96b08;
  font-weight: 400;
}
.input-area-wrapper .select-btn.disabled-btn {
  background: #a9a9a9;
  border: solid 2px #878787;
  font-weight: 400;
}
.input-area-wrapper .select-btn.error p,
.input-area-wrapper .select-btn.disabled-btn p {
  color: #707070;
  font-weight: 400;
}
.input-area-wrapper .error .selModalButton {
  color: #707070;
  font-weight: 400;
}
.input-area-wrapper .selModalButton {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  border: none;
  background: none;
  font-weight: 800;
}
.selModalButton::before,
.selModalButton::after {
  display: none;
}
.input-area-wrapper .selModalButton.not-select {
  background: #e9d0d0;
  border: solid 2px #bb0000;
}
.input-area-wrapper .selModalButton {
  font-size: 1.7rem;
  white-space: nowrap;
}
.input-area-wrapper .select-btn,
.input-area-wrapper .information-box {
  position: relative;
}
.input-area-wrapper .select-btn::before,
.input-area-wrapper .information-box:not(.error)::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #ff7e00;
  background-size: 18px 18px;
  border-radius: 50vh;
  right: 10px;
  top: calc(50% - 9px);
}
.input-area-wrapper .select-btn::after,
.input-area-wrapper .information-box:not(.error)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  right: 14px;
  top: calc(50% - 5px);
}
.input-area-wrapper .select-btn.error::before,
.input-area-wrapper .select-btn.disabled-btn::before {
  content: "";
  position: absolute;
  display: inline-block;
  background-color: transparent;
  border-radius: 0;
  width: 3px;
  height: 3px;
  border: 1.5px solid;
  right: 10px;
  top: calc(50% + 2px);
  border-color: transparent transparent #707070 #707070;
  transform: rotate(-45deg);
}
.input-area-wrapper .select-btn.error::after,
.input-area-wrapper .select-btn.disabled-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 3px;
  height: 3px;
  border: 1.5px solid;
  right: 10px;
  top: calc(50% - 7px);
  border-color: #707070 #707070 transparent transparent;
  transform: rotate(-45deg);
}
.input-area-wrapper .post-inner.information-box::before,
.input-area-wrapper .post-inner.information-box::after,
.selModalButton::before,
.selModalButton::after {
  display: none;
}
.input-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .input-inner .input-box {
    width: 1000px;
    margin: 0 auto;
  }
}
.input-box .step-inner:not(:first-of-type) {
  margin-top: 10px;
}
.input-box .step-txt {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .input-box .step-txt {
    align-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .input-box .step-txt {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .input-box .step-txt {
    margin-bottom: 14px;
  }
  .input-box .step-txt .highlight {
    font-size: 1.8rem;
    position: relative;
    font-weight: 900;
  }
}
.input-box .step-txt div {
  display: flex;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .input-box .step-txt div {
    justify-content: center;
  }
}
.input-box .step-txt p {
  font-size: 1.6rem;
  color: #333;
}
.input-box .step-txt p {
  font-size: 1.8rem;
}
.input-inner .input-box .step-txt p .highlight {
  background-color: #ce4508;
  color: #fff;
  padding: 0 5px 2px;
  font-size: 1.8rem;
  line-height: 1.1;
  border-radius: 3px;
  margin: 4px 10px 0 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .input-inner .input-box .step-txt p .highlight {
    padding: 5px 4px 8px;
    font-size: 1.3rem;
    line-height: 1.1;
    margin: 4px 10px 0 0;
  }
  .input-box .step-txt p {
    text-align: center;
    line-height: 1.3;
  }
  .input-box .step-txt p {
    font-size: 1.8rem;
    line-height: 1.4;
    white-space: nowrap;
  }
  .input-inner .input-box .step-txt p {
    color: #333;
    display: flex;
    align-items: center;
    margin-top: -4px;
    font-weight: 800;
    padding: 1px 0;
  }
}
.error-CTA {
  text-align: center;
  color: #bb0000;
  font-weight: 800;
  font-size: 1.5rem;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .error-CTA {
    margin: 0 20px;
    padding-top: 10px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .step-inner p.error-input {
    display: inline-block;
    background: #bb0000;
    padding: 0 9px;
    margin: 0 0 4px;
    font-size: 1.3rem;
  }
  .step-inner p.error-input span {
    white-space: nowrap;
  }
}
.step-inner p.error-input span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .step-inner p.error-input {
    margin: 0 0 8px;
    text-align: left;
  }
  .step-inner p.error-input span {
    background: #bb0000;
    padding: 3px 9px;
    font-size: 1.3rem;
  }
}
.input-box .step-txt .step {
  color: #034e36;
  font-size: 1.2rem;
  height: 14px;
  font-weight: 800;
  background: #fff;
  line-height: 1;
  display: inline-block;
  padding: 3px 6px 3px;
  margin-right: 10px;
}
.accord-address-inner {
  display: none;
}
.city-subsequent-wrapper {
  width: 630px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .city-subsequent-wrapper {
    width: 100%;
    padding-top: 0;
  }
}
.selModalButton::before,
.selModalButton::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .sale-form .plan p {
    font-size: 1.5rem;
    line-height: 1.8;
    white-space: nowrap;
  }
}
.sell-CTA-inner .comment {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sell-CTA-inner .comment {
    margin: 0 auto;
    max-width: 380px;
    padding: 6px 0 10px;
  }
}
.sell-CTA-inner .comment p {
  font-size: 1.4rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sell-CTA-wrapper {
    padding-top: 20px;
  }
  .sell-CTA-wrapper .CTA-btn {
    width: 1080px;
    margin: 10px auto 0;
  }
  .sell-CTA-wrapper .CTA-btn a {
    width: 400px;
  }
}
.sell-CTA-wrapper .CTA-btn a {
  display: flex;
  margin: 0 auto;
  background: #ff7e00;
  box-shadow: 0 6px #a35507;
  border-radius: 10px;
  padding: 15px 25px;
  font-weight: 800;
  position: relative;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sell-CTA-wrapper .CTA-btn a {
    padding: 15px 10px;
    max-width: 380px;
  }
}
@media screen and (min-width: 768px) {
  .sell-CTA-wrapper .CTA-btn:not(.inactive) a:hover {
    box-shadow: none;
    transform: translate3d(0, 6px, 0);
  }
}
.sell-CTA-wrapper .CTA-btn a::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .sell-CTA-wrapper .CTA-btn a::before {
    right: 15px;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
  }
}
.sell-CTA-wrapper .CTA-btn p:not(.btn-catch) {
  font-size: 3rem;
  color: #fff;
  padding: 0 35px 0 25px;
}
.sell-CTA-wrapper .CTA-btn .btn-catch {
  color: #333;
  background: #fff;
  display: inline-block;
  font-size: 1.2rem;
  border-radius: 6px;
  line-height: 1.3;
  padding: 8px 5px 2px;
  border: solid 2px #941e00;
  text-align: center;
}
.sell-CTA-wrapper .CTA-btn.inactive a {
  background: #878787;
  box-shadow: 0 6px #333333;
}
.sell-CTA-wrapper .CTA-btn.inactive a::before {
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
}
.sell-CTA-wrapper .CTA-btn.inactive p:not(.btn-catch) {
  color: #cccccc;
}
.sell-CTA-wrapper .CTA-btn.inactive .btn-catch {
  color: #333;
  background: #cccccc;
  border: solid 2px #333333;
}
.sell-CTA-wrapper .CTA-btn.inactive .btn-catch span {
  color: #000;
}
@media screen and (max-width: 767px) {
  .sell-CTA-wrapper .CTA-btn p:not(.btn-catch) {
    font-size: 2.3rem;
    padding: 0 20px 0 15px;
  }
  .sell-CTA-wrapper .CTA-btn .btn-catch {
    padding: 3px 4px 2px;
    line-height: 1.1;
  }
}
.sell-CTA-wrapper .CTA-btn .btn-catch span {
  color: #ce4508;
}
.sell-CTA-wrapper .CTA-btn .btn-catch span.big {
  font-size: 1.7rem;
}
/*amazon キャンペーン訴求*/
.sell-CTA-wrapper .amazon-campaign p {
  background: #fff;
  border-radius: 50px;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  padding: 10px 15px 10px 45px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  width: 415px;
  filter: drop-shadow(3px 3px 3px #ccc);
}
.sell-CTA-wrapper .amazon-campaign p span:last-child {
  color: #bb0000;
}
@media screen and (max-width: 767px) {
  .sell-CTA-wrapper .amazon-campaign p {
    width: calc(100vw - 40px);
    margin-top: 10px;
    padding: 10px 15px;
  }
}
.sell-CTA-wrapper .amazon-campaign p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.sell-CTA-wrapper .amazon-campaign p span:last-child::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(/trend/img/img_giftIcon_gold.png) no-repeat top;
  background-size: 100%;
  width: 30px;
  height: 27px;
  bottom: 0;
  left: 15px;
}
@media screen and (max-width: 767px) {
  .sell-CTA-wrapper .amazon-campaign p span:last-child::before {
    width: 25px;
    height: 17px;
    top: 10px;
    left: calc((100% / 3) - 20px);
  }
}
.sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner {
  width: 100%;
  background-color: #3b3049;
  padding: 20px;
  margin-bottom: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
}
.sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner span {
  background-color: #fff;
  color: #3b3049;
  padding: 0 5px 2px;
  font-size: 1.8rem;
  line-height: 1.1;
  border-radius: 3px;
  margin: 0 10px 0 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner {
    width: calc(100% + 40px);
    margin: 0 -20px 17px;
    padding: 7px 20px 5px;
    text-align: center;
  }
  .sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .sell-form-ttlbox .sell-form-input-wrapper > .catch-txt-inner span {
    padding: 0 5px 2px;
    font-size: 1.4rem;
  }
  .sell-form-ttlbox .sell-CTA-inner {
    margin-top: 17px;
  }
}
/*相場テーブル*/
.market-table {
  width: 1080px;
  margin: 0 auto;
}
.market-table table {
  width: 1080px;
}
@media screen and (max-width: 767px) {
  .market-table {
    width: calc(100% - 40px);
    margin: 0 20px;
    overflow-x: scroll;
  }
  .market-table table {
    width: 100%;
    white-space: nowrap;
    margin-bottom: 15px;
  }
}
.market-table.sell-mansion table {
  height: 100%;
  border-bottom: solid 2px #efefef;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .market-table.sell-mansion table {
    table-layout: auto;
  }
}
.market-table.sell-mansion tr:nth-of-type(2n - 1) td {
  background-color: #f6f6f6;
}
.market-table.sell-mansion th {
  background-color: #c0e1e8;
}
.market-table.sell-mansion th,
.market-table.sell-mansion td {
  width: calc((100% - 290px) / 4);
}
@media screen and (max-width: 767px) {
  .market-table.sell-mansion th,
  .market-table.sell-mansion td {
    width: auto;
  }
}
.market-table.sell-mansion td {
  vertical-align: middle;
  height: 100%;
}
.market-table.sell-mansion th.mansion-name {
  width: 290px;
}
.market-table.sell-mansion td.mansion-name {
  white-space: normal;
  width: 290px;
}
@media screen and (max-width: 767px) {
  .market-table.sell-mansion th.mansion-name {
    width: 175px;
    display: block;
  }
  .market-table.sell-mansion td.mansion-name {
    width: 175px;
  }
}
.market-table.sell-mansion td.mansion-name p {
  text-align: left;
  line-height: 1.3;
  overflow: hidden;
}
.market-table.sell-mansion td.mansion-name p a {
  text-decoration: underline;
  font-weight: 800;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: 0.2s linear;
}
@media screen and (min-width: 768px) {
  .market-table.sell-mansion td.mansion-name p a:hover {
    opacity: 0.5;
  }
}

/* 追従CTA  */
@media screen and (max-width: 767px) {
  .trend-sell .fix-btn-wrapper .CTA-btn,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .trend-sell .fix-btn-wrapper .CTA-btn a,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn a {
    display: flex;
    justify-content: center;
    padding: 10px 35px 10px 16px;
    background: #ff7e00;
  }
}
.trend-sell .CTA-btn a::before,
.trend-sell-mansion .CTA-btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc((100% - 6px) / 2);
  right: 15px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.trend-sell .fix-btn-wrapper .CTA-btn a .btn-inner > div,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn a .btn-inner > div {
  padding-left: 10px;
}
.trend-sell .fix-btn-wrapper .CTA-btn a .btn-inner > div {
  display: flex;
  align-items: center;
}
.trend-sell .fix-btn-wrapper .CTA-btn a .btn-inner,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn a .btn-inner {
  display: flex;
}
.trend-sell .fix-btn-wrapper .CTA-btn a > div p,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn a > div p {
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .trend-sell .fix-btn-wrapper .CTA-btn a,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn a {
    padding: 14px 35px 8px 10px;
    background: #ff7e00;
  }
  .trend-sell .fix-btn-wrapper .CTA-btn a .btn-inner > div,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn a .btn-inner > div {
    padding-left: 10px;
  }
  .trend-sell .fix-btn-wrapper .CTA-btn a > .txt,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn a > .txt {
    position: absolute;
    top: -10px;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .trend-sell .fix-btn-wrapper .CTA-btn a > .txt p,
  .trend-sell-mansion .fix-btn-wrapper .CTA-btn a > .txt p {
    color: #333;
    background-color: #fff;
    border-radius: 50vh;
    padding: 2px 16px;
    border: solid 1px #ff7e00;
    bottom: -8px;
    z-index: 1;
    font-size: 1rem;
  }
}
.trend-sell .fix-btn-wrapper .CTA-btn > .txt p,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn > .txt p {
  font-size: 1rem;
  font-weight: 200;
  display: inline-block;
  padding: 0 16px 6px;
  position: relative;
  color: #333;
}
.trend-sell .fix-btn-wrapper .CTA-btn > .txt p::after,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn > .txt p::after {
  content: "＼";
  display: inline-block;
  position: absolute;
  color: #333;
  top: 0;
  left: 0;
  z-index: 10;
}
.trend-sell .fix-btn-wrapper .CTA-btn > .txt p::before,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn > .txt p::before {
  content: "／";
  display: inline-block;
  position: absolute;
  color: #333;
  top: 0;
  right: 0;
  z-index: 10;
}
.trend-sell .fix-btn-wrapper .CTA-btn .btn-catch span,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn .btn-catch span {
  line-height: 1.4;
}
.trend-sell .fix-btn-wrapper .CTA-btn > .txt,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn > .txt {
  display: flex;
  justify-content: center;
}
.trend-sell .fix-btn-wrapper .CTA-btn .small-txt,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn .small-txt {
  font-size: 1rem;
  font-weight: 200;
  text-align: center;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .trend-sell .CTA-btn p,
  .trend-sell-mansion .CTA-btn p {
    white-space: nowrap;
  }
}
.trend-sell .fix-btn-wrapper .CTA-btn .btn-catch,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn .btn-catch {
  display: flex;
  justify-content: center;
  color: #333;
  font-size: 1.2rem;
  align-items: center;
  text-align: center;
}
.trend-sell .fix-btn-wrapper .CTA-btn .btn-catch span,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn .btn-catch span {
  background: #fff;
  padding: 4px 6px;
  border-radius: 3px;
  line-height: 1.2;
  display: inline-block;
}
.trend-sell .CTA-btn .btn-catch span span,
.trend-sell-mansion .CTA-btn .btn-catch span span {
  color: #e65d44;
  padding: 0;
}
.trend-sell .fix-btn-wrapper .CTA-btn .btn-catch span span,
.trend-sell-mansion .fix-btn-wrapper .CTA-btn .btn-catch span span {
  padding: 0;
}
