/* Scss Document */
.intro .content {
  background: url(../img/sale/bg-intro.jpg) no-repeat center center;
  background-size: cover;
  padding: 0 3rem;
}
@media only screen and (max-width: 640px) {
  .intro .content {
    padding: 0 calc(20 / 760 * 100vw);
  }
}

.intro__container {
  background: rgba(0, 0, 0, 0.5);
}

.intro__body {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  line-height: 2;
  padding: 320px 30px 220px;
}
@media only screen and (max-width: 640px) {
  .intro__body {
    padding: calc(180 / 760 * 100vw) calc(20 / 760 * 100vw) calc(130 / 760 * 100vw);
  }
}
.intro__body.inner {
  min-width: auto;
}

.intro__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 640px) {
  .intro__ttl {
    font-size: calc(34 / 760 * 100vw);
  }
}

.intro__txet {
  font-weight: 500;
  margin-top: 5.4rem;
}
@media only screen and (max-width: 640px) {
  .intro__txet {
    margin-top: calc(40 / 760 * 100vw);
    text-align: left;
  }
}

.intro__button {
  margin-top: 5.4rem;
}
@media only screen and (max-width: 640px) {
  .intro__button {
    margin-top: calc(40 / 760 * 100vw);
  }
}

.btn-white {
  display: block;
  background: #fff;
  color: #000;
  text-align: left;
  font-weight: 700;
  line-height: 2;
  width: 35rem;
  padding: 1.4rem 0 1.4rem 6.3rem;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .btn-white {
    width: 80%;
    padding: calc(20 / 760 * 100vw) 0 calc(20 / 760 * 100vw) calc(80 / 760 * 100vw);
  }
}
.btn-white::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow-black.png) no-repeat center center;
  background-size: contain;
  width: 2.1rem;
  height: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .btn-white::after {
    width: calc(28 / 760 * 100vw);
    height: calc(16 / 760 * 100vw);
    right: calc(35 / 760 * 100vw);
  }
}

.btn-black {
  display: block;
  background: #000;
  color: #fff;
  text-align: left;
  font-weight: 700;
  line-height: 2;
  width: 35rem;
  padding: 1.4rem 0 1.4rem 6.3rem;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .btn-black {
    width: 80%;
    padding: calc(20 / 760 * 100vw) 0 calc(20 / 760 * 100vw) calc(80 / 760 * 100vw);
  }
}
.btn-black::after {
  content: "";
  position: absolute;
  background: url(../img/common/arrow-white.png) no-repeat center center;
  background-size: contain;
  width: 2.1rem;
  height: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
}
@media only screen and (max-width: 640px) {
  .btn-black::after {
    width: calc(28 / 760 * 100vw);
    height: calc(16 / 760 * 100vw);
    right: calc(35 / 760 * 100vw);
  }
}

.merit .content {
  padding: 8.8rem 0 0;
}
@media only screen and (max-width: 640px) {
  .merit .content {
    padding: calc(80 / 760 * 100vw) 0 0;
  }
}

.merit__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .merit__ttl img {
    width: calc(100 / 760 * 100vw);
  }
}
.merit__ttl span {
  color: #000;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .merit__ttl span {
    font-size: calc(48 / 760 * 100vw);
    line-height: 1.5;
  }
}

.merit__text {
  color: #000;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 2.8rem;
}
@media only screen and (max-width: 640px) {
  .merit__text {
    font-size: calc(32 / 760 * 100vw);
    text-align: left;
    margin-top: calc(30 / 760 * 100vw);
    line-height: 1.7;
  }
}

.merit__lists {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 640px) {
  .merit__lists {
    gap: calc(80 / 760 * 100vw);
    margin-top: calc(60 / 760 * 100vw);
  }
}

.merit__list {
  display: flex;
  align-items: center;
  gap: 7.2rem;
}
@media only screen and (max-width: 640px) {
  .merit__list {
    flex-direction: column-reverse;
    gap: calc(20 / 760 * 100vw);
  }
}

