@charset "UTF-8";
/* ----------------------------------------------------
ヘッダー
---------------------------------------------------- */
.l-header {
  width: 100%;
  position: absolute;
  top: 3.5rem;
  z-index: 100;
}

.l-header__container {
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo-livness {
  width: 13.4rem;
}

.l-header__logo-daiwa {
  width: 19.8rem;
}

@media screen and (max-width: 767px) {
  .l-header {
    top: 1.1rem;
  }
  .l-header__logo-livness {
    width: 8.2rem;
  }
  .l-header__logo-daiwa {
    width: 14.8rem;
  }
}
/* ----------------------------------------------------
フッター
---------------------------------------------------- */
.l-footer {
  background-color: #333;
}

.l-footer__container {
  padding-block: 4.45rem;
}

.l-footer__copy {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
}

@media screen and (max-width: 767px) {
  .l-footer__container {
    padding-block: 1.95rem;
  }
  .l-footer__copy {
    letter-spacing: 0;
  }
}
/* ----------------------------------------------------
コンテナ
---------------------------------------------------- */
.l-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 2rem;
}

/* ----------------------------------------------------
component
---------------------------------------------------- */
/* ---------- ボタン ----------*/
.c-btn {
  line-height: 1;
  display: block;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

.c-btn-green {
  max-width: 47.2rem;
  height: 10rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(6, 111, 70)), color-stop(38%, rgb(18, 155, 102)), to(rgb(30, 199, 133)));
  background-image: linear-gradient(0deg, rgb(6, 111, 70) 0%, rgb(18, 155, 102) 38%, rgb(30, 199, 133) 100%);
  -webkit-box-shadow: 0 1rem 0 0 #005f3a;
          box-shadow: 0 1rem 0 0 #005f3a;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 2.7rem 1rem;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.c-btn-green::before {
  content: "";
  display: inline-block;
  width: calc(100% + 3.6rem);
  height: 12rem;
  background-color: rgb(31, 191, 129);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn-green::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2.2rem;
  background: url(../img/arrow_btn.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
.c-btn-green span {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .c-btn-green {
    max-width: 29.5rem;
    height: 6rem;
    font-size: 2rem;
    padding: 1.7rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0 5px 0 0 #005f3a;
            box-shadow: 0 5px 0 0 #005f3a;
  }
  .c-btn-green::before {
    height: 6.8rem;
  }
  .c-btn-green::after {
    width: 0.7rem;
    height: 1.1rem;
    right: 1.2rem;
  }
  .c-btn-green span {
    font-size: 2.6rem;
  }
}
@media (hover: hover) {
  .c-btn-green:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
  .c-btn-green:hover::before {
    -webkit-transform: translate(-50%, -45%) scale(2);
            transform: translate(-50%, -45%) scale(2);
  }
}

.c-btn-orange {
  max-width: 42rem;
  height: 7rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(234, 84, 4)), to(rgb(255, 95, 10)));
  background-image: linear-gradient(0deg, rgb(234, 84, 4) 0%, rgb(255, 95, 10) 100%);
  -webkit-box-shadow: 0 0.8rem 0 0 rgb(110, 38, 0);
          box-shadow: 0 0.8rem 0 0 rgb(110, 38, 0);
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.c-btn-orange::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 9.2rem;
  background-color: #fb833f;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn-orange::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2.2rem;
  background: url(../img/arrow_btn.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
.c-btn-orange span {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .c-btn-orange {
    max-width: 33.5rem;
    height: 6rem;
    font-size: 2rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0 0.4rem 0 0 rgb(110, 38, 0);
            box-shadow: 0 0.4rem 0 0 rgb(110, 38, 0);
    letter-spacing: 0;
  }
  .c-btn-orange::before {
    height: 6.8rem;
    -webkit-transform: translate(-50%, -45%);
            transform: translate(-50%, -45%);
  }
  .c-btn-orange::after {
    width: 0.7rem;
    height: 1.1rem;
    right: 1.6rem;
  }
  .c-btn-orange span {
    font-size: 2.6rem;
  }
}
@media (hover: hover) {
  .c-btn-orange:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.8rem);
            transform: translateY(0.8rem);
  }
  .c-btn-orange:hover::before {
    -webkit-transform: translate(-50%, -45%) scale(2);
            transform: translate(-50%, -45%) scale(2);
  }
}

/* ---------- 電話番号 ----------*/
.c-tel {
  font-size: 4rem;
  letter-spacing: 0em;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.9rem;
  position: relative;
}
.c-tel::before {
  content: "";
  display: inline-block;
  width: 5.4rem;
  height: 3.1rem;
  background: url(../img/icon_tel.png) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .c-tel {
    font-size: 3.4rem;
  }
  .c-tel::before {
    width: 4.6rem;
    height: 2.6rem;
  }
}

.c-tel-date {
  font-weight: 700;
  letter-spacing: 0;
}
.c-tel-date span {
  display: inline-block;
  margin-right: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-tel-date {
    font-size: 1.4rem;
  }
  .c-tel-date span {
    margin-right: 0.8rem;
  }
}

/* ---------- タイトル ----------*/
.c-head-01 {
  font-size: 4.8rem;
  line-height: 1.2916666667;
  font-weight: 700;
  text-align: center;
}
.c-head-01 .big {
  font-size: 6.4rem;
}
.c-head-01 .small {
  font-size: 4rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-head-01 {
    font-size: 2.4rem;
    letter-spacing: 0.02em;
  }
  .c-head-01 .big {
    font-size: 3.2rem;
  }
  .c-head-01 .small {
    font-size: 2.4rem;
  }
}