.merit__list-right {
  justify-content: flex-end;
}

.merit__list-img {
  width: 30rem;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .merit__list-img {
    width: 100%;
  }
}
.merit__list-img::after {
  content: "";
  position: absolute;
  background-color: #F3EEE7;
  width: 100%;
  height: 100%;
  top: 2rem;
  left: 2rem;
  z-index: -1;
}
@media only screen and (max-width: 640px) {
  .merit__list-img::after {
    top: calc(40 / 760 * 100vw);
    left: calc(40 / 760 * 100vw);
  }
}
.merit__list-img img {
  width: 100%;
}

.merit__list-body {
  width: 69.8rem;
}
@media only screen and (max-width: 640px) {
  .merit__list-body {
    width: 100%;
  }
}

.merit__list-number {
  color: #b4a38c;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 640px) {
  .merit__list-number {
    font-size: calc(55 / 760 * 100vw);
  }
}

.merit__list-title {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  margin: 0.5rem 0 2rem;
}
@media only screen and (max-width: 640px) {
  .merit__list-title {
    font-size: calc(32 / 760 * 100vw);
    line-height: 1.7;
    margin: calc(10 / 760 * 100vw) 0;
  }
}

.merit__list-text {
  color: #000;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .merit__list-text {
    line-height: 1.8;
  }
}

.merit__list-note {
  color: #000;
  font-size: 1.5rem;
  line-height: 2;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 640px) {
  .merit__list-note {
    font-size: calc(24 / 760 * 100vw);
    margin-top: calc(10 / 760 * 100vw);
  }
}

.merit__features {
  margin-top: 6rem;
}
@media only screen and (max-width: 640px) {
  .merit__features {
    margin-top: calc(80 / 760 * 100vw);
  }
}

.merit__features-wrapper {
  display: flex;
  gap: 5rem;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .merit__features-wrapper {
    flex-direction: column;
    align-items: center;
    gap: calc(50 / 760 * 100vw);
  }
}
.merit__features-wrapper::after {
  content: "+";
  position: absolute;
  color: #000;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: normal;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 640px) {
  .merit__features-wrapper::after {
    font-size: calc(40 / 760 * 100vw);
  }
}

.merit__features-item {
  color: #20b9cf;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 10.4rem;
  background: #F3EEE7;
  width: 41rem;
  height: 10.4rem;
}
@media only screen and (max-width: 640px) {
  .merit__features-item {
    width: 80%;
    height: calc(100 / 760 * 100vw);
    font-size: calc(48 / 760 * 100vw);
    line-height: calc(100 / 760 * 100vw);
  }
}
.merit__features-item span {
  font-size: 6.4rem;
  line-height: normal;
}
@media only screen and (max-width: 640px) {
  .merit__features-item span {
    font-size: calc(64 / 760 * 100vw);
  }
}

.flow .content {
  padding-top: 6.8rem;
}
@media only screen and (max-width: 640px) {
  .flow .content {
    padding-top: calc(100 / 760 * 100vw);
  }
}

.flow__title {
  color: #000;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .flow__title {
    font-size: calc(40 / 760 * 100vw);
  }
}

.flow__container {
  margin-top: 5rem;
}
@media only screen and (max-width: 640px) {
  .flow__container {
    margin-top: calc(40 / 760 * 100vw);
  }
}

.flow__lists {
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
}
@media only screen and (max-width: 640px) {
  .flow__lists {
    gap: calc(50 / 760 * 100vw);
  }
}

.flow__list {
  display: flex;
  position: relative;
}
.flow__list::after {
  content: "";
  position: absolute;
  background: url(../img/sale/icon-arrow-flow.png) no-repeat center center;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  bottom: -54%;
  left: 7rem;
}
@media only screen and (max-width: 640px) {
  .flow__list::after {
    bottom: calc(-34 / 760 * 100vw);
    left: calc(64 / 760 * 100vw);
    width: calc(20 / 760 * 100vw);
    height: calc(20 / 760 * 100vw);
  }
}
.flow__list:last-child {
  /*
  .flow__list-number {
    background: #6c5b42;
  }

  .flow__list-text {
    background: #fff9e2;
    font-weight: 700;
  }
    */
}
.flow__list:last-child::after {
  display: none;
}

.flow__list-number {
  width: 15rem;
  background: #b4a38c;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .flow__list-number {
    width: calc(150 / 760 * 100vw);
    font-size: calc(32 / 760 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.flow__list-text {
  border-radius: 0 5px 5px 0;
  background: #F3EEE7;
  color: #000;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  flex: 1;
  padding: 1em 0 1em 2rem;
}
@media only screen and (max-width: 640px) {
  .flow__list-text {
    line-height: 1.8;
    padding: calc(10 / 760 * 100vw) calc(20 / 760 * 100vw);
    font-size: calc(24 / 760 * 100vw);
  }
}

.flow__contact {
  margin-top: 5rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .flow__contact {
    margin-top: calc(60 / 760 * 100vw);
  }
}

.flow__contact-txt {
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .flow__contact-txt {
    font-size: calc(32 / 760 * 100vw);
  }
}

.flow__contact-tel {
  color: #c9beaf;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
@media only screen and (max-width: 640px) {
  .flow__contact-tel {
    font-size: calc(80 / 760 * 100vw);
  }
}
.flow__contact-tel img {
  width: 64px;
}
@media only screen and (max-width: 640px) {
  .flow__contact-tel img {
    width: calc(80 / 760 * 100vw);
  }
}

.flow__contact-btn {
  margin-top: 6.3rem;
}
@media only screen and (max-width: 640px) {
  .flow__contact-btn {
    margin-top: calc(40 / 760 * 100vw);
  }
}

.btn-black {
  margin: 0 auto;
  text-align: left;
}

.form .content {
  padding: 6.3rem 0 10rem;
}
.form__title {
  margin-bottom: 1.5em;
  color: #000;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .form__title {
    font-size: calc(40 / 760 * 100vw);
    line-height: 1.5;
  }
}

.form__subtitle {
  color: #000;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 640px) {
  .form__subtitle {
    font-size: calc(36 / 760 * 100vw);
  }
}

.form__text {
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  margin: 2.9rem 0 7.2rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .form__text {
    margin: calc(30 / 760 * 100vw) 0 calc(80 / 760 * 100vw);
  }
}
.form__text span {
  color: #F00;
}

.contact__form {
  margin-top: 3.4rem;
}
@media only screen and (max-width: 640px) {
  .contact__form {
    margin-top: calc(40 / 760 * 100vw);
  }
}

.contact__field {
  padding: 1rem 0 1.2rem;
}
@media only screen and (max-width: 640px) {
  .contact__field {
    padding: calc(20 / 760 * 100vw) calc(20 / 760 * 100vw) calc(24 / 760 * 100vw);
  }
}
.contact__field.-gray {
  background: #efefef;
}

.form-field {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .form-field {
    flex-direction: column;
  }
}
.form-field.align-position {
  align-items: flex-start;
}
.form-field.align-position .form-field__head {
  padding-top: 0.5rem;
}

.form-field__head {
  width: 29.7rem;
  padding-left: 2.2rem;
}
@media only screen and (max-width: 640px) {
  .form-field__head {
    width: 100%;
    padding-left: 0;
  }
}

.form-field__label {
  color: #000;
  font-weight: 500;
}
@media only screen and (max-width: 640px) {
  .form-field__label {
    font-size: calc(30 / 760 * 100vw);
  }
}

.form-field__tag {
  color: #F00;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 1rem;
}

.form-field__item {
  flex: 1;
  min-width: 0;
  min-height: auto;
  overflow: visible;
  display: block;
  align-self: flex-start;
}
@media only screen and (max-width: 640px) {
  .form-field__item {
    width: 100%;
  }
}
.form-field__item .form-symbol {
  font-family: Inter;
}
.form-field__item textarea {
  width: 73.7rem;
  border: 1px solid #c7c7c7;
  background: #fff;
  margin-top: 1rem;
}
@media only screen and (max-width: 640px) {
  .form-field__item textarea {
    width: 100%;
    margin-top: 0;
    font-size: calc(28 / 760 * 100vw);
    padding: calc(10 / 760 * 100vw);
  }
}

.form-text-zip {
  margin-right: 2rem;
}

.form-text {
  width: 34.5rem;
  height: 3.8rem;
  border: 1px solid #c7c7c7;
  background: #fff;
  padding-left: 1rem;
}
@media only screen and (max-width: 640px) {
  .form-text {
    width: 100%;
    font-size: calc(30 / 760 * 100vw);
    padding-left: calc(10 / 760 * 100vw);
    height: calc(80 / 760 * 100vw);
  }
}

.form-text-xs {
  width: 6.3rem;
}
@media only screen and (max-width: 640px) {
  .form-text-xs {
    width: calc(90 / 760 * 100vw);
    height: calc(70 / 760 * 100vw);
  }
}

.form-text-s {
  width: 9rem;
}
@media only screen and (max-width: 640px) {
  .form-text-s {
    width: calc(200 / 760 * 100vw);
  }
}

.form-text-m {
  width: 23rem;
}
@media only screen and (max-width: 640px) {
  .form-text-m {
    width: 100%;
  }
}

.form__subtitle-2nd {
  margin: 6.2rem 0 3.5rem;
}
@media only screen and (max-width: 640px) {
  .form__subtitle-2nd {
    margin: calc(50 / 760 * 100vw) 0 calc(30 / 760 * 100vw);
  }
}

.form-field__radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 640px) {
  .form-field__radios {
    gap: calc(10 / 760 * 100vw);
  }
}

.form-field__radios-flex {
  display: flex;
  gap: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .form-field__radios-flex {
    flex-direction: column;
    gap: calc(5 / 760 * 100vw);
  }
}
.form-field__radios-flex .from-radio__text {
  margin-right: 0.8rem;
}
@media only screen and (max-width: 640px) {
  .form-field__radios-flex .from-radio__text {
    font-size: calc(28 / 760 * 100vw);
    margin-right: calc(5 / 760 * 100vw);
  }
}

.from-radio__text {
  color: #000;
  font-weight: 500;
  line-height: 2.45;
}

.mansion-inputs {
  color: #000;
  font-weight: 500;
}
.mansion-inputs input {
  margin: 0 1rem 0 2rem;
}
@media only screen and (max-width: 640px) {
  .mansion-inputs input {
    margin: 0 calc(10 / 760 * 100vw) 0 calc(20 / 760 * 100vw);
  }
}

.building-text {
  color: #000;
  font-weight: 500;
}

.form__button {
  margin-top: 2.9rem;
}
.form__button .c-button {
  display: block;
  border: 1px solid #c7c7c7;
  background: #6b6b6b;
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
  width: 34.5rem;
  padding: 2.2rem 0;
  margin: 0 auto;
}

.box-privacy {
  flex: 1;
}

.privacy-container {
  width: 100%;
  height: 17rem;
  max-height: 17rem;
  overflow-y: scroll;
  padding: 1rem;
  position: relative;
  display: block;
  -webkit-overflow-scrolling: touch;
  flex: none;
}
.privacy-container::-webkit-scrollbar {
  width: 1.3rem;
}
.privacy-container::-webkit-scrollbar-track {
  background: #d9d9d9;
}
.privacy-container::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.privacy-container::-webkit-scrollbar-thumb:hover {
  background: #6c6c6c;
}
.privacy-container p {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
}
.privacy-container .strong {
  font-weight: 700;
}

.form-field__item-privacy {
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}/*# sourceMappingURL=sale.css.map */