.c-head-02 {
  font-size: 5.6rem;
  line-height: 1.3035714286;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-head-02 {
    font-size: 3.1rem;
    line-height: 1.2903225806;
    letter-spacing: 0.025em;
  }
  .c-head-02 span {
    letter-spacing: 0.025em;
  }
}

.c-txt-01 {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-txt-01 {
    font-size: 1.6rem;
    line-height: 1.625;
    text-align: justify;
  }
}

/* ----------------------------------------------------
project
---------------------------------------------------- */
/* ---------- ファーストビュー ----------*/
.p-fv {
  background: url(../img/fv_bg.png) no-repeat center/cover;
  overflow: hidden;
}

.p-fv__container {
  padding-block: 8.3rem 5.5rem;
}

.p-fv__inner {
  max-width: 58rem;
  margin-inline: auto;
  background-color: #fff;
  padding: 4.9rem 2rem 5.9rem;
  -webkit-box-shadow: 0 1.6rem 3.6rem 2rem rgba(171, 146, 97, 0.26);
          box-shadow: 0 1.6rem 3.6rem 2rem rgba(171, 146, 97, 0.26);
  position: relative;
}
.p-fv__inner::before {
  content: "";
  display: inline-block;
  width: 12.6rem;
  height: 12.6rem;
  background: url(../img/fv_item01.png) center/contain no-repeat;
  position: absolute;
  left: -12.1rem;
  bottom: 11.4rem;
}
.p-fv__inner::after {
  content: "";
  display: inline-block;
  width: 15.2rem;
  height: 15.2rem;
  background: url(../img/fv_item02.png) center/contain no-repeat;
  position: absolute;
  left: -4.4rem;
  bottom: -3.6rem;
}

.p-fv__head {
  text-align: center;
  font-size: 3.4rem;
  letter-spacing: 0.075em;
  font-weight: 700;
  max-width: 39rem;
  margin-inline: auto;
}

.p-fv__head-sub {
  display: block;
  font-size: 3.9rem;
  letter-spacing: 0.055em;
}
.p-fv__head-sub strong {
  line-height: 1;
  font-size: 5.9rem;
  position: relative;
  z-index: 2;
}
.p-fv__head-sub strong::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.6rem;
  background: #ffc3a3;
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.p-fv__head-ttl {
  display: block;
  font-size: 4.6rem;
  padding: 1.1rem 1rem;
}
.p-fv__head-ttl strong {
  font-size: 7.4rem;
  font-weight: 700;
}
.p-fv__head-ttl.green {
  margin-top: 2.2rem;
  letter-spacing: 0.025em;
  border: 4px solid #33af7f;
}
.p-fv__head-ttl.green strong {
  color: #33af7f;
  letter-spacing: 0.055em;
}
.p-fv__head-ttl.orange {
  margin-block: 1.5rem 2rem;
  letter-spacing: 0.005em;
  border: 4px solid #ea5404;
}
.p-fv__head-ttl.orange strong {
  color: #ea5404;
  letter-spacing: 0.015em;
}

.p-fv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  position: absolute;
  top: -4rem;
  right: 9rem;
}

.p-fv__item {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ea5404;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  text-align: center;
}
.p-fv__item:nth-of-type(odd) {
  z-index: 3;
}
.p-fv__item:nth-of-type(odd)::before {
  content: "";
  display: inline-block;
  width: 8.3rem;
  height: 9rem;
  background: url(../img/fv_bubble01.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  z-index: -1;
}
.p-fv__item:nth-of-type(even)::before {
  content: "";
  display: inline-block;
  width: 8.3rem;
  height: 9rem;
  background: url(../img/fv_bubble02.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  z-index: -1;
}
.p-fv__item:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-fv__item:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-fv__item:nth-of-type(3) {
  margin-left: -0.8rem;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.p-fv__img {
  width: 18.9rem;
  position: absolute;
  bottom: -6.4rem;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (max-width: 1023px) {
  .p-fv__container {
    padding-top: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv {
    background: #f9f7f3;
  }
  .p-fv__container {
    padding-top: 8rem;
  }
  .p-fv__inner {
    max-width: 34rem;
    padding-block: 2.8rem 3.7rem;
  }
  .p-fv__inner::before {
    width: 7.1rem;
    height: 7.1rem;
    left: -3rem;
    bottom: 6.4rem;
  }
  .p-fv__inner::after {
    width: 8.5rem;
    height: 8.5rem;
    left: 0.6rem;
    bottom: -2.5rem;
  }
  .p-fv__head {
    font-size: 2rem;
    max-width: 25rem;
  }
  .p-fv__head-sub {
    font-size: 2.4rem;
  }
  .p-fv__head-sub strong {
    font-size: 3.5rem;
  }
  .p-fv__head-ttl {
    font-size: 2.8rem;
    padding: 0.8rem 0.7rem;
  }
  .p-fv__head-ttl strong {
    font-size: 4.5rem;
  }
  .p-fv__head-ttl.green {
    margin-top: 1.2rem;
    border-width: 2px;
  }
  .p-fv__head-ttl.orange {
    margin-block: 1.1rem 1.3rem;
    border-width: 2px;
  }
  .p-fv__list {
    gap: 2rem;
    right: 4.8rem;
    top: -1.7rem;
  }
  .p-fv__item {
    font-size: 1rem;
    font-size: 1rem;
    line-height: 1.3;
  }
  .p-fv__item:nth-of-type(odd)::before, .p-fv__item:nth-of-type(even)::before {
    width: 5rem;
    height: 5.5rem;
  }
  .p-fv__item:nth-of-type(3) {
    margin-left: -0.4rem;
  }
  .p-fv__img {
    width: 8rem;
    bottom: 0;
    right: -0.9rem;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/* ---------- CTA ----------*/
.p-cta {
  border-top: 6px solid #ea5404;
  border-bottom: 6px solid #ea5404;
  background: url(../img/cta_bg.png) no-repeat center/cover;
  position: relative;
}
.p-cta::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.p-cta__container {
  padding-block: 3rem;
  position: relative;
}

.p-cta__ttl {
  text-align: center;
}
.p-cta__ttl span {
  display: inline-block;
  font-size: 3.6rem;
  line-height: 1.2777777778;
  letter-spacing: 0.115em;
  font-weight: 700;
  background-color: #fff;
  padding-inline: 1.2rem;
}

.p-cta__btn {
  margin-top: 1.7rem;
}
.p-cta__btn a {
  margin-inline: auto;
}

.p-cta__tel {
  margin: 2.4rem auto 0;
  max-width: 75rem;
  background-color: #fff;
  padding: 2.8rem 1rem 3.2rem;
  -webkit-box-shadow: 0 1.6rem 3.6rem 0.2rem rgba(171, 146, 97, 0.26);
          box-shadow: 0 1.6rem 3.6rem 0.2rem rgba(171, 146, 97, 0.26);
}

.p-cta__tel-ttl {
  font-size: 2rem;
  letter-spacing: 0.115em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  color: #ea5404;
  position: relative;
}
.p-cta__tel-ttl::after {
  content: "";
  display: inline-block;
  width: 3.7rem;
  height: 2.9rem;
  background: url(../img/icon_phone.png) center/contain no-repeat;
}

.p-cta__tel-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 1rem;
  gap: 3.4rem;
}

@media screen and (max-width: 767px) {
  .p-cta {
    border-width: 3px 0;
    background: url(../img/cta_bg_sp.png) no-repeat center/cover;
  }
  .p-cta__container {
    padding-block: 1.5rem;
  }
  .p-cta__ttl span {
    font-size: 1.9rem;
    line-height: 1.1578947368;
    padding-inline: 0.5rem;
  }
  .p-cta__btn {
    margin-top: 1rem;
  }
  .p-cta__tel {
    margin-top: 2rem;
  }
  .p-cta__tel-ttl {
    font-size: 1.6rem;
    gap: 0.6rem;
  }
  .p-cta__tel-ttl::after {
    width: 1.8rem;
    height: 1.4rem;
  }
  .p-cta__tel-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.1rem;
  }
}
/* ---------- 不動産に関するこんなお悩み、ありませんか？ ----------*/
.p-trouble__container {
  padding-top: 7rem;
}

.p-trouble__list-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.6rem;
}

.p-trouble__item-txt {
  width: 22.1rem;
  height: 11.2rem;
  background: url(../img/trouble_bubble.png) no-repeat center/cover;
  -webkit-filter: drop-shadow(0 0 24px rgba(218, 199, 162, 0.21));
          filter: drop-shadow(0 0 24px rgba(218, 199, 162, 0.21));
  font-size: 1.9rem;
  line-height: 1.5263157895;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1.4rem;
}
.p-trouble__item-txt + .p-trouble__item-txt {
  margin-left: -6rem;
}
.p-trouble__item-txt:first-of-type {
  position: relative;
  z-index: 2;
}
.p-trouble__item-txt:nth-of-type(even) {
  margin-top: 6.8rem;
}
.p-trouble__item-txt:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-trouble__item-txt:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-trouble__item-txt:nth-of-type(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-trouble__item-txt:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.p-trouble__list-img {
  margin-top: -2.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}

.p-trouble__item-img {
  width: 13.5rem;
  border-radius: 50%;
}
.p-trouble__item-img:nth-of-type(even) {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .p-trouble__container {
    padding-top: 4.2rem;
  }
  .p-trouble__wrap {
    margin-top: 2.8rem;
  }
  .p-trouble__list-txt {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    max-width: 33.5rem;
    margin-inline: auto;
  }
  .p-trouble__item-txt {
    width: 15.8rem;
    height: 7.9rem;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
  .p-trouble__item-txt + .p-trouble__item-txt {
    margin-left: 0;
  }
  .p-trouble__item-txt:nth-of-type(even) {
    margin-top: 0;
  }
  .p-trouble__item-txt:nth-of-type(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: -3.6rem;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .p-trouble__item-txt:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: translate(3.8rem, -5rem);
            transform: translate(3.8rem, -5rem);
  }
  .p-trouble__item-txt:nth-of-type(2).active {
    -webkit-transform: translateX(3.8rem);
            transform: translateX(3.8rem);
  }
  .p-trouble__item-txt:nth-of-type(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 3.5rem;
    z-index: 2;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translate(1rem, -5rem);
            transform: translate(1rem, -5rem);
  }
  .p-trouble__item-txt:nth-of-type(3).active {
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
  .p-trouble__item-txt:nth-of-type(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 0;
    z-index: 2;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
    -webkit-transform: translate(-2.2rem, -5rem);
            transform: translate(-2.2rem, -5rem);
  }
  .p-trouble__item-txt:nth-of-type(4).active {
    -webkit-transform: translateX(-2.2rem);
            transform: translateX(-2.2rem);
  }
  .p-trouble__list-img {
    padding-inline: 3.2rem;
    gap: 0;
    margin-top: -3rem;
  }
  .p-trouble__item-img {
    width: 14.8rem;
  }
  .p-trouble__item-img:nth-of-type(2) {
    margin-left: -2.7rem;
  }
  .p-trouble__item-img:nth-of-type(even) {
    margin-top: 2.3rem;
  }
}
/* ---------- まずは無料査定で不動産の資産価値を確認してみましょう！ ----------*/
.p-assessment__container {
  padding-block: 8rem;
}

.p-assessment__head {
  line-height: 1.6;
}
.p-assessment__head em,
.p-assessment__head .u-line-head {
  letter-spacing: 0.01em;
}

.p-assessment__wrap {
  margin: 3.8rem auto 0;
  background-color: #fff;
  padding: 3rem 2rem 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.p-assessment__wrap::before {
  content: "";
  display: inline-block;
  width: 17.2rem;
  height: 24.9rem;
  background: url(../img/assessment_item.png) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 6.9rem;
  z-index: -1;
}

.p-assessment__btn {
  margin-top: 2rem;
}
.p-assessment__btn a {
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .p-assessment__wrap::before {
    left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-assessment__container {
    padding-block: 3.2rem;
  }
  .p-assessment__head {
    line-height: 1.8;
  }
  .p-assessment__head .big {
    font-size: 4rem;
    line-height: 1;
  }
  .p-assessment__wrap {
    margin-top: 2.4rem;
    padding: 2rem 1.5rem;
  }
  .p-assessment__wrap::before {
    width: 8.4rem;
    height: 12.2rem;
    position: absolute;
    top: 2rem;
    left: 50%;
    -webkit-transform: translate(calc(-50% - 10.6rem), 0);
            transform: translate(calc(-50% - 10.6rem), 0);
  }
  .p-assessment__wrap p {
    text-align: left;
    padding-left: 8.6rem;
    letter-spacing: 0;
  }
  .p-assessment__wrap strong {
    font-weight: 500;
  }
  .p-assessment__inner {
    max-width: 30.6rem;
    margin-inline: auto;
  }
  .p-assessment__btn {
    margin-top: 1.7rem;
  }
}
/* ---------- 大和ハウスグループリブネスの特徴 ----------*/
.p-feature {
  border-top: 5px solid #122962;
}

.p-feature__container {
  padding-top: 3.5rem;
}

.p-feature__head {
  line-height: 1.0833333333;
}

.p-feature__wrap {
  margin-top: 2.7rem;
  position: relative;
  padding-block: 7rem 8rem;
}
.p-feature__wrap::before {
  content: "";
  display: inline-block;
  width: 14.5rem;
  height: 9.6rem;
  background: url(../img/feature_icon01.png) center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 3rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.p-feature__wrap::after {
  content: "";
  display: inline-block;
  width: 12.6rem;
  height: 9.2rem;
  background: url(../img/feature_icon02.png) center/contain no-repeat;
  position: absolute;
  top: 0.3rem;
  right: 2rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.p-feature__inner {
  background-color: #fff;
  margin-top: 4.8rem;
  padding: 6.4rem 8rem;
}

.p-feature__lead {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4rem;
}

.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.3rem 4rem;
  margin-top: 6.7rem;
}

.p-feature__item {
  width: calc(50% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-feature__item-head {
  background-color: #ea5404;
  position: relative;
  width: calc(100% - 2.6rem);
  margin-inline: auto;
  height: 8.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 2.7rem 16rem;
}
.p-feature__item-head img {
  width: 14.2rem;
  position: absolute;
  top: -1.4rem;
  right: 1rem;
  -webkit-box-shadow: 0 0.7rem 1.6rem 0 rgba(0, 0, 0, 0.28);
          box-shadow: 0 0.7rem 1.6rem 0 rgba(0, 0, 0, 0.28);
}

.p-feature__item-ttl {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  font-weight: 700;
  color: #fff;
}

.p-feature__item-content {
  border: 4px solid #ea5404;
  margin-top: -4rem;
  padding: 6rem 3.2rem 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-feature__item-txt {
  font-size: 1.8rem;
  line-height: 1.8888888889;
}

.p-feature__btn {
  margin-top: 5.6rem;
}
.p-feature__btn a {
  margin-inline: auto;
}

@media screen and (max-width: 1023px) {
  .p-feature__item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    padding-top: 1.6rem;
  }
  .p-feature__head {
    line-height: 1.3;
  }
  .p-feature__head .big {
    font-size: 4.4rem;
  }
  .p-feature__wrap {
    margin-top: 1rem;
    padding-block: 2.7rem 4rem;
  }
  .p-feature__wrap::before {
    width: 7.3rem;
    height: 4.8rem;
    left: 4rem;
  }
  .p-feature__wrap::after {
    width: 6.3rem;
    height: 4.8rem;
    right: 3.6rem;
  }
  .p-feature__inner {
    margin-top: 2.7rem;
    padding: 2.7rem 2rem;
  }
  .p-feature__lead {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }
  .p-feature__list {
    margin-top: 2.5rem;
    gap: 3rem;
  }
  .p-feature__item-head {
    height: 6rem;
    width: calc(100% - 1.8rem);
    padding-inline: 1rem 10rem;
  }
  .p-feature__item-head img {
    width: 10rem;
    top: -1rem;
    right: 0.8rem;
  }
  .p-feature__item-ttl {
    font-size: 1.9rem;
    line-height: 1.2631578947;
    letter-spacing: 0.025em;
  }
  .p-feature__item-content {
    margin-top: -3rem;
    border-width: 2px;
    padding: 4.1rem 1.8rem 1.2rem;
  }
  .p-feature__item-txt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .p-feature__btn {
    margin-top: 3.2rem;
  }
}
/* ---------- リブネスの不動産トータルサポート ----------*/
.p-support__container {
  padding-block: 11.5rem 8.8rem;
}

.p-support__head {
  position: relative;
}

.p-support__head-sub {
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  display: inline-block;
  color: #ea5404;
  position: absolute;
  left: 50%;
  top: -4rem;
  -webkit-transform: translateX(calc(-50% + 18.5rem)) rotate(20deg);
          transform: translateX(calc(-50% + 18.5rem)) rotate(20deg);
}
.p-support__head-sub::before, .p-support__head-sub::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 5rem;
  background: url(../img/support_head_icon.png) center/contain no-repeat;
  position: absolute;
}
.p-support__head-sub::before {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  top: 0;
  left: -3.6rem;
}
.p-support__head-sub::after {
  -webkit-transform: scale(-1, 1) rotate(-25deg);
          transform: scale(-1, 1) rotate(-25deg);
  top: -1rem;
  right: -2.6rem;
}

.p-support__wrap {
  margin-top: 6rem;
}

.p-support__list {
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.p-support__item:nth-of-type(1) a {
  background: url(../img/support_item_bg01.png) no-repeat center right/cover;
}
.p-support__item:nth-of-type(2) a {
  background: url(../img/support_item_bg02.png) no-repeat center right/cover;
}
.p-support__item:nth-of-type(3) a {
  background: url(../img/support_item_bg03.png) no-repeat center right/cover;
}
.p-support__item:nth-of-type(4) a {
  background: url(../img/support_item_bg04.png) no-repeat center right/cover;
}
.p-support__item a {
  display: block;
  border: 4px solid #ea5404;
  padding: 2.7rem 3rem;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-support__item a:hover {
    -webkit-box-shadow: 0 1.6rem 0 0 rgb(219, 219, 219);
            box-shadow: 0 1.6rem 0 0 rgb(219, 219, 219);
    -webkit-transform: translateY(-1.6rem) scale(1.1);
            transform: translateY(-1.6rem) scale(1.1);
  }
}

.p-support__item-btn {
  display: inline-block;
  width: 3.3rem;
  height: 6.6rem;
  border-radius: 100% 0 0 100%/50%;
  background-color: #ea5404;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-support__item-btn::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.6rem;
  background: url(../img/arrow_btn.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-support__item-txt {
  font-size: 1.8rem;
  font-weight: 700;
}

.p-support__item-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: 1.4rem;
}
.p-support__item-ttl span {
  font-size: 2.4rem;
}

@media screen and (max-width: 1023px) {
  .p-support__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1023px) and (hover: hover) {
  .p-support__item a:hover {
    -webkit-transform: translateY(-1.6rem) scale(1.05);
            transform: translateY(-1.6rem) scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .p-support__container {
    padding-block: 5.9rem 4rem;
  }
  .p-support__head-sub {
    font-size: 1.3rem;
    top: -2rem;
    -webkit-transform: translateX(calc(-50% + 8.5rem)) rotate(20deg);
            transform: translateX(calc(-50% + 8.5rem)) rotate(20deg);
  }
  .p-support__head-sub::before, .p-support__head-sub::after {
    width: 0.8rem;
    height: 2.5rem;
  }
  .p-support__head-sub::before {
    top: -0.5rem;
    left: -1.8rem;
  }
  .p-support__head-sub::after {
    top: -0.5rem;
    right: -1.3rem;
  }
  .p-support__wrap {
    margin-top: 3.1rem;
  }
  .p-support__list {
    gap: 1.6rem;
  }
  .p-support__item a {
    padding: 1.5rem 1.8rem;
    border-width: 2px;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .p-support__item a:hover {
    -webkit-box-shadow: 0 0.8rem 0 0 rgb(219, 219, 219);
            box-shadow: 0 0.8rem 0 0 rgb(219, 219, 219);
    -webkit-transform: translateY(-0.8rem) scale(1.05);
            transform: translateY(-0.8rem) scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .p-support__item:nth-of-type(1) a {
    background: url(../img/support_item_bg01_sp.png) no-repeat center left/cover;
  }
  .p-support__item:nth-of-type(2) a {
    background: url(../img/support_item_bg02_sp.png) no-repeat center left/cover;
  }
  .p-support__item:nth-of-type(3) a {
    background: url(../img/support_item_bg03_sp.png) no-repeat center left/cover;
  }
  .p-support__item:nth-of-type(4) a {
    background: url(../img/support_item_bg04_sp.png) no-repeat center left/cover;
  }
  .p-support__item-btn {
    width: 2.5rem;
    height: 5rem;
  }
  .p-support__item-btn::before {
    width: 0.7rem;
    height: 1.2rem;
  }
  .p-support__item-txt {
    font-size: 1.4rem;
    letter-spacing: 0.025em;
  }
  .p-support__item-ttl {
    margin-top: 0.8rem;
    font-size: 2rem;
  }
  .p-support__item-ttl span {
    font-size: 1.4rem;
    right: 0.6rem;
  }
}
/* ---------- リブネスの不動産お役立ち知識 ----------*/
.p-info {
  background-color: #f9f7f3;
}

.p-info__container {
  padding-block: 8rem 7rem;
}

.p-info__head span {
  display: inline-block;
  padding-right: 7.9rem;
  line-height: 1;
  position: relative;
}
.p-info__head span::after {
  content: "";
  display: inline-block;
  width: 6.2rem;
  height: 7.6rem;
  background: url(../img/info_ttl_icon.png) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}

.p-info__wrap {
  margin-top: 5.5rem;
}

.p-info__list {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.p-info__item a {
  border: 4px solid #ea5404;
  background-color: #fff;
  padding: 1.7rem 1rem 1.7rem 9.6rem;
  position: relative;
  z-index: 2;
  display: block;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-info__item a:hover {
    -webkit-box-shadow: 0 1.6rem 0 0 rgb(219, 219, 219);
            box-shadow: 0 1.6rem 0 0 rgb(219, 219, 219);
    -webkit-transform: translateY(-1.6rem) scale(1.1);
            transform: translateY(-1.6rem) scale(1.1);
  }
}
.p-info__item:nth-of-type(1) {
  grid-area: 1/1/3/2;
}
.p-info__item:nth-of-type(1) a {
  padding-left: 9rem;
}
.p-info__item:nth-of-type(1) .p-info__item-ttl {
  margin-top: 1rem;
}

.p-info__item-btn {
  display: inline-block;
  width: 3.3rem;
  height: 6.6rem;
  border-radius: 100% 0 0 100%/50%;
  background-color: #edf2f3;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.p-info__item-btn::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.6rem;
  background: url(../img/arrow_btn_orange.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-info__icon {
  width: 6.4rem;
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 1.2rem;
}

.p-info__item-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-info__item-img {
  width: 33rem;
  padding-left: 2rem;
  margin-top: 2rem;
}

.p-info__item-announce {
  width: calc(100% - 5rem);
  border-radius: 0.4rem;
  padding-inline: 1.3rem;
  font-size: 2.4rem;
  line-height: 1.8333333333;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #fff;
  background-color: #ea5404;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, calc(50% + 0.4rem));
          transform: translate(-50%, calc(50% + 0.4rem));
}

.p-info__item-txt {
  font-weight: 700;
  margin-top: 1.2rem;
}

.p-info__tel {
  margin-top: 5.2rem;
  background-color: #fff;
  -webkit-box-shadow: 0 1.6rem 3.6rem 2rem rgba(171, 146, 97, 0.26);
          box-shadow: 0 1.6rem 3.6rem 2rem rgba(171, 146, 97, 0.26);
}

.p-info__tel-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
  padding: 2.6rem 3rem 2.6rem 1.4rem;
  max-width: 88.8rem;
  margin-inline: auto;
}

.p-info__tel-ttl {
  font-size: 3rem;
  font-weight: 700;
  color: #ea5404;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  position: relative;
}
.p-info__tel-ttl::after {
  content: "";
  display: inline-block;
  width: 3.7rem;
  height: 2.9rem;
  background: url(../img/icon_phone.png) center/contain no-repeat;
}

.p-info__tel-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 1023px) {
  .p-info__item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .p-info__item a {
    padding-left: 8rem;
    padding-right: 3.3rem;
  }
}
@media screen and (max-width: 1023px) and (hover: hover) {
  .p-info__item a:hover {
    -webkit-transform: translateY(-1.6rem) scale(1.05);
            transform: translateY(-1.6rem) scale(1.05);
  }
}
@media screen and (max-width: 1023px) {
  .p-info__item-announce {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .p-info__item-img {
    margin-inline: auto;
  }
  .p-info__tel-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  .p-info__item-ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-info {
    overflow: hidden;
  }
  .p-info__container {
    padding-block: 3.6rem 2.7rem;
  }
  .p-info__head span {
    padding-right: 4.1rem;
  }
  .p-info__head span::after {
    width: 3.1rem;
    height: 3.8rem;
  }
  .p-info__wrap {
    margin-top: 3rem;
  }
  .p-info__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.8rem;
  }
  .p-info__item {
    width: 27.1rem;
  }
  .p-info__item a {
    border-width: 2px;
    padding: 1.1rem 1rem 1.1rem 5.5rem;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .p-info__item a:hover {
    -webkit-box-shadow: 0 0.8rem 0 0 rgb(219, 219, 219);
            box-shadow: 0 0.8rem 0 0 rgb(219, 219, 219);
    -webkit-transform: translateY(-0.8rem) scale(1.05);
            transform: translateY(-0.8rem) scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .p-info__item:first-of-type a {
    padding-left: 5.5rem;
    padding-bottom: 0;
  }
  .p-info__item:first-of-type .p-info__item-ttl {
    margin-top: 0.5rem;
  }
  .p-info__item:first-of-type .p-info__icon {
    top: 0.6rem;
    left: 0.6rem;
  }
  .p-info__item-btn {
    width: 2.5rem;
    height: 5rem;
  }
  .p-info__item-btn::before {
    width: 0.7rem;
    height: 1.2rem;
  }
  .p-info__icon {
    width: 4rem;
    top: 0.9rem;
    left: 1.1rem;
  }
  .p-info__item-ttl {
    font-size: 1.6rem;
    letter-spacing: 0.025em;
  }
  .p-info__item-img {
    width: 18rem;
    margin-top: 0.9rem;
    padding-left: 0.2rem;
    margin-bottom: -0.2rem;
    margin-inline: 0;
  }
  .p-info__item-announce {
    border-radius: 0.2rem;
    width: calc(100% - 6rem);
    font-size: 1.1rem;
    line-height: 1.5454545455;
    letter-spacing: 0.01em;
    padding-inline: 0.5rem;
    -webkit-transform: translate(-50%, calc(50% + 0.2rem));
            transform: translate(-50%, calc(50% + 0.2rem));
  }
  .p-info__item-txt {
    font-size: 1.2rem;
    letter-spacing: -0.025em;
    margin-top: 0.8rem;
  }
  .p-info__tel {
    margin-top: 2.5rem;
    width: 100vw;
    margin-left: -2rem;
    -webkit-box-shadow: 0 0.8rem 1.8rem 1rem rgba(171, 146, 97, 0.26);
            box-shadow: 0 0.8rem 1.8rem 1rem rgba(171, 146, 97, 0.26);
  }
  .p-info__tel.u-radius {
    border-radius: 0;
  }
  .p-info__tel-inner {
    gap: 1.2rem;
    padding-block: 1.6rem;
  }
  .p-info__tel-ttl {
    font-size: 1.6rem;
    letter-spacing: 0.115em;
    gap: 0.6rem;
  }
  .p-info__tel-ttl::after {
    width: 1.8rem;
    height: 1.4rem;
  }
  .p-info__tel-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem;
  }
}
/* ---------- 住まいのお役立ち情報メールマガジン ----------*/
.p-mail {
  background-color: #edf2f3;
}

.p-mail__container {
  padding-block: 7rem 8rem;
}

.p-mail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.p-mail__content {
  width: 50%;
}

.p-mail__ttl {
  font-size: 4.8rem;
  line-height: 1.4583333333;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.p-mail__ttl::after {
  content: "";
  display: inline-block;
  width: 6.2rem;
  height: 5.4rem;
  background: url(../img/icon_mail.png) center/contain no-repeat;
  position: absolute;
  bottom: 0.7rem;
  right: 0;
  z-index: -1;
}
.p-mail__ttl .small {
  font-size: 2.8rem;
}

.p-mail__form {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .p-mail__container {
    padding-block: 3.6rem 4rem;
  }
  .p-mail__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.7rem;
  }
  .p-mail__content,
  .p-mail__form {
    width: 100%;
  }
  .p-mail__ttl {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.375;
    letter-spacing: 0.025em;
    margin-bottom: 2.7rem;
  }
  .p-mail__ttl::after {
    width: 3.5rem;
    height: 3rem;
    position: static;
    vertical-align: bottom;
    margin-left: -0.2rem;
  }
  .p-mail__ttl .small {
    font-size: 2rem;
    letter-spacing: -0.015em;
  }
  .p-mail__ttl .u-color-orange {
    letter-spacing: 0.075em;
  }
}
/* ---------- SATORI フォーム カスタマイズ ----------*/
.p-mail__form .p-mail__form-inner .satori__custom_form {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 4rem;
}
.p-mail__form .p-mail__form-inner .satori__message {
  margin-top: 2.4rem !important;
  margin-bottom: 4rem !important;
  border: none;
  padding: 0;
  height: auto;
  font-size: 1.5rem;
  line-height: 1.8666666667;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__message a {
  text-decoration: underline;
  color: #33af7f;
}
.p-mail__form .p-mail__form-inner .satori__input_group {
  padding: 0;
}
.p-mail__form .p-mail__form-inner .satori__input_group #satori__customer_email_91d4a33c075b7cdd {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #333;
  padding-bottom: 1.6rem;
}
.p-mail__form .p-mail__form-inner .satori__input_group #satori__privacy_policy_agreement_91d4a33c075b7cdd {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  color: #333;
  margin-right: 0;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email] {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  padding: 2.2rem 2.4rem;
  border-radius: 0.8rem;
  background-color: #eee;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-webkit-input-placeholder {
  color: #a1a3a6;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-moz-placeholder {
  color: #a1a3a6;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email]:-ms-input-placeholder {
  color: #a1a3a6;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-ms-input-placeholder {
  color: #a1a3a6;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::placeholder {
  color: #a1a3a6;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  border: 2px solid #a1a3a6;
  margin-right: 1.8rem;
  vertical-align: -0.5rem;
  background-color: #eeeeee;
  position: relative;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=checkbox]:checked {
  background-color: #a1a3a6;
}
.p-mail__form .p-mail__form-inner .satori__input_group input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.55rem;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  width: 0.8rem;
  height: 1.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.p-mail__form .p-mail__form-inner .satori__require {
  display: none;
}
.p-mail__form .p-mail__form-inner .satori__error_messages {
  text-align: left;
}
.p-mail__form .p-mail__form-inner .satori__submit_group {
  margin: 4rem 0 0 0;
  width: 100%;
  max-width: 42rem;
  height: 7rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(234, 84, 4)), to(rgb(255, 95, 10)));
  background-image: linear-gradient(0deg, rgb(234, 84, 4) 0%, rgb(255, 95, 10) 100%);
  -webkit-box-shadow: 0 0.8rem 0 0 rgb(110, 38, 0);
          box-shadow: 0 0.8rem 0 0 rgb(110, 38, 0);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.p-mail__form .p-mail__form-inner .satori__submit_group::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 9.2rem;
  background-color: #fb833f;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-mail__form .p-mail__form-inner .satori__submit_group::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 2.2rem;
  background: url(../img/arrow_btn.png) center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
.p-mail__form .p-mail__form-inner .satori__submit_group span {
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .p-mail__form .p-mail__form-inner .satori__submit_group {
    max-width: 33.5rem;
    height: 6rem;
    font-size: 2rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0 0.4rem 0 0 rgb(110, 38, 0);
            box-shadow: 0 0.4rem 0 0 rgb(110, 38, 0);
    letter-spacing: 0;
  }
  .p-mail__form .p-mail__form-inner .satori__submit_group::before {
    height: 6.8rem;
    -webkit-transform: translate(-50%, -45%);
            transform: translate(-50%, -45%);
  }
  .p-mail__form .p-mail__form-inner .satori__submit_group::after {
    width: 0.7rem;
    height: 1.1rem;
    right: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__submit_group span {
    font-size: 2.6rem;
  }
}
@media (hover: hover) {
  .p-mail__form .p-mail__form-inner .satori__submit_group:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.8rem);
            transform: translateY(0.8rem);
  }
  .p-mail__form .p-mail__form-inner .satori__submit_group:hover::before {
    -webkit-transform: translate(-50%, -45%) scale(2);
            transform: translate(-50%, -45%) scale(2);
  }
}
.p-mail__form .p-mail__form-inner .satori__submit_group .satori__btn.submit {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: none;
  color: #fff;
  padding: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .p-mail__form .p-mail__form-inner .satori__submit_group .satori__btn.submit:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-mail__form .p-mail__form-inner .satori__custom_form {
    padding: 3.2rem 2rem;
  }
  .p-mail__form .p-mail__form-inner .satori__message {
    font-size: 1.3rem;
    margin-bottom: 3.2rem !important;
  }
  .p-mail__form .p-mail__form-inner .satori__message a {
    text-decoration: underline;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group {
    padding: 0;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group #satori__customer_email_91d4a33c075b7cdd {
    font-size: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group #satori__privacy_policy_agreement_91d4a33c075b7cdd {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email] {
    font-size: 1.6rem;
    padding: 1.4rem 1.2rem;
    border-radius: 0.4rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-webkit-input-placeholder {
    font-size: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-moz-placeholder {
    font-size: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email]:-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::-ms-input-placeholder {
    font-size: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=email]::placeholder {
    font-size: 1.6rem;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=checkbox] {
    margin-right: 0.7rem;
    width: 2rem;
    height: 2rem;
    border-width: 1px;
  }
  .p-mail__form .p-mail__form-inner .satori__input_group input[type=checkbox]:checked:before {
    top: -0.1rem;
    left: 0.5rem;
  }
  .p-mail__form .p-mail__form-inner .satori__submit_group {
    margin: 2.8rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/* ---------- 不動産のことは、ぜひリブネスにおまかせください ----------*/
.p-movie__container {
  padding-top: 7rem;
}

.p-movie__wrap {
  margin-top: 5.2rem;
}

.p-movie__main {
  max-width: 88rem;
  margin: 3.9rem auto 0;
  height: 36.8960468521vw;
  max-height: 50.4rem;
  min-height: 30rem;
}
.p-movie__main iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-movie .c-head-02 {
    text-align: left;
  }
  .p-movie__container {
    padding-top: 2.7rem;
  }
  .p-movie__wrap {
    margin-top: 2.7rem;
  }
  .p-movie__main {
    margin-top: 2.7rem;
    width: 100%;
    height: 51.2vw;
    max-height: none;
    min-height: auto;
  }
}
/* ---------- 「住まいと人生の転機」がきたらリブネスプロにご相談ください ----------*/
.p-message__container {
  padding-block: 11rem 10rem;
}

.p-message__wrap {
  margin-top: 4rem;
}

.p-message__btn {
  margin-top: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-message .c-head-01 {
    line-height: 1.5;
  }
  .p-message__container {
    padding-block: 3rem 5rem;
  }
  .p-message__wrap {
    margin-top: 1.3rem;
  }
  .p-message__btn {
    margin-top: 2.7rem;
  }
}
/* ----------------------------------------------------
utility
---------------------------------------------------- */
/* ---------- レスポンシブ表示切り替え ----------*/
.u-tab-show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-tab-show {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .u-tab-hide {
    display: none;
  }
}

.u-sp-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-show {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

/* ---------- カラー ----------*/
.u-color-orange {
  color: #ea5404;
}

.u-color-navy {
  color: #122962;
}

.u-color-green {
  color: #33af7f;
}

.u-color-white {
  color: #fff;
}

/* ---------- 背景色 ----------*/
.u-bgColor-orange {
  background-color: #f9f7f3;
}

.u-bgColor-navy {
  background-color: #122962;
}

.u-line-head {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, rgba(234, 84, 4, 0.6)));
  background: linear-gradient(transparent 55%, rgba(234, 84, 4, 0.6) 55%);
}
@media screen and (max-width: 767px) {
  .u-line-head {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(65%, rgba(234, 84, 4, 0.6)));
    background: linear-gradient(transparent 65%, rgba(234, 84, 4, 0.6) 65%);
  }
}

/* ---------- radisu ----------*/
.u-radius {
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .u-radius {
    border-radius: 0.4rem;
  }
}