@charset "UTF-8";

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-page
----------------------------------- */
.l-page-cover__ttl {
  text-align: left;
  color: var(--color-orange);
}

/* --------------------------------
header
----------------------------------- */
.header-sp__top {
  height: 14vw;
}
.header-sp .nav-drawer__list {
  color: #414042;
}

.header-sp .nav-drawer__btn {
  background: #414042;
  color: #fefefe;
  font-weight: 500;
  width: 300px;
}

.header-sp .nav-drawer__tel {
  color: #414042;
}

.header-sp .nav-drawer__time {
  color: #414042;
  line-height: 1.5;
}
/* --------------------------------
c-heading
----------------------------------- */
.c-heading01 {
  color: #d4567a;
  font-size: 8rem;
  font-weight: bold;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: "Lexend", "Noto Sans JP", serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-heading01 span {
  display: block;
  color: #414042;
  font-weight: bold;
  font-size: 4vw;
  margin-top: 1vw;
  font-family:  "Noto Sans JP", serif;
}

.c-heading01_center {
  text-align: center;
}

.c-heading01_border {
  padding-bottom: 10px;
  border-bottom: 2px solid #d4567a;
}

.c-heading01_left {
  text-align: left;
}

.c-heading02 {
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(linear-gradient(135deg, var(--color-orange) 0%, #fff7ed 100%)),
      to(#fff7ed));
  background: linear-gradient(135deg, var(--color-orange) 0%, #fff7ed 100%) 0%;
  padding: 1.5rem;
  color: #fefefe;
  font-size: 2.5rem;
  font-weight: 500;
}

.c-heading03 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 500;
  color: #414042;
  padding: 1.5rem 1.5rem 1.5rem 0.5rem;
  border-bottom: 2px solid var(--color-orange);
}

.c-heading04 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--color-orange);
}

/* --------------------------------
btn
----------------------------------- */
.btn {
  background-color: #fefefe;
  color: #d4567a;
}

.btn:hover {
  color: #fefefe;
}

.btn:hover::after {
  background-color: var(--color-yellow);
}

.btn.-color {
  /*   background: -webkit-gradient(linear, left top, right top, from(#d4567a), to(#fff7ed));
  background: linear-gradient(90deg, #d4567a 0%, #fff7ed 100%);
  border: 1px solid #fff7ed; */
  background: var(--color-orange);
  border-radius: 50px;
}

.btn.-color:hover {
  color: var(--color-orange);
}

/* --------------------------------
c-card
----------------------------------- */
.c-card .label {
  background-color: #808285;
  color: #fefefe;
}

.c-card .checkpoint {
  background-color: var(--color-orange);
}

/* --------------------------------
c-table
----------------------------------- */
.c-table01 {
  width: 100%;
  text-align: left;
}

.c-table01 tr {
  display: block;
  border-top: 1px solid #cecece;
  line-height: 1.5;
  padding: 3vw 1.8rem;
}

.c-table01 tr:last-child {
  border-bottom: 1px solid #cecece;
}

.c-table01 th {
  width: 22vw;
  vertical-align: top;
  color: #d4567a;
  font-weight: 500;
}

.c-table02 {
  width: 100%;
  text-align: left;
  margin-top: 3rem;
}

.c-table02 tr {
  display: block;
  border-top: 1px solid #cecece;
  line-height: 1.5;
}

.c-table02 tr:last-child {
  border-bottom: 1px solid #cecece;
}

.c-table02 th,
.c-table02 td {
  padding: 1.2rem;
  font-size: 1.4rem;
}

.c-table02 th {
  width: 33vw;
  color: #fefefe;
  font-weight: 500;
  background-color: var(--color-orange);
}

.c-table02 td span {
  display: block;
}

.c-table02 td a {
  color: #414042;
  text-decoration: none;
}

.c-table02 td a:hover {
  color: var(--color-orange);
  text-decoration: underline;
}


/* --------------------------------
pagination
----------------------------------- */
.pagination .page-numbers {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.pagination .page-numbers.current {
  /* background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d4567a),
    to(#fff7ed)
  ); */
  background: var(--color-orange);
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  border: 1px solid var(--color-orange);
}

.pagination-wrapper .pagination-wrapper__sp.sp-only .page-numbers {
  color: var(--color-orange);
}

.pagination-wrapper .pagination-wrapper__sp.sp-only .page-numbers a {
  border: 1px solid var(--color-orange);
}

/* --------------------------------
footer
----------------------------------- */
.footer-contact {
  background: #f9f9f9;
}

.footer-contact .right__map {
  margin-top: 5vw;
}

.footer-contact .left .tel__link {
  color: var(--color-orange);
}

.footer-contact .left .tel__opentime span {
  color: var(--color-orange);
}

.footer-contact .left .tel__opentime span:nth-of-type(1) {
  border: 1px solid linear-gradient(135deg, var(--color-orange) 0%, #fff7ed 100%);
}

/* --------------------------------
utility
----------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}

.u-mt20 {
  margin-top: 2rem;
}

.u-mt30 {
  margin-top: 3rem;
}

.u-mt40 {
  margin-top: 4rem;
}

.u-mt50 {
  margin-top: 5rem;
}

.u-mt60 {
  margin-top: 6rem;
}

.u-mt70 {
  margin-top: 7rem;
}

.u-mt80 {
  margin-top: 8rem;
}

.u-mt90 {
  margin-top: 9rem;
}

.u-mt100 {
  margin-top: 10rem;
}

.u-mb10 {
  margin-bottom: 1rem;
}

.u-mb20 {
  margin-bottom: 2rem;
}

.u-mb30 {
  margin-bottom: 3rem;
}

.u-mb40 {
  margin-bottom: 4rem;
}

.u-mb50 {
  margin-bottom: 5rem;
}

.u-mb60 {
  margin-bottom: 6rem;
}

.u-mb70 {
  margin-bottom: 7rem;
}

.u-mb80 {
  margin-bottom: 8rem;
}

.u-mb90 {
  margin-bottom: 9rem;
}

.u-mb100 {
  margin-bottom: 10rem;
}

.u-mr10 {
  margin-right: 1rem;
}

.u-mr20 {
  margin-right: 2rem;
}

.u-mr30 {
  margin-right: 3rem;
}

.u-mr40 {
  margin-right: 4rem;
}

.u-mr50 {
  margin-right: 5rem;
}

.u-pt10 {
  padding-top: 1rem;
}

.u-pt20 {
  padding-top: 2rem;
}

.u-pt30 {
  padding-top: 3rem;
}

.u-pt40 {
  padding-top: 4rem;
}

.u-pt50 {
  padding-top: 5rem;
}

.u-pt60 {
  padding-top: 6rem;
}

.u-pt70 {
  padding-top: 7rem;
}

.u-pt80 {
  padding-top: 8rem;
}

.u-pt90 {
  padding-top: 9rem;
}

.u-pt100 {
  padding-top: 10rem;
}

.u-pb10 {
  padding-bottom: 1rem;
}

.u-pb20 {
  padding-bottom: 2rem;
}

.u-pb30 {
  padding-bottom: 3rem;
}

.u-pb40 {
  padding-bottom: 4rem;
}

.u-pb50 {
  padding-bottom: 5rem;
}

.u-pb60 {
  padding-bottom: 6rem;
}

.u-pb70 {
  padding-bottom: 7rem;
}

.u-pb80 {
  padding-bottom: 8rem;
}

.u-pb90 {
  padding-bottom: 9rem;
}

.u-pb100 {
  padding-bottom: 10rem;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right;
}

.u-tal {
  text-align: left;
}

.u-dfc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.u-fwb {
  font-weight: bold;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* .home-news {
  background-image: url("../img/home/new_property_bg001.jpg");
  background-color: rgba(0, 0, 0, 0.1);
} */

.p-home-sec02 {
  padding-bottom: 15rem;
  background: #f9f9f9;
  /* background-image: url("../img/common/home-bg.png"); */
  background-attachment: fixed;
  /* 背景画像をビューポートに固定 */
  background-position: center;
  /* 背景画像を中央に配置 */
  background-repeat: no-repeat;
  /* 背景画像が繰り返されないように設定 */
  background-size: cover;
  /* 背景画像がコンテナのサイズに合わせて拡大/縮小 */
  position: relative;
}

@media (max-width: 768px) {
  .p-home-sec02 {
    background-attachment: scroll;
    /* モバイルでは背景をスクロールに戻す */
    background-size: auto;
    /* 背景サイズを自動に設定 */
  }
}

.p-home-sec02__txt {
  padding-right: 2rem;
  padding-left: 2rem;
}

.p-home-sec03 {
  background: #f6f6f6;
  margin-top: 10rem;
}

.p-home-sec03__ttl {
  position: relative;
  color: #414042;
  margin-bottom: 4rem;
  padding: 0;
}

.p-home-sec03 .home-shop__text {
  background: var(--color-orange);
  width: 100%;
  color: #fefefe;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  -webkit-clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.p-home-sec03 .home-shop__text::after {
  content: none;
}

.p-home-sec03 .home-shop__text .c-heading01.c-heading01_center.p-home-sec03__ttl {
  text-align: left;
  top: 0;
  margin-bottom: 3rem;
}

.p-home-sec03 .home-shop__intro {
  color: #fefefe;
}

.p-home-sec03 .home-section__desc {
  color: #fefefe;
}

.p-home-sec04 {
  background: transparent;
  padding: 15vw 0 8vw;
  margin: 0;
}

.p-home-sec04__cont {
  padding-top: 5vw;
}

.p-home-sec04 .cont__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem 0;
}

.p-home-sec04 .cont .link-wrap {
  width: 49%;
}

.p-buying-sec01 .flow_content .detail .num {
  background-color: #fff7ed;
  color: #fefefe;
}

.p-buying-sec01 .flow_content .detail .head {
  color: var(--color-orange);
  font-weight: 700;
}

.p-management-sec .comment {
  font-size: 5vw;
  position: relative;
  color: var(--color-orange);
  font-weight: 700;
}

/* .p-management-sec .comment::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 110px 80px;
  border-color: transparent transparent #fff7ed transparent;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: -6rem;
  left: 30px;
} */
.p-management-sec .item-wrap {
  padding: 2vw 0;
  border-bottom: 1px solid #ddd;
}

.p-management-sec .num-list li {
  position: relative;
  padding-left: 4rem;
  margin-top: 1rem;
}

.p-management-sec .num-list li span {
  position: absolute;
  left: 0;
  background-color: #fff7ed;
  padding: 0 1rem;
  color: #484848;
  font-weight: 500;
}

.p-management-sec .img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-management-sec .img-wrap .img-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  padding: 1rem;
}

.p-management-sec .img-wrap .img-item img {
  width: 20rem;
}

.p-management-sec .img-wrap .img-item span {
  text-align: center;
}

.p-management-sec .txt-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-management-sec .txt-list li {
  background-color: #fff7ed;
  color: #484848;
  font-weight: 500;
  padding: 0.8rem 2rem;
  width: 100%;
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-management-sec .color-txt {
  color: #fff7ed;
  font-weight: bold;
}

.p-management-sec .border-txt {
  font-weight: bold;
  position: relative;
}

.p-management-sec .border-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #d4567a;
  height: 2px;
  width: 100%;
}

.sub-archive-news__wrapper {
  padding-top: 8vw;
}

.sub-archive-proprty .cat-wrap {
  width: 100%;
  /* border: 5px solid #fff7ed; */
  border-radius: 1.3rem;
}

.sub-archive-proprty .cat-wrap ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -1rem;
  padding: 1rem;
}

.sub-archive-proprty .cat-wrap ul li {
  width: 100%;
  margin-top: 1rem;
}

.sub-archive-proprty .cat-wrap ul li a {
  padding: 3rem 1.3rem;
  border-radius: 0.5rem;
  background-color: var(--color-orange);
  color: #fefefe;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1.5;
  font-weight: 600;
}

.sub-archive-proprty .cat-wrap ul li a:hover {
  opacity: 0.8;
}

.sub-archive-proprty .cat-wrap02 ul li a {
  background-color: var(--color-orange);
}

.sub-single__title {
  color: #414042;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff7ed;
}

.sub-single__main {
  border-top: 1px solid linear-gradient(135deg, var(--color-orange) 0%, #fff7ed 100%);
}

.sub-single-property .sub-single__main p {
  background-color: #f9f7f3;
}

.sub-single-property .property-slider__arw {
  background-color: var(--color-orange);
}

.sub-single-property .property-slider__arw.prev::before,
.sub-single-property .property-slider__arw.next::before {
  border-top: 2px solid #fefefe;
  border-right: 2px solid #fefefe;
}

.sub-single-property .property-slider__dots .slick-active {
  opacity: 1;
  border: 1px solid #d4567a;
}

.sub-single-property .info .table01 .row {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.sub-single-property .info .table01 .row:last-child {
  border-bottom: 1px solid #ddd;
}

.sub-single-property .info .table01 .row .head {
  color: #fff;
  background: #d4567a;
  font-weight: 700;
}

.sub-single-property .info .table02 .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.sub-single-property .info .table02 .row:last-child {
  border-bottom: 1px solid #ddd;
}

.sub-single-property .info .table02 .row .head {
  color:#fff;
	background: #d4567a;
}

.sub-single-property .info .table02 .row .body a {
  color: var(--color-orange);
  text-decoration: underline;
}

.p-contact-sec01 .sub-contact__tel {
  color: var(--color-orange);
}

.p-contact-sec01 .sub-contact__time span {
  color: #414042;
  line-height: 1.3;
}

.p-contact-sec01 .sub-contact__item dt .required {
  background-color: var(--color-orange);
  color: #fefefe;
}

.p-contact-sec01 .sub-contact__item dt .required.gray {
  background-color: #adadad;
  color: #fefefe;
}

.p-contact-sec01 .sub-contact__submit input {
  background: var(--color-orange);
}

.sub-thanks__link a {
  color: #d4567a;
  border-bottom: 1px solid #d4567a;
}

.sub-404__link a {
  color: #d4567a;
  border-bottom: 1px solid #d4567a;
}

.pdf-create {
  padding: 4rem 2.5rem;
}

.pdf-create .title {
  font-size: 12px;
  text-align: center;
  padding-bottom: 1rem;
}

.pdf-create table,
.pdf-create td,
.pdf-create th {
  width: 100%;
  border: 1px solid #595959;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.4;
}

.pdf-create td,
.pdf-create th {
  vertical-align: middle;
  padding: 0.1rem 0.8rem;
}

.pdf-create th {
  vertical-align: middle;
}

.pdf-create .kinds {
  font-weight: bold;
  color: #d4567a;
  font-size: 14px;
}

.pdf-create .table-layout01 th {
  width: 10%;
}

.pdf-create .table-layout01 .w-10 {
  width: 10%;
}

.pdf-create .table-layout01 .w-30 {
  width: 30%;
}

.pdf-create .table-layout01 .w-50 {
  width: 50%;
}

.pdf-create .table-layout01 .img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.pdf-create .table-layout01 .img-wrap .img {
  width: 24.5%;
  margin-right: 0.66666%;
  padding-top: 15%;
  position: relative;
}

.pdf-create .table-layout01 .img-wrap .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pdf-create .table-layout01 .img-wrap .img:nth-child(4n) {
  margin-right: 0;
}

.pdf-create .table-layout02 th {
  width: 10%;
}

.pdf-create .table-layout02 td {
  width: 10%;
}

.pdf-create .table-layout02 .w-10 {
  width: 10%;
}

.pdf-create .table-layout02 .w-20 {
  width: 10%;
}

.pdf-create .table-layout02 .w-30 {
  width: 30%;
}

.pdf-create .table-layout02 .w-50 {
  width: 50%;
}

.pdf-create .table-layout02 .img-wrap .img {
  padding-top: 87.5%;
  position: relative;
}

.pdf-create .table-layout02 .img-wrap .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pdf-create .table-layout02 .img-wrap .img:nth-child(4n) {
  margin-right: 0;
}

.pdf-create .table-layout02 th .dummy {
  visibility: hidden;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media (min-width: 768px) {
  .header {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__logo {
    margin-top: 0;
  }

  .header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__nav {
    margin-right: 3rem;
  }



  .header__top {
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1rem;
  }

  .header__tel {
    color: #414042;
  }

  .header__item-child {
    position: relative;
  }

  .child__wrap {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    min-width: 20rem;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 2rem;
  }

  .child__link {
    display: block;
    letter-spacing: 0.1em;
    padding: 1rem 1rem;
    font-size: 1.4rem;
  }

  .child__link:hover {
    opacity: 0.8;
  }

  .header__item-child:hover>.child__wrap {
    visibility: visible;
    opacity: 1;
  }

  .c-heading01 span {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }

  .c-heading03 {
    font-size: 2.5rem;
  }

  .c-heading04 {
    font-size: 2.5rem;
  }

  .c-table01 tr {
    padding: 1.8rem;
  }

  .c-table01 th {
    width: 13rem;
  }

  .c-table02 th,
  .c-table02 td {
    font-size: 1.6rem;
    padding: 1.8rem;
  }

  .c-table02 th {
    width: 20rem;
  }

  .footer-contact .right__map {
    margin-top: 0;
  }

  .p-home-sec03 {
    background: #fefefe;
    margin-top: 0;
  }

  /*   .p-home-sec03 .home-shop__text::after {
    content: "";
    background: #d4567a;
  } */
  .p-home-sec04 {
    padding: 5rem 0 0 0;
  }

  .p-home-sec04__cont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0;
    margin-top: -5rem;
  }

  .p-home-sec04 .cont__right {
    width: 31.3rem;
  }

  .p-home-sec04 .cont__left {
    width: 58.5rem;
    margin-right: 5rem;
    padding-bottom: 10rem;
  }

  .p-management-sec .comment {
    font-size: 2.6rem;
    color: var(--color-orange);
    font-weight: 700;
  }

  .p-management-sec .item-wrap {
    padding: 2rem 0;
  }

  .p-management-sec .img-wrap .img-item {
    width: 25%;
  }

  .p-management-sec .txt-list li {
    width: 32%;
    margin-right: 2%;
  }

  .p-management-sec .txt-list li:nth-child(3n) {
    margin-right: 0;
  }

  .sub-archive-news__wrapper {
    padding-top: 5rem;
  }

  .sub-archive-proprty .cat-wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sub-archive-proprty .cat-wrap ul li {
    width: 100%;
  }

  .sub-single-property .info .table01 .row {
    border-top: none;
    border-right: none;
  }

  .sub-single-property .info .table01 .row:last-child {
    border-bottom: none;
  }

  .sub-single-property .info .table01 .row::before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #ddd;
    position: absolute;
    top: -1px;
    left: 0;
  }

  .sub-single-property .info .table01 .row::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: #ddd;
    position: absolute;
    top: 0;
    right: -1px;
  }

  .sub-single-property .info .table01 .row .head,
  .sub-single-property .info .table01 .row .body {
    border-bottom: 1px solid #ddd;
  }
}

.sub-single-property .info .table01 .row .body {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .c-table01 {
    font-size: 4vw;
  }

  .p-home-sec03 .home-shop__text {
    -webkit-clip-path: none;
  }
}

.pdf-create {
  padding: 3rem 4rem;
}

.pdf-create .title {
  font-size: 12px;
  text-align: center;
  padding-bottom: 1rem;
}

.pdf-create table,
.pdf-create td,
.pdf-create th {
  width: 100%;
  border: 1px solid #595959;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.5;
}

.pdf-create td,
.pdf-create th {
  vertical-align: middle;
  padding: 0.1rem 0.8rem;
}

.pdf-create th {
  vertical-align: middle;
}

.pdf-create .kinds {
  font-weight: bold;
  color: #d4567a;
  font-size: 14px;
}

.pdf-create .table-layout th {
  width: 10%;
  height: 25px;
}

.pdf-create .table-layout td {
  width: 10%;
}

.pdf-create .table-layout .w-10 {
  width: 10%;
}

.pdf-create .table-layout .w-20 {
  width: 10%;
}

.pdf-create .table-layout .w-30 {
  width: 30%;
}

.pdf-create .table-layout .w-50 {
  width: 50%;
}

.pdf-create .table-layout .img-wrap .img {
  padding-top: 82.5%;
  position: relative;
}

.pdf-create .table-layout .img-wrap .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pdf-create .table-layout .img-wrap .img:nth-child(4n) {
  margin-right: 0;
}

.pdf-create .table-layout th .dummy {
  visibility: hidden;
}

.pdf-create .info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #595959;
  padding: 1rem;
  margin-top: 2px;
}

.pdf-create .info-wrap .licence {
  font-size: 1.2rem;
}

.pdf-create .info-wrap .company {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 1rem;
}

.pdf-create .info-wrap .address {
  font-size: 14px;
  font-weight: bold;
  padding-top: 0.5rem;
}

.pdf-create .info-wrap .time {
  font-size: 1.2rem;
  padding-top: 0.5rem;
}

.pdf-create .info-wrap .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.pdf-create .info-wrap .qr {
  width: 8rem;
}

.pdf-create .info-wrap .tel {
  font-size: 2rem;
  font-weight: bold;
  padding-right: 5rem;
}

.pdf-create .info-wrap .fax {
  padding-top: 1rem;
}

/*  */
.c-card .checkpoint {
  background-color: transparent;
  width: 10rem;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .c-card .checkpoint {
    width: 8rem;
    right: -1rem;
  }
}

.sub-archive-proprty .sub-archive__colL {
  margin-top: 1rem;
}

.sub-archive-proprty .sub-archive__colR {
  /*   margin-top: 8rem; */
}

.sub-archive-proprty__category .sub-archive__colL {
  /*   margin-top: 0; */
}

@media (min-width: 768px) {
  /* .sub-archive-proprty .sub-archive__box{
		display: block;
	} */
  /*   .category .sub-archive-proprty .sub-archive__box {
    display: grid;
	  grid-template-columns: 80% 20%;
	  gap: 2rem;
  } */

  .sub-archive-proprty .sub-archive__top {
    /*     display: flex; */
    /* flex-direction: row; */
  }

  .sub-archive-proprty .cat-wrap02 {
    /* border: 5px solid #f679a1; */
    margin-top: 0;
  }

  .sub-archive-proprty .sub-archive__colL {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .sub-archive-proprty .cat-wrap {
    /* width: 48%; */
  }

  .sub-archive-proprty .sub-archive__colR {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .sub-archive-proprty .sub-archive__container {
    margin-top: 3.9rem;
  }
}

.sub-single-property .sub-single__title-area .checkpoint {
  position: absolute;
  top: -2rem;
  right: 0;
  background-color: transparent;
  width: 10rem;
  padding: 0;
}

.property-slider__dots {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
}

.property-slider__dots li {
  width: calc(100% / 5);
  flex: 0 0 auto;
  height: 100px;
}

.property-slider__dots li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-slider {
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 8rem;
}

.thumbnail-slider img {
  width: 100%;
  /* サムネイルの幅 */
  cursor: pointer;
  /* カーソルのスタイル */
  opacity: 0.5;
}

.thumbnail-slider .slick-slide {
  height: 100px;
}

.slick-slide.slick-current.slick-active img {
  opacity: 1;
}

.archive-inner {
  /*   display: grid;
  grid-template-columns: 80% 20%;
  gap: 2rem; */
}

.representative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  align-items: center;
  margin-top: 4rem;
}

.representative-grid h2 {
  font-size: 3rem;
  color: #414042;
  font-weight: 600;
  margin-top: 4rem;
  text-align: right;
}

.profile {
  margin-top: 3rem;
  text-align: left;
}

.profile h4 {
  width: 11rem;
  font-size: 2rem;
  color: var(--color-orange);
  font-weight: 600;
}

.profile p {
  line-height: 1.5;
  margin-top: 1.5rem;
}

.representative-grid-text {
  line-height: 1.5;
}

.representative-text {
  line-height: 1.7;
  padding: 3rem;
  background-color: #f9f6f9;
  margin-top: 2rem;
}

.print,
.print-title {
  display: none;
}

.footer_top {
  background: var(--color-orange);
  background-size: cover;
  background-position: center;
  position: relative;
  background-blend-mode: lighten;
  padding: 3rem 0;
  height: 100%;
  position: relative;
}

.footer_cta_img,
.contact_cta_img {
  max-width: 1120px;
  margin: 0 auto 5rem;
  transition: all 0.3s;
  padding-top: 6rem;
}

.footer_cta_img:hover,
.contact_cta_img:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.sub-service__text-ttl {
  font-weight: 600;
  color: var(--color-orange);
  font-size: 16px;
}

.baseball-img {
  margin-top: 4rem;
}

.baseball-text {
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-top: 4rem;
  color: var(--color-orange);
}

.manager {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: #fefefe;
  margin-top: 4rem;
  padding-right: 3rem;
}

.manager-text {
  line-height: 1.5;
}

.manager-text h3 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff7ed;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--color-orange);
}

.message {
  padding: 4rem 3rem;
  background: #fefefe;
  text-align: center;
  margin-top: 6rem;
}

.message h3 {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--color-orange);
  border-bottom: 4px solid #fff7ed;
  display: inline-block;
  padding: 0 10px 1rem;
  line-height: 1.5;
}

.message p {
  margin-top: 2rem;
  font-weight: 600;
  line-height: 1.5;
  font-size: 2rem;
}

.c-heading-center .c-heading01 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.c-heading-center {
  text-align: center;
  padding-top: 6rem;
}

.sale-feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background-color: #f9f9f9;
  margin-top: 3rem;
}

.sale-feature div {
  padding: 2rem;
  text-align: center;
  flex: 0 0 32%;
  background-color: #fefefe;
  box-shadow: 8px 8px 16px 0 rgba(160, 74, 195, 0.03);
}

.sale-feature h4 {
  margin-top: 2rem;
  font-weight: 600;
  color: var(--color-orange);
  font-size: 2rem;
}

.sale-feature p {
  text-align: left;
  margin-top: 1rem;
  line-height: 1.5;
}

.p-buying-sec02 {
  background: #f9f9f9;
  padding: 6rem 0 6rem;
  margin-top: 6rem;
  text-align: center;
}

.p-buying-sec02-text {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.3;
  color: var(--color-orange);
  text-align: center;
  padding: 0 10px 7px;
  display: inline-block;
  background-image: linear-gradient(135deg, var(--color-orange) 0%, #fff7ed 100%);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  /* 下線の太さ */
  background-position: bottom;
  /* 下線の位置 */
}

.p-company-sec01 {
  padding-bottom: 6rem;
  padding-top: 6rem;

  .page__map {
    margin-top: 5rem;
  }
}

.single-post .sub-single-property {
  padding-bottom: 6rem;
}

.sub-single-news {
  padding-bottom: 6rem;
}

.l-page-cover__ttl {
  color: #fefefe;
  font-size:7vw;
  line-height: 1.5;
  font-weight: bold;
  padding: 10px;
  font-family: "Lexend", "Noto Sans JP", serif;
  @media screen and (max-width: 767px) {
    font-size: 30px;
  }
}

.l-page-cover__ttl span {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Noto Sans JP", serif;
  margin-left: 2rem;
}

.l-page-cover::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.footer-contact__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact__left,
.footer-contact__right {
  width: 100%;
}

.footer-contact__right iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.footer_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 95rem;
  margin: 2rem auto;
  align-items: center;
  padding: 5rem;
  background-color: #fefefe;
}

.footer-contact .left__txt span {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-orange);
  display: block;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.footer-contact .left__txt,
.footer-contact .left__tel {
  padding-top: 0;
}

.footer-contact__inner {
  max-width: 100rem;
}

.home-mv__catch img {
  max-width: 50vw;
}

@media only screen and (max-width: 767px) {
  .sub-single-property .sub-single__title-area .checkpoint {
    width: 5rem;
    top: -7vw;
  }

  .sub-single-property .property-slider__dots li {
    width: calc(100% / 4);
  }

  .archive-inner {
    display: flex;
    flex-direction: column;
  }

  .c-heading01 {
    font-size: 4rem;
    text-align: center;
  }

  .baseball-text {
    text-align: left;
  }

  .manager {
    grid-template-columns: 1fr;
    padding: 2rem;
    padding-bottom: 3rem;
  }

  .manager-text h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .message {
    padding: 2rem;
  }

  .message h3 {
    font-size: 2rem;
  }

  .message p {
    font-size: 16px;
    text-align: left;
  }

  .-management-works {
    padding: 6rem 0 0rem 0 !important;
    margin-bottom: 2rem;
  }

  .c-heading-center .c-heading01::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .p-buying-sec02-text {
    font-size: 2rem;
    line-height: 1.5;
  }

  .sale-feature {
    display: block;
  }

  .sale-feature div:not(:first-of-type) {
    margin-top: 2rem;
  }

  .representative-grid {
    grid-template-columns: 1fr;
  }

  .representative-grid h2 {
    font-size: 2rem;
  }

  .representative-grid-text {
    margin-top: 1rem;
  }

  .profile p {
    margin-top: 1rem;
  }

  .representative-text {
    padding: 15px;
  }

  .footer_cta_img,
  .contact_cta_img {
    margin-top: 2rem;
    padding: 10px;
  }

  .home-mv {
    padding-top: 14vw;
  }

  .nav-drawer__link {
    text-align: left;
    position: relative;
    line-height: 1;
    border-bottom: 1px solid #fff7ed;
}

  .nav-drawer__link::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%) rotate(315deg);
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
  }

  .l-page-cover__ttl span {
    font-size: 3rem;

    @media screen and (max-width: 767px) {
      font-size: 18px;
    }
  }

  .footer_grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }

  .footer-contact .left__txt span {
    font-size: 3rem;
  }

  .footer-contact__inner {
    padding-bottom: 8rem;
  }

  .home-mv__catch img {
    max-width: 84vw;
  }

  .home-mv__text {
    /* top: 50.6%; */
  }

  .sub-archive-proprty .sub-archive__colL {
    margin-top: 0;
  }

  .category .sub-archive__box {
    padding-top: 0;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    background: #fefefe;
  }
}

/*header*/


@media screen and (max-width: 767px) {
  .sp_hedersns {
    width: 3rem;
    right: 18%;
    position: absolute;
  }

  .sp_cta {
    position: fixed;
    width: 100%;
    display: block;
    height: 55px;
    bottom: 0;
    z-index: 2;
    background: #d4567a;
    display: flex;
    align-items: center;
    z-index: 11;
    border-top: 2px solid #fefefe;
  }

  .sp_cta a {
    display: block;
    height: 100%;
    text-align: center;
    width: 50%;
    font-size: 16px;
    padding: 18px 0 10px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #fefefe;
    background: var(--color-orange);
    position: relative;
  }

  .sp_cta a::before {
    position: absolute;
    content: "";
    background-image: url(../img/common/tel-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 1.8rem;
    left: 2rem;
    width: 2rem;
    height: 2rem;
  }

  .sp_cta a span {
    font-weight: 700;
  }

  .sp_cta a:last-child {
    background: #414042;
    border-left: 2px solid #fefefe;
  }

  .sp_cta a:last-child::before {
    position: absolute;
    content: "";
    background-image: url(../img/common/icon_mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    top: 1.5rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

/*footer*/
.footer__link img {
  width: 40px;
}

.footer_text {
  /* font-weight: 500; */
  color: #414042;
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.7;
  font-size: 14px;
  padding: 0 5vw;
  text-align: center;
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  max-width: 860px;
  margin: 45px auto 0;
}

.footer_flex .left,
.footer_flex .right {
  width: calc((100% - 30px) / 2);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.footer_flex .tel {
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--primary-color);
  padding-left: 4.3rem;
  background: url(../img/common/tel-color.svg) no-repeat left 10% top 1.5rem / 3rem auto;
  transition: 0.3s;
  line-height: 1.1;
}

.tel_text {
  margin-bottom: 6px;
  margin: 1rem auto;
  text-align: center;
  line-height: 1.5;
}

.tel_link img {
  width: 3vw;
}

.tel__link {
  color: #fefefe;
  font-weight: 700;
  font-size: 5rem;
}

.tel_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
}

.footer_flex .tel_text .text01 {
  font-size: 15px;
  margin-right: 0px;
  border: 1px solid #fff7ed;
  padding: 0px 3px;
}

.footer_flex .mail {
  display: block;
  background: #fefefe;
  color: var(--color-yellow);
  width: 330px;
  max-width: 100%;
  border-radius: 50px;
  text-align: center;
  padding: 25px 10px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.btn::before,
.btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
}

.footer_flex .mail span {
  padding-left: 0;
  position: relative;
}

.footer_flex {
  .mail {
    &:hover {
      span {
        color: #fefefe;
      }
    }

    &::after {
      border: 1px solid #fefefe;
      border-radius: 50px;
    }
  }
}

/* .footer_flex .mail span::after, .footer_flex .mail span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
} */
.footer_flex .mail span::before {
  background: url(../img/common/mail_blue.svg) no-repeat center / contain;
  opacity: 0;
}

.footer_flex .left {
  padding: 0;
  /* display: flex; */
  gap: 0rem;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  align-content: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  border: 5px solid #f679a1;
}

.footer_flex .fax,
.footer_flex .mail-adress {
  color: #414042;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 1rem;
}

.left_top {
  font-size: 2rem;
}

.footer-left_ttl {
  font-size: 2rem;
  /* margin-bottom: 1rem; */
}

.footer-left_ttl span {
  font-weight: 700;
  font-size: 100%;
  /* color: #f06e17; */
}

.left_bottom img {
  width: 50px;
  margin: 0 auto;
  margin-top: 0;
}

.left_bottom p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.map {
  width: 100%;
  margin: 0 auto;
}

iframe {
  height: 24rem;
  width: 100%;
  border-radius: 6px;
}

.footer-left_ttl {
  position: relative;
  display: block;
  margin: 20px 0;
  padding: 10px 60px;
  min-width: 120px;
  max-width: 100%;
  color: #fefefe;
  font-size: 2.4rem;
  background: #fff7ed;
  border-radius: 10px;
}

.footer-left_ttl:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff7ed;
}

.footer-left_ttl p {
  margin: 0;
  padding: 0;
}

.footer-left_text span {
  font-size: 130%;
  font-weight: 700;
}

.left_bottom a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  background: #fefefe;
  border: 2px solid #fff7ed;
  border-radius: 5px;
  padding: 10px;
  color: #fff7ed;
  margin-top: 0;
  transform: scale(1);
  transition-duration: .3s;
}

.left_bottom a:hover {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 0.6;
  transform: scale(0.95);
  transition-duration: .3s;
}

.left_bottom a p {
  margin-top: 0;
}

.footer_flex .tel_text .text02 {
  color: #fefefe;
}

@media screen and (min-width: 768px) {
  .footer_flex .tel_text .text01 {
    font-size: 10px;
  }

  .footer_flex .tel_text .text02 {
    font-size: 18px !important;
  }

  .btn::before,
  .btn::after {
    -webkit-transition: all .3s;
    transition: all .3s;
  }
}

@media screen and (max-width: 767px) {

  .footer__item:last-of-type img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer_text {
    margin-top: 30px;
    font-size: 100%;
  }

  .tel__link {
    font-size: 3rem;
  }

  .tel_link img {
    width: 6vw;
  }

  .tel_text {
    margin: 0 auto;
    margin-bottom: 3px;
    margin-top: 14px;
  }

  .footer_flex {
    flex-direction: column;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .footer-left_ttl {
    margin: 20px 20px;
    padding: 10px 60px;
    font-size: 1.8rem;
  }
}

@media (min-width: 1168px) {
  .tel_text {
    margin-bottom: 6px !important;
  }
}

/*下層ページ*/


/*illust*/
.illust_deco {
  position: absolute;
  top: 0;
  width: 210px;
}

.illust_deco.-right {
  right: 0;
}

.illust_deco.-left {
  left: 0;
}

.illust_deco.-deco01 {
  right: 0;
  z-index: 0;
  width: 100%;
}

.illust_deco.-bottom.-deco01 {
  position: absolute;
  top: 90%;
}

@media only screen and (max-width: 767px) {
  .c-table01 {
    font-size: 4vw;
  }

  .p-home-sec03 .home-shop__text {
    -webkit-clip-path: none;
  }

  .illust_deco.-bottom.-deco01 {
    position: absolute;
    top: 97%;
    z-index: 0;
    width: 500px;
    left: 0;
  }

  .p-home-sec03 {
    position: relative;
    z-index: 3;
  }
}

/*----company 会社概要----*/
.sub-shop.sub-bg.p-company-sec01 .map {
  max-width: 100%;
}

.sub-shop.sub-bg.p-company-sec01 .map iframe {
  max-height: 30rem;
  width: 100%;
  border-radius: 0;
}

.c-heading03.u-mb30.-center {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
}

p.c-text span {
  display: inline-block;
  /* background: #ffaad2; */
  color: #ff4747;
  font-size: 2rem;
  font-weight: 600;
}

.u-mb30 {
  font-weight: 600;
}

.single .print {
  display: block;
}

.single .print {
  display: block;
}

.page-id-9 .l-page-subWrapper {
  padding-bottom: 5rem;
}

.sale-bnr_img {
  max-width: 800px;
  margin: 0 auto 5rem;
}

.footer_link {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 45px auto 3rem;

  @media screen and (max-width: 768px) {
    display: flex;
    justify-content: center;
    gap: 2rem;

    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
  }

  a {
    background-color: #fefefe;
    border-radius: 10px;
    width: 400px;
    height: 84px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 768px) {
      width: 340px;

      @media screen and (max-width: 767px) {
        width: 100%;
        height: auto;
      }

    }


    img {
      width: 220px;

    }

    +a {
      img {
        width: 131px;
      }
    }
  }

}

.footer_link a:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.tab-nav {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.tab-button {
  padding: 15px 20px;
  margin: 0 5px;
  border: none;
  background-color: #f9f9f9;
  cursor: pointer;
  width: 50%;
  color: var(--color-orange);
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.3s;
  border-radius: 5px;
}

.tab-button:hover {
  opacity: 0.7;
}

.tab-button.active {
  background-color: var(--color-orange);
  color: #fefefe;
  
}

.tab-content {
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
}

.tab-content.active {
  opacity: 1;
  display: block;
}

.tab-content .sub-bg {
  padding-top: 4rem;
}

.column .c-card__body {
  padding-top: 1rem;
}

.column .c-tag {
  background: var(--color-orange);
}

@media screen and (max-width: 767px) {
  .p-flow-sec02 .c-text {
    padding-top: 0;
  }

  .c-heading03.u-mb30.-center {
    font-size: 2rem;
  }

  .c-news__ttl {
    font-size: 14px;
  }

  .sale-bnr_img {
    margin: 0 auto 0;
    padding: 10px;
  }

  .footer_link {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 15px;
  }

  .footer_flex .left {
    padding-top: 0;
  }

  .tab-button {
    font-size: 16px;
  }
}

.sub-archive-assessment .c-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
  box-shadow: none;
  border-top: 1px solid var(--color-orange);
}

.sub-archive-assessment .sub-archive__container {
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}

.sub-archive-assessment .c-card__img-wrap img {
  max-height: 100%;
}

.sub-archive-assessment .c-card .address {
  text-align: left;
  font-size: 2rem;
}

.sub-archive-assessment .c-card .row {
  padding: 1rem 0;
}

.sub-archive-assessment .arch-text {
  margin-top: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-archive-assessment .c-card__body {
  padding-top: 15px;
}

.sub-archive-assessment .c-card .btn.-color {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.sub-archive-assessment .c-card:hover {
  opacity: 0.7;
}

.sub-single-assessment .info .table02 .row {
  display: block;
  border: none !important;
  text-align: center;
}

.sub-single-assessment .info .table02 .row .head {
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  background: #f9f9f9;
  color: var(--color-orange);
}

.sub-single-assessment .info .table02 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.sub-single-assessment .info .table02 .row .body {
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #e2e2e2;
  border-top: none;
  height: 6.5rem;
}

.assessment-table02 {
  margin-top: 3rem;
}

.assessment-table02__text {
  line-height: 1.5;
  margin-top: 1rem;
  font-size: 15px;
}

.sub-single-assessment .sub-single__btn-group {
  margin-bottom: 6rem;
}

.assessment-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.sub-single-assessment .property-slider,
.sub-single-assessment .thumbnail-slider {
  width: 50%;
}

.sub-single-assessment .property-slider__img-wrap {
  margin-bottom: 0;
  padding-top: 30rem;
}

.sub-single-assessment .info .table01 {
  display: block;
}

.sub-single-assessment .info {
  width: 100%;
}

.sub-single-assessment .info .table01 .row {
  width: 100%;
}

.sub-single-assessment .sub-single__main {
  border-top: none;
}

.sub-single-assessment .sub-single__title-area {
  border-bottom: 1px solid var(--color-orange);
}

.sub-single-assessment .sub-single__main p {
  background-color: #fefefe;
}

.sub-archive-assessment .sub-archive__box {
  display: grid;
  grid-template-columns: 19% 78%;
  gap: 3rem;
}

.searchandfilter li {
  display: block;
}

.sub-archive-assessment .sub-archive__category-name {
  font-weight: bold;
  color: #fefefe;
  background: var(--color-orange);
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  text-align: center;
}

.sub-archive-assessment .sub-archive__select-container {
  display: block;
  padding: 0 1rem 2rem 1rem;
  border: 2px solid var(--color-orange);
}

.sub-archive-assessment .sub-archive__select-container label {
  display: block;
  padding: 10px;
  border-top: 1px solid #e5e5e5;
}

.sub-archive-assessment .sub-archive__select-container label:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.assessment__cat-name {
  font-weight: bold;
  color: var(--color-orange);
  margin: 1.5rem 0 1rem;
  display: inline-block;
  border-top: none !important;
}

.assessment-cat__btn {
  color: #fefefe;
  background: var(--color-orange);
  font-weight: bold;
  padding: 10px 2rem;
  margin-top: 2rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sub-single-assessment .info .table02 {
    grid-template-columns: 1fr 1fr;
  }

  .sub-archive-assessment .c-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .assessment-grid {
    display: block;
  }

  .sub-single-assessment .property-slider {
    width: 100%;
    margin-top: 3rem;
  }

  .sub-single-assessment .property-slider__arw {
    top: 40%;
  }

  .sub-archive-assessment .sub-archive__box {
    grid-template-columns: 1fr;
  }

  .assessment__cat-form {
    display: grid;
    grid-template-columns: 30% 30% 38%;
    gap: 4px;
  }

  .sub-archive-assessment .cat-wrap.cat-wrap01 {
    width: 100%;
  }

  .assessment-cat__btn {
    width: 100%;
    margin-top: 1rem;
  }

  .sub-archive-assessment .sub-archive__select-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .sub-archive__category-name {
    display: none;
  }

  .assessment__toggle-btn {
    padding: 10px 1rem;
    text-align: center;
    background: var(--color-orange);
    color: #fefefe;
    font-weight: bold;
    width: 100%;
  }

  .sub-archive-assessment .sub-archive__container {
    margin-top: 3vw;
    grid-template-columns: 1fr;
  }

  .sub-single-assessment .info .table02 .row .body {
    height: 4.5rem;
  }
}

/* 初期状態では非表示 */
.sub-archive__select-container {
      /* max-height: 0; */
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    will-change: max-height, opacity, transform;
}

/* openクラスが追加されたときのスタイル */
.sub-archive__select-container.open {
  max-height: 1000px;
  /* 高さは必要に応じて調整。 */
  opacity: 1;
  transform: scaleY(1);
}

.post-type-archive-column .sub-archive__select-container {
  max-height: 1000px;
  opacity: 1;
  transform: scaleY(1);
}

.sub-single img {
  width: 100%;
}

.sub-single li {
  list-style: disc;
}

.sub-single__main h2 {
  font-size: 28px;
  background: var(--color-orange);
  color: #fefefe;
  font-weight: bold;
  padding: 1rem 2rem;
}

.sub-single__main h3 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 4px solid var(--color-orange);
  color: var(--color-orange);
  padding-bottom: 1rem;
  line-height: 1.5;
}

.sub-single__main h4 {
  border-left: 4px solid var(--color-orange);
  font-weight: bold;
  font-size: 20px;
  color: var(--color-orange);
  background: #f9f9f9;
  padding: 5px 2rem;
  width: 100%;
}

.sub-single__main h5 {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-orange);
}

.wp-block-list {
  background: #f9f9f9;
}

.sub-archive-assessment .sub-archive__top {
  display: block;
}

.sub-single__main p {
  font-size: 15px;
}

.assessment__cat-btn {
  position: relative;
  padding-right: 20px;
}

.assessment__cat-btn::after {
  content: "▼";
  position: absolute;
  right: 7px;
  top: 47%;
  transform: translateY(-50%);
  font-size: 10px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .sub-single__main h2 {
    font-size: 22px;
    padding-left: 1rem;
  }

  .sub-single-assessment .info .table02 .row .head,
  .sub-single-assessment .info .table02 .row .body {
    font-size: 16px;
    padding: 10px;
  }

  .sub-single__main h4 {
    padding-left: 1rem;
  }

  .sub-single__main h4 {
    font-size: 22px;
  }

  .sub-archive-assessment .sub-archive__select-container label {
    padding-right: 0;
    padding-left: 0;
  }

  #assessmentDropdown {
    padding: 0 !important;
  }

  .home-column {
    margin-top: 0;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 1270px) {
  .header__tel {
    font-size: 2rem;
  }

  .header__link {
    font-size: 1.2vw;
  }

}

.p-home-aboutus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.p-home-aboutus {
  background-image: url(../img/home/aboutus-bg.jpg);
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 7.5rem;
  margin-top: 6rem;
  background-size: cover;
  background-position: center;
}

.p-home-aboutus p {
  line-height: 2;
  margin-top: 3rem;
  text-align: left;
}

.p-home-aboutus .batch {
  max-width: 380px;
  margin: auto;
  margin-top: 2rem;
}

.status-sold,
.status-sale {
  padding: 1rem;
  background: #1E1E1E;
  color: #fefefe;
  font-weight: 600;
  text-align: center;
  display: block;
}

.status-sale {
  background: var(--color-orange);
}

.slider_item .slick-slide {
  margin-right: 35px;
}

.slider_item .slick-list {
  margin-right: -35px;
}

.slick-next,
.slick-prev {
  position: relative;
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  height: 15px;
  width: 15px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  content: '→';
  font-family: 'slick';
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  color: var(--color-orange);
  z-index: 10;
  font-size: 45px;
  position: absolute;
}

.slick-prev:before {
  content: '←';
}

.slick-next {
  right: 10%;
}

.slick-prev {
  left: 9%;
}

.item_group .tags {
  color: #fefefe;
  background: var(--color-orange);
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-top: 15px;
}

.item_group .name {
  font-weight: 600;
  font-size: 18px;
  margin-top: 15px;
}

.item_group .slider_item {
  margin-top: 4rem;
}

.assess-btn {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.p-home-assess {
  padding-top: 6rem;
  padding-bottom: 10rem;

  .slider_item {
    li {
      a {
        img {
          aspect-ratio: 3 / 2;
        }
      }
    }
  }
}

.p-home-flow {
  padding-top: 10rem;
  padding-bottom: 3.5rem;
  background-image: url(../img/home/flow-bg.jpg);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.p-home-flow-txt {
  max-width: 100rem;
  margin: 4rem auto 3rem;
  line-height: 2;
  padding: 0 15px;
  text-align: center;
}

.p-home-flow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: center;
}

.p-home-flow__grid h3 {
  font-weight: 900;
  font-size: 25px;
}

.p-home-flow__grid h3 span {
  font-weight: 900;
  font-size: 31px;
}

.p-home-flow__grid h4 {
  color: #fefefe;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-orange);
  padding: 2.2rem;
  margin-top: 15px;
}

.flow {
  margin-top: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 25% 75%;
  height: 7rem;
  background: #fefefe;
  border: 1px solid var(--color-orange);
}

.step div {
  background: var(--color-orange);
  color: #fefefe;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step div span {
  font-size: 26px;
  font-weight: 600;
  /*padding-left: 5px;*/
  margin-bottom: 6px;
}

.step p {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  font-size: 18px;
  font-weight: 600;
}

.flow .arrow {
  width: 38px;
  height: 38px;
  margin: 7px auto 10px;
}

.selling .p-home-flow__grid h4 {
  background: var(--color-yellow);
}

.selling .step div {
  background: #A19276;
}

.selling .step {
  border: 1px solid var(--color-yellow);
}

.p-home-flow__grid .selling h4 {
  background: var(--color-orange);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
}

.p-home-company {
  padding-top: 7rem;
  padding-bottom: 10rem;
}

.company-grid p {
  margin-top: 3rem;
  line-height: 2;
  max-width: 538px;
  width: 100%;
}

.company-btn {
  margin-top: 2rem;

  @media screen and (max-width: 767px) {
    display: flex;
    justify-content: center;
  }
}



.news-inner {
  display: grid;
  grid-template-columns: 20% 78%;
  max-width: 95rem;
  margin: auto;
  gap: 2rem;
}

.p-home-news {
  padding: 6rem 15px 8rem;
  background: #f9f9f9;
}

.news-btn a {
  max-width: 188px;
  width: 100%;
  padding: 1.5rem;
  margin-top: 4rem;
}

.insta-ttl {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.insta-ttl img {
  width: 64px;
  height: 64px;
}

.insta-ttl h2 {
  font-size: 34px;
}

.insta-ttl p {
  font-size: 20px;
  line-height: 1.5;
}

.p-home-instagram {
  padding: 6rem 15px 10rem;
}

.footer_top .c-heading01,
.footer_top .c-heading01 span {
  color: #fefefe;
}
.footer_top .c-heading01 {
  font-size: 5rem;
  @media screen and (max-width: 767px){
    font-size: 10vw;
  }
}

.footer_txt {
  color: #fefefe;
  /* margin-top: 3rem; */
  line-height: 1.5;
  text-align: center;
  padding: 0 15px;
}

.sub-archive-news__wrapper .c-news__body {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.overview {
  background: #f9f9f9;
  padding-bottom: 8rem;
}

.company-table {
  margin-top: 4rem;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.directions-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.directions-grid figure {
  position: relative;
}

.directions-grid figure::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -31px;
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid var(--color-orange);
}

.direction {
  padding: 6rem 15px 5rem;
}

.directions-grid {
  margin-top: 6rem;
}

.greet-logo {
  max-width: 400px;
  margin: auto;
  margin-bottom: 2rem;
}

.sale-flow .step {
  grid-template-columns: 10% 90%;
}

.sale-flow .step p {
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  line-height: 1.5;
  align-items: flex-start;
  font-size: 2.4rem;
}

.sale-flow .step p span {
  font-size: 16px;
}

.sale-flow .step {
  height: auto;
  border-radius: 5px;
}

.sale-flow .step div {
  font-size: 2vw;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem 0 0 0.5rem;
}

.sale-flow .step div span {
  font-size: 36px;
}

.sale-about .about_pic img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.property-btn {
  text-align: center;
}

.property-btn a {
  margin: 0 5px 1rem;
}

.property-btn a.no-active {
  background: #fefefe;
  color: var(--color-orange);
}

#tab2 .sub-contact__item dt {
  width: 23.3rem;
}

.privacy-policy {
  height: 200px;
  max-width: 90rem;
  width: 100%;
  padding: 0 2em 2em 1em;
  border: 2px solid #9da3a7;
  overflow-y: scroll;
  text-align: left;
  font-size: 14px;
  background-color: #fefefe;
  color: #414042;
  margin: 6rem auto 10rem;
}

.privacy-policy__head {
  margin-top: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}

.privacy-policy p {
  line-height: 1.5;
}

.sub-archive-proprty .sub-archive__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-id-2929 .sub-archive-proprty .sub-archive__box {
  grid-template-columns: 1fr;
}

.page-id-2929 .sub-archive__container {
  grid-template-columns: repeat(4, 1fr);
}

.sub-archive-proprty .sub-archive__select-container {
  max-height: none;
  overflow: visible;
  opacity: 1;
}

.sub-archive-proprty .sub-archive__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 3rem;
  background: #f9f9f9;
  border-radius: 5px;
}

.sub-archive-proprty .sub-archive__category-name {
  background: #fefefe;
  font-size: 2.4rem;
  color: var(--color-orange);
}

.sub-archive-proprty .cat-wrap02 .sub-archive__category-name {
  color: var(--color-orange);
}

.sub-archive-proprty .c-card:hover {
  opacity: 0.7;
}

.c-card:hover .btn.-color {
  color: var(--color-orange);
  background: #fefefe;
}

a.home-mv__slide {
  transition: all 0.3s;
}

a.home-mv__slide:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1060px) {
  .slider_item .slick-slide {
    margin-right: 20px;
  }

  .slider_item .slick-list {
    margin-right: -20px;
  }
}

@media screen and (max-width: 767px) {
  .p-home-aboutus__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .aboutus-img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .p-home-aboutus {
    padding-top: 6rem;
  }

  .p-home-flow__grid {
    grid-template-columns: 1fr;
  }

  .step div span {
    font-size: 23px;
    padding-left: 2px;
  }

  .step p {
    text-align: left;
    line-height: 1.5;
  }

  .flow .arrow {
    width: 30px;
    height: 30px;
    margin: 5px auto;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 15px;
  }

  .p-home-company {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }

  .company-grid p {
    margin-top: 2rem;
  }

  .home-column .home-news__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .news-inner {
    grid-template-columns: 1fr;
  }

  .c-news__body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-btn a {
    margin-top: 1rem;
  }

  .p-home-news {
    padding: 4rem 15px 5rem;
  }

  .insta-ttl img {
    width: 48px;
    height: 48px;
  }

  .insta-ttl h2 {
    font-size: 26px;
  }

  .insta-ttl p {
    font-size: 16px;
  }

  .p-home-instagram {
    padding: 4rem 15px 5rem;
  }

  .footer_flex {
    margin-top: 3rem;
    gap: 1rem;
  }

  .footer_flex .mail {
    padding: 20px 10px;
  }

  .footer_link {
    grid-template-columns: 1fr;
  }

  .footer__item a {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sub-archive__container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .slick-prev {
    left: 4%;
  }

  .overview {
    padding-top: 2rem;
    margin-top: 5rem;
  }

  .directions-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 4rem;
    gap: 2rem;
  }

  .directions-grid figure::after {
    right: -19px;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid var(--color-orange);
  }

  .direction {
    padding-bottom: 3rem;
  }

  .assess-btn {
    margin-top: 4rem;
  }

  .p-home-assess {
    padding: 4rem 0 6rem;
  }

  .p-home-flow {
    padding-top: 6rem;
    padding-bottom: 1.5rem;
  }

  .c-heading-center .c-heading01 {
    text-align: center;
  }

  .aboutBox:nth-child(odd) .about_ttl::after {
    opacity: 0.1;
    top: -3rem;
    width: 17rem;
    height: 17rem;
  }

  .aboutBox:nth-child(even) .about_ttl::after {
    opacity: 0.1;
    left: auto;
    right: 0;
    top: -2rem;
    width: 15rem;
    height: 15rem;
  }

  .p-home-sec02 {
    padding-bottom: 9rem;
  }

  /*
  .sale-flow .step {
    grid-template-columns: 1fr;
  }
  */
  .sale-flow .step {
    grid-template-columns: 18% 82%;
  }

  .sale-flow .step div {
    font-size: 23px;
    padding: 3px 15px;
  }

  .sale-flow .step div span {
    font-size: 30px;
  }

  .sale-flow .step p {
    font-size: 2rem;
  }

  .footer__insta {
    margin-top: 2rem;
  }

  .footer__insta img {
    margin: auto;
  }

  .footer__list {
    gap: 1rem;
  }

  .home-news .inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .sub-archive-proprty .sub-archive__box {
    display: flex;
    flex-direction: column;
  }

  .sub-archive-proprty .sub-archive__category-name {
    display: block;
  }

  .sub-archive-proprty .sub-archive__select-container {
    max-height: none;
    overflow: visible;
    opacity: 1;
  }

  .aboutWrap {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .aboutBox:nth-child(odd) .about_text {
    padding-right: 0;
  }

  .aboutBox:nth-child(even) .about_ttl {
    padding-left: 0;
  }

  .aboutBox:nth-child(even) .about_text {
    padding-left: 0;
  }

  .tab-content .sub-bg {
    padding-top: 2rem;
  }

  .wpcf7-list-item {
    padding-bottom: 1rem;
  }

  .privacy-policy {
    margin-top: 0;
    margin-bottom: 5rem;
  }

  .sub-contact__pp {
    padding: 0 15px;
  }

  .nav-drawer__banner {
    max-width: 300px;
    margin: 7vw auto 0;
  }

  .sub-archive-proprty .sub-archive__top {
    grid-template-columns: 1fr;
    padding: 3rem 20px;
  }

  .sub-archive-proprty .cat-wrap ul {
    padding: 0;
    padding-top: 1rem;
    gap: 1rem;
  }

  .sub-archive-proprty .cat-wrap ul li a {
    padding: 3rem 0;
    font-size: 1.8rem;
  }

  .sub-archive-proprty .cat-wrap ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-archive-proprty .sub-archive__category-name {
    font-size: 2rem;
  }

  .c-news__link {
    gap: 1rem;
  }

  .c-news__img {
    width: 40%;
  }
}

h3.p-sec01-contents__tit.-laundry {
  text-align: center;
  color: #fefefe;
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  background-color: var(--color-blue);
  border-radius: 30px;
  padding: 6px 10px;
  margin: 6rem 0 0;
}

.home {
  .p-about {
    padding: 90px 0;
    @media screen and (max-width: 767px){
      padding: 6rem 0;
    }
    .p-about-box {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      @media screen and (max-width: 768px){
        flex-direction: column;
        padding: 0 20px 30px;
        background-color: #fefefeBF5;
        border-radius: 20px;
        gap: 0;
      }
      .p-about-box__textArea {
        background-color: #f9f9f9;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-left: 11%;
        margin-top: 40px;
        width: 72%;
        padding-bottom: 100px;

        @media screen and (max-width: 768px) {
          padding-left: 0;
          width: 100%;
          border-radius: 20px;
          padding: 0 20px;
          display: contents;
          background-color: transparent;
        }

        .tit {
          color: #fff7ed;
          font-size: 86px;
          font-weight: 600;
          line-height: 1.5;
          margin-top: -65px;
          text-transform: capitalize;
          @media screen and (max-width: 768px){
            font-size: 43px;
            margin-top: -30px;
            order: 0;
          }
        }

        .theme {
          margin-top: 5px;
          font-size: 32px;
          font-weight: bold;
          line-height: 1.3;
          margin-bottom: 29px;
          @media screen and (max-width: 768px){
            font-size: 20px;
            margin-bottom: 1rem;
          }
        }

        .c-textA {
          max-width: 560px;
          @media screen and (max-width: 767px){
            position: relative;
            z-index: 3;
          }
        }
      }

      .p-about-box__imageArea {
        margin-left: -19%;
        position: relative;
        width: 40%;
        @media screen and (max-width: 768px){
          width: 100%;
          margin-left: 0;
          margin-top: 2rem;
          order: 2;
        }
        .object {
          position: absolute;

          &.object--01 {
            top: 10px;
            left: -100px;
            width: 38%;
          }

          &.object--02 {
            bottom: -100px;
            right: 0;
            width: 49%;
          }
        }
      }

    }
  }

  .p-service {
    position: relative;
    padding: 63px 0 100px;
    position: relative;

    &::before {
      position: absolute;
      top: 0;
      z-index: 0;
      content: '';
      background: url(../img/home/top_service_bgup.png) no-repeat;
      /* background-position: top center; */
      background-size: 100%;
      width: 100%;
      height: 22%;
    }

    &::after {
      position: absolute;
      bottom: 0;
      z-index: 0;
      content: '';
      background: url(../img/home/top_service_bglow.png) no-repeat;
      /* background-position: bottom center; */
      background-size: 100%;
      width: 100%;
      height: 27%;
      @media screen and (max-width: 767px){
        height: 5%;
        display: none;
      }
    }

    .p-service-catArea {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
      @media screen and (max-width: 768px){
        gap: 15px;
        @media screen and (max-width: 767px){
          grid-template-columns: repeat(1, 1fr);
          gap: 40px;
        }
      }
      
      .p-service-catArea__item {
        background-color: #fff7ed;
        border: 1px solid #fff7ed;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0 0 15px;
        transition: all .4s;
        
        &:last-child {
          background-color: #fff7ed;
          border: 1px solid #fff7ed;
          &:hover {
            background-color: #fefefe;
            .titArea {
              color: #fff7ed;
            }
          }
        }
        &:hover {
          background-color: #fefefe;
          .titArea {
            color: #fff7ed;
          }
        }
        .icon {
          margin-top: -30px;
        }

        .titArea {
          color: #fefefe;
          display: flex;
          flex-direction: column;
          align-items: center;
          @media screen and (max-width: 768px){
            text-align: center;
          }
          .en {
            font-size: 30px;
            font-weight: 500;
            line-height: 1.5;
          }

          .jp {
            font-size: 20px;
            font-weight: 500;
            line-height: 1.5;
          }
        }
      }
    }

    .p-service-contents {
      position: relative;
      z-index: 2;
      margin-top: 60px;

      .p-service-contents__item {
        display: flex;
        gap: 40px;

        @media screen and (max-width: 767px) {
          flex-direction: column;
        }

        +.p-service-contents__item {
          margin-top: 48px;
          @media screen and (max-width: 767px){
            margin-top: 80px;
          }
        }

        &:nth-child(even) {
          display: flex;
          flex-direction: row-reverse;

          @media screen and (max-width: 767px) {
            flex-direction: column;
          }
        }

        &:last-child {
          .textArea {
            .titArea {
              .text {
                .en {
                  color: #fff7ed;
                }
              }
            }
          }
        }

        .imageArea {
          border-radius: 10px;
          overflow: hidden;
          width: 50%;
          flex-shrink: 0;

          @media screen and (max-width: 767px) {
            width: 100%;
          }
        }

        .textArea {

          .titArea {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;

            .icon {
              width: 60px;
              @media screen and (max-width: 767px){
                width: 50px;
              }
            }

            .text {
              display: flex;
              flex-direction: column;
              align-items: flex-start;

              .en {
                color: #fff7ed;
                font-size: 30px;
                font-weight: 500;
                line-height: 1.5;
                @media screen and (max-width: 767px){
                  font-size: 26px;
                }
              }

              .jp {
                font-size: 20px;
                font-weight: 500;
                line-height: 1.5;
                @media screen and (max-width: 767px){
                  font-size: 18px;
                }
              }
            }
          }

          .button {
            display: flex;
            justify-content: center;
            margin-top: 60px;
            @media screen and (max-width: 767px){
              margin-top: 40px;
            }
          }
        }
      }
    }

    .slider2 {
      position: relative;
      z-index: 2;
      margin-top: 70px;

      .slick-list {
        .slick-track {
          .slick-slide {
            margin: 0 12px;

            &:nth-child(even) {
              margin-top: 30px;
            }

            img {
              width: 100%;
              height: auto;
              aspect-ratio: 229 / 306;
              border-radius: 10px;
              object-fit: cover;
            }
          }
        }
      }
    }
  }

  .p-company {
    padding: 70px 0 77px;
    .c-titA {
      position: relative;
      z-index: 4;
    }
    .p-company-box {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 41px;
      margin-top: 40px;
      @media screen and (max-width: 767px){
        flex-direction: column;
      }
      .p-company-box__object {
        position: absolute;

        &.p-company-box__object--01 {
          width: 254px;
          top: -100px;
          left: 0;
          @media screen and (max-width: 767px){
            width: 100px;
          }
        }

        &.p-company-box__object--02 {
          width: 239px;
          top: -100px;
          right: 0;
          @media screen and (max-width: 767px){
            width: 100px;
          }
        }
      }

      .p-company-box__imageArea {
        flex-shrink: 0;
        width: 50%;
        position: relative;
        z-index: 2;

        @media screen and (max-width: 767px) {
          width: 100%;
        }
      }

      .p-company-box__textArea {
        position: relative;
        z-index: 2;

        .theme {
          text-align: center;
          color: #fff7ed;
          font-size: 30px;
          font-weight: bold;
          line-height: 1.5;
          margin-bottom: 10px;
          @media screen and (max-width: 767px){
            font-size: 23px;
          }
        }

        .button {
          margin-top: 20px;
        }
      }
    }
  }
}

.sub {
  &.service {
    .p-managementBox {
      display: flex;
      align-items: center;
      gap: 40px;
      @media screen and (max-width: 767px){
        flex-direction: column;
      }
      .p-managementBox__imageArea {
        width: 50%;
        flex-shrink: 0;
        @media screen and (max-width: 767px){
          width: 100%;
        }
      }
      .p-managementBox__textArea {
        .theme {
          color: var(--color-orange);
          font-size: 30px;
          font-weight: 500;
          line-height: 1.2;
          margin-bottom: 20px;
          @media screen and (max-width: 767px){
            font-size: 22px;
          }
        }

      }
    }
    .p-rental {
      padding: 60px 0;
      background-color: #fefefeBF5;
      .p-rental-contents {
        margin-top: 100px;
        .p-rental-contents__tab {
          .swiper-wrapper {
            .swiper-slide {

              .tabBtn {
                background-color: #F9DAC4;
                color: #414042;
                border-top-left-radius: 10px;
                border-top-right-radius: 10px;
                padding: 15px 10px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 18px;
                font-weight: bold;
                line-height: 1.2;
                width: 100%;
                @media screen and (max-width: 767px){
                  font-size: 13px;
                }
              }

              &.swiper-slide-thumb-active {
                .tabBtn {
                  background-color: var(--color-orange);
                  color: #fefefe;
                }
              }
            }
          }
        }

        .p-rental-contents__tab-contents {
          .swiper-wrapper {
            .swiper-slide {
              .rentalFlowContents {
                background-color: #fefefe;
                padding: 57px 60px;
                border-top: 3px solid var(--color-orange);
                @media screen and (max-width: 767px){
                  padding: 30px 20px;
                }
                .rentalFlowContentsList {
                  .listItem {
                    position: relative;
                    border: 2px solid var(--color-orange);
                    border-radius: 10px;
                    + .listItem {
                      margin-top: 76px;
                      &::before {
                        position: absolute;
                        top: -68px;
                        left: 50%;
                        transform: translateX(-50%);
                        content: '';
                        background: url(../img/sub/service/icon_flowArrow.svg);
                        background-size: 60px;
                        width: 60px;
                        height: 59px;
                      }
                    }
                    .titArea {
                      padding: 14px 32px 15px;
                      border-top-left-radius: 7px;
                      border-top-right-radius: 7px;
                      background-color: var(--color-orange);
                      color: #fefefe;
                      @media screen and (max-width: 767px){
                        padding: 10px;
                      }
                    }
                    .contentsArea {
                      padding: 30px;
                      background-color: #fefefe;
                      
                      border-bottom-right-radius: 10px;
                      border-bottom-left-radius: 10px;
                      @media screen and (max-width: 767px){
                        padding: 20px 10px;
                      }
                      &.contentsArea--caution {
                        padding-top: 0;
                      }
                      .contentsAreaMessage {
                        margin-top: 19px;
                        margin-bottom: 19px;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.3;
                        text-align: center;
                      }
                      .boxArea {
                        &.boxArea--two {
                          display: grid;
                          grid-template-columns: repeat(2,1fr);
                          gap: 10px;
                          @media screen and (max-width: 767px){
                            grid-template-columns: repeat(1,1fr);
                          }
                        }
                        .boxAreaInner {
                          background-color: #fefefe7EC;
                          padding: 19px 30px;
                          @media screen and (max-width: 767px){
                            padding: 15px 10px;
                          }
                        }
                        .boxItem {
                          background-color: #fefefe7EC;
                          padding: 19px 30px;
                          @media screen and (max-width: 767px){
                            padding: 15px 10px;
                          }
                          .caution {
                            margin-top: 10px;
                            font-size: 15px;
                            line-height: 1.2;
                          }
                        }
                        .boxTit {
                          display: flex;
                          align-items: center;
                          gap: 20px;
                          margin-bottom: 10px;
                          @media screen and (max-width: 767px){
                            gap: 10px;
                          }
                          .icon {
                            width: 30px;
                          }
                          .text {
                            font-size: 20px;
                            font-weight: 500;
                            color: var(--color-orange);
                            @media screen and (max-width: 767px){
                              font-size: 18px;
                            }
                          }
                        }
                        .boxList {
                          .boxListItem {
                            display: flex;
                            align-items: flex-start;
                            gap: 10px;
                            + .boxListItem {
                              margin-top: 5px;
                            }
                            .icon {
                              width: 18px;
                            }
                            .text {
                              font-size: 15px;
                              font-weight: 400;
                              line-height: 1.5;
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
      .p-rental-owner {
        margin-top: 96px;
        .p-rental-owner__list {
          margin-top: 57px;
          display: grid;
          grid-template-columns: repeat(3,1fr);
          column-gap: 29px;
          row-gap: 67px;
          @media screen and (max-width: 767px){
            grid-template-columns: repeat(1,1fr);
            margin-top: 40px;
          }
          .listItem {
            .imageArea {
              position: relative;
              .num {
                position: absolute;
                z-index: 3;
                top: -25px;
                left: 0;
                font-size: 45px;
                font-weight: 500;
                line-height: 1.2;
                color: var(--color-orange);
              }
              .image {
                img {
                  aspect-ratio: 3 / 2;
                  border-radius: 10px;
                }
              }
            }
            .textArea {
              margin-top: 22px;
              .tit {
                color: var(--color-orange);
                font-size: 20px;
                font-weight: 500;
                line-height: 1.5;
                margin-bottom: 9px;
              }
            }
          }
        }
      }
    }
    .p-garden {
      padding: 104px 0 60px;
      .p-garden-box {
        display: flex;
        gap: 48px;
        margin-top: 40px;
        @media screen and (max-width: 767px){
          flex-direction: column;
          gap: 30px;
        }
        .p-garden-box__imageArea {
          width: 50%;
          flex-shrink: 0;
          @media screen and (max-width: 767px){
            width: 100%;
          }
        }
        .p-garden-box__textArea {
          .tit {
            color: var(--color-green);
            font-size: 30px;
            font-weight: 500;
            line-height: 1.5;
            margin-bottom: 17px;
            @media screen and (max-width: 767px){
              font-size: 24px;
            }
          }

        }
      }
      .p-garden-contents {
        margin-top: 55px;
        .p-garden-contents__box {
          margin-top: 29px;
          display: flex;
          gap: 26px;
          @media screen and (max-width: 767px){
            flex-direction: column;
          }
          .boxItem {
            .imageArea {
              border-radius: 10px;
              overflow: hidden;
            }
            .textArea {
              margin-top: 14px;
              .tit {
                font-size: 20px;
                font-weight: 500;
                line-height: 1.5;
                color: var(--color-green);
                margin-bottom: 9px;
              }
              .itemList {
                .listItem {
                  display: flex;
                  align-items: flex-start;
                  gap: 10px;
                  img {
                    width: 17px;
                    margin-top: 4px;
                  }
                  .text {
                    font-size: 15px;
                    line-height: 1.7;
                  }
                }
              }
            }
          }
        }
        .p-garden-contents__imTx {
          margin-top: 25px;
          .imTxBox {
            display: flex;
            align-items: center;
            gap: 48px;
            @media screen and (max-width: 767px){
              flex-direction: column;
            }
            + .imTxBox {
              margin-top: 20px;
            }
            &:nth-child(even) {
              flex-direction: row-reverse;
              @media screen and (max-width: 767px){
                flex-direction: column;
              }
            }
            .imageArea {
              border-radius: 10px;
              overflow: hidden;
              flex-shrink: 0;
              width: 50%;
              @media screen and (max-width: 767px){
                width: 100%;
              }
            }
            .textArea {
              .theme {
                color: var(--color-green);
                font-size: 30px;
                font-weight: 500;
                line-height: 1.5;
                margin-bottom: 19px;
                @media screen and (max-width: 767px){
                  font-size: 20px;
                }
              }
            }
          }
        }
      }
    }
    .p-owner {
      background-color: #E6F3EB;
      padding: 49px 0 100px;
      .p-owner-contentsAreaMessage {
        margin-top: 28px;
        margin-bottom: 28px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
      }
      .p-owner-box {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 28px;
        @media screen and (max-width: 767px){
          grid-template-columns: repeat(1,1fr);
        }
        .p-owner-box__item {
          background-color: #fefefe;
          border-radius: 10px;
          padding: 35px 20px 62px;
          @media screen and (max-width: 767px){
            padding: 20px 15px;
          }
          .iconArea {
            min-height: 100px;
            text-align: center;
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            img {
              width: 115px;
            }
          }
          .themeArea {
            background-color: #E6F3EB;
            padding: 3px 0 6px;
            text-align: center;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.2;
          }
          .itemList {
            margin-top: 19px;
            .listItem {
              display: flex;
              align-items: flex-start;
              gap: 9px;
              img {
                width: 17px;
                margin-top: 4px;
              }
              .text {
                font-size: 15px;
                line-height: 1.7;
              }
            }
          }
        }
      }
    }
  }
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.img-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.img-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);

  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-modal.is-active .img-modal__overlay {
  opacity: 1;
}
.img-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  max-width: 90vw;
  max-height: 90vh;
  width: 70vw;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.img-modal.is-active .img-modal__content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.img-modal__content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}
a.wp-block-button__link {
  background: #414042;
  color: #fefefe;
}
.name {
  display: block;
  font-weight: bold;
  margin-top: 1rem;
  text-align: right;
}
.greeting-img {
  margin-top: 0;
}
.greeting-img img{
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
}
.p-company-sec02 {
  background: #f9f9f9;
  padding: 8rem 0;
}
.staff-name {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.8rem;
}
.grid-col02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-col02_text {
  line-height: 2;
}
.staff-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.p-company-sec02__lead {
  text-align: center;
  line-height: 2;
  margin-bottom: 2rem;
}
.p-company-sec03 {
  padding: 8rem 0;
}


.page__map {
  margin-top: 4rem;
}
.assessment-card {
  border: 1px solid #fff7ed;
  background: #fff;
  padding: 24px;
}

.assessment-card__head {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
  align-items: center;
}

.assessment-card__thumb {
  width: 150px;
  position: relative;
}
.assessment-card__thumb img {
  aspect-ratio: 1;
  object-fit: cover;
}

.assessment-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #414042;
  color: #fff;
  font-size: 1.3rem;
  padding: 6px 12px;
}

.assessment-card__img {
  background: #eef2f6;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assessment-card__body {
  flex: 1;
}
.assessment-card__area {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.assessment-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2rem;
}
.price-label {
  font-size: 1.4rem;
}
.price-main {
  font-size: 3.2rem;
  font-weight: 700;
}
.price-unit {
  font-size: 1.6rem;
}
.assessment-card__spec {
  display: flex;
  gap: 12px;
}
.spec-item {
  border: 1px solid #fff7ed;
  padding: 6px 10px;
  font-size: 1.4rem;
}
.assessment-card__tags {
  display: flex;
  gap: 12px;
  padding: 16px 0;
}

.assessment-card__tags li {
  font-size: 1.3rem;
  color: #5a6b80;
}

.assessment-card__note {
  background: #f9f9f9;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.note-ttl {
  font-weight: 600;
  min-width: 60px;
  color: #fff7ed;
  line-height: 1.5;
}

.note-text {
  flex: 1;
  line-height: 1.5;
}
.track01 {
  padding: 8rem 0;
}
.center-txt {
  text-align: center;
  line-height: 2;
  margin-top: 2rem;
}
.track-grid {
  margin-top: 4rem;
  align-items: normal;
}
.sales-card {
  display: flex;
  border: 1px solid #fff7ed;
  background: #fefefe;
  align-items: center;
}

.sales-card__thumb {
  width: 260px;
  background: #e9eef4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sales-card__thumb img {
  aspect-ratio: 1;
  object-fit: cover;
}

.sales-card__body {
  flex: 1;
  padding: 2rem;
}

.sales-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sales-card__label {
  background: #414042;
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 10px;
  white-space: nowrap;
}

.sales-card__area {
  font-size: 1.5rem;
  font-weight: 600;
}

.sales-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.price-main {
  font-size: 3.2rem;
  font-weight: 700;
}

.price-unit {
  font-size: 1.6rem;
}

.sales-card__period {
  background: #E6E7E8;
  padding: 12px 6px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.period-label {
  font-size: 1.4rem;
}

.period-value {
  font-size: 1.6rem;
  font-weight: 600;
}
.track02 {
  padding: 8rem 0;
  background: #f9f9f9;
}
.voice-card {
  border: 1px solid #fff7ed;
  background: #fefefe;
  padding: 24px;
}

.voice-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6edf5;
  position: relative;
}
.voice-card__meta {
  flex: 1;
}
.voice-card__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.voice-card__area {
  font-size: 1.4rem;
  color: #414042;
  opacity: 0.7;
  margin-top: 1rem;
  padding-left: 2rem;
  position: relative;
}
.voice-card__area::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/sub/track-record/map.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.voice-card__body {
  padding-top: 16px;
}
.voice-card__body p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #414042;
}
.voice-card__ico {
  width: 100px;
}
.voice-card__ico img {
  aspect-ratio: 1;
  object-fit: cover;
}
.track03 {
  padding: 8rem 0 13rem;
}
.worries-list {
  margin: 2rem 0;
}
.worries-list li {
  position: relative;
  padding: 6px 1rem 6px 5rem;
  background: #ebebeb;
  border-radius: 4px;
  max-width: 40rem;
	font-weight: bold;
}
.sale02 .c-heading01 span {
	font-size: 2.6rem;
}
.worries-list li + li {
  margin-top: 1rem;
}
.worries-list li::before {
  content: "";
  width: 27px;
  height: 27px;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  background-image: url(../img/sub/sale/worry-ico.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.sale01 {
  padding: 8rem 0;
}
.worries-grid + .worries-grid {
  margin-top: 6rem;
}
.worries-grid img{
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}
.worries-catch {
  display: block;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.worries-list02 {
  margin: 1rem 0;
}
.worries-list02 li{
  font-weight: bold;
  position: relative;
  padding-left: 2rem;
  line-height: 2;
}
.worries-list02 li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff7ed;
}
.sale02 {
  padding: 8rem 0;
  background: #f9f9f9;
}
.sale03 {
  padding: 8rem 0;
}
.sale02-grid {
  gap: 7rem;
}
.sale02-grid img{
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 5px;
}
.feature-item {
  position: relative;
  border-radius: 5px;
  background: #f9f9f9;
  border: 1px solid #fff7ed;
  padding: 3rem;
}
.feature-img {
  position: relative;
}
.feature-num {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
  font-size: 6rem;
  text-transform: uppercase;
  opacity: 0.7;
}
.sale03-grid {
  gap: 6rem;
}
.feature-ttl {
  text-align: center;
  color: #414042;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
}
.feature-body {
  padding: 3rem 0;
}
.feature-txt {
  line-height: 2;
  margin-top: 2rem;
  text-align: center;
}
.feature-img img {
  aspect-ratio: 3 / 2;
  border-radius: 5px;
} 
.sale04-catch {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 5rem;
}
.sale04-img {
  max-width: 60rem;
  margin: auto;
}
.c-accordion {
  border-bottom: 1px solid #9da3a7;
}

.c-accordion__title {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 4vw 6vw 4vw 0;
  position: relative;
  font-size: 3.5vw;
  line-height: 1.75;
}

.c-accordion__title span {
  width: 8vw;
  height: 8vw;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(232, 114, 154)),
    to(rgb(180, 55, 90))
  );
  background: linear-gradient(
    90deg,
    rgb(232, 114, 154) 0%,
    rgb(180, 55, 90) 100%
  );
  color: #fff;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 3vw;
}

.c-accordion__title::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #141414;
  border-right: 2px solid #141414;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 42%;
  right: 2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-accordion__title.open::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.c-accordion__content {
  display: none;
  background-color: #fdf2f6;
  padding: 3vw;
}

.c-accordion__content p {
  font-size: 3vw;
  line-height: 1.75;
}
.accordion .js-accordion-title {
  background-color: #d4567a;
  cursor: pointer;
  padding: 15px 20px 23px;
  position: relative;
  font-size: 3rem;
  margin-top: 2rem;
  position: relative;
  border-radius: 5px;
  color: #fff;
}
.accordion .js-accordion-title::before {
  content: "Q";
  position: absolute;
  display: block;
  width: 2.8rem; /* 画像の幅 */
  height: 4rem; /* 画像の高さ */
  background-size: cover;
  vertical-align: middle;
  left: 2.2rem;
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
  font-family: "Lexend", "Noto Sans JP", serif;
  line-height: 3rem;
}
.accordion .js-accordion-title span {
  font-size: 16px;
  margin-left: 5rem;
  margin-bottom: 5px;
}

.accordion .js-accordion-title i.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease-in-out;
}

.accordion .js-accordion-title.open i.arrow {
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-content {
  display: none;
  background-color: #f9f9f9;
  padding: 25px 20px;
  font-size: 16px;
  position: relative;
  padding-left: 7rem;
  line-height: 1.5;
}
.accordion-content::before {
  content: "A";
  position: absolute;
  display: block;
  width: 3.3rem; /* 画像の幅 */
  height: 3.5rem; /* 画像の高さ */
  background-size: cover;
  margin-right: 5px;
  margin-top: 3px;
  vertical-align: middle;
  left: 2.3rem;
  top: 1rem;
    font-size: 4rem;
  color: #d4567a;
  font-weight: bold;
  font-family: "Lexend", "Noto Sans JP", serif;
}
.faq .inner {
  max-width: 1000px;
}
.faq {
  padding: 8rem 0;
  background: #f9f9f9;
}
.faq-txt {
  line-height: 2;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  
}
.faq-cta-grid {
  padding: 1rem 3rem 0;
  border: 1px solid #fff7ed;
  border-radius: 5px;
  grid-template-columns: 1fr 2.5fr;
  gap: 0;
  max-width: 70rem;
  margin: 4rem auto 0;
}
.p-about-btn {
  margin-top: 2rem;
}
.p-about-btn a{
  margin-left: 0;
}
.p-about-box__imageArea img{
  border-radius: 5px;
}
.reason {
  padding: 6rem 0;
}
.reason-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: normal;
}
.reason-item {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 5px;
}
.reason-ttl {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
  position: relative;
}
.reason-ttl::before {
  content: "";
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff7ed;
}
.reason-txt {
  line-height: 2;
  text-align: center;
  margin-top: 2rem;
}
.reason-ico {
  max-width: 16rem;
  margin: auto;
}
.sell-style-img img{
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
}
.sell-style .c-heading01 {
  font-size: 7rem;
}
.sell-style {
  padding: 8rem 0;
  background: #f9f9f9;
  position: relative;
}
.sell-style-list {
  margin: 2rem 0;
}
.sell-style-list li {
  padding-left: 3rem;
  position: relative;
  margin-top: 2rem;
  font-weight: bold;
}
.sell-style-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/common/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-style-btn {
  margin-top: 3rem;
}
.p-style-btn a {
  margin-left: 0;
}
.sell-style::before {
  content: "";
  width: 20vw;
  height: 20vw;
  position: absolute;
  bottom: 0;
  right: 2%;
	background-image: url(../img/home/shinchan01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.works {
  padding: 8rem 0;
}
.works-sub-ttl {
  border-bottom: 1px solid #fff7ed;
  padding-bottom: 1rem;
  color: #fff;
  text-align: center;
  padding: 6px;
  background: #A19276;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
  margin-top: 4rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
}
.p-works-btn {
  margin-top: 4rem;
}
.p-works-btn a {
  max-width: 38rem;
}
.home-ginowan {
  padding: 8rem 0;
  position: relative;
}
.home-ginowan::before {
  content: "";
  width: 100vw;
  height: 40rem;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/home/ginowan-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 60%;
  opacity: 0.4;
}
.home-ginowan-catch {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.home-ginowan-txt {
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.home-ginowan-area h3 {
  background: #A19276;
  color: #fff;
  padding: 6px 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
}
.p-ginowan-btn {
  margin-top: 3rem;
}
.p-ginowan-btn a {
  margin-left: 0;
  max-width: 30rem;
}
.home-sns {
  padding: 8rem 0;
  background: #f9f9f9;
}
.sns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.sns-grid a {
  transition: all 0.3s;
}
.sns-grid a:hover {
  opacity: 0.7;
}
.gallery_slider .slick-slide {
  margin: 0 12px;
}
.gallery_slider .slick-slide:nth-child(even) {
  margin-top: 3rem;
}
.footer-banner {
  max-width: 90rem;
  margin: 4rem auto;
  padding: 0 15px;
}
.footer-banner a {
  transition: all 0.3s;
}
.footer-banner a:hover {
  opacity: 0.7;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gallery_slider .slick-slide img {
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
}
.footer-sns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	max-width: 20rem;
	margin-top: 2rem;
	padding-left: 20px;
}
.footer-sns a {
	transition: all 0.3s;
}
.footer-sns a:hover {
	opacity: 0.7;
}
.floating-sns {
  position: fixed;
  top: 40%;
  right: 0;
  transform: translatey(-50%);
  z-index: 999;
}
.floating-sns a {
	margin-top: 1rem;
	max-width: 120px;
	transition: all 0.3s;
}
.floating-sns a:hover {
	opacity: 0.7;
}
/* mq */

@media screen and (max-width: 767px) {
	.grid-col02 {
	grid-template-columns: 1fr;
	gap: 1rem;
	}
  .accordion .js-accordion-title {
    margin-top: 1rem;
    padding: 4px 25px 15px 18px;
  }
  .accordion .js-accordion-title span {
    margin-left: 2rem;
  }
  .accordion .js-accordion-title::before {
    font-size: 2.5rem;
    left: 1.2rem;
    top: 1rem;
  }
  .accordion .js-accordion-title i.arrow {
    right: 11px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .accordion .js-accordion-title span {
    font-size: 14px;
  }
  .accordion {
    margin-top: 3rem;
  }
    .accordion-content {
    padding: 15px 10px;
    padding-left: 4rem;
    font-size: 15px;
  }
  .accordion-content::before {
    font-size: 2.4rem;
    left: 1.2rem;
  }
  .p-about-btn {
    margin-top: 1rem;
  }
  .reason {
    padding: 6rem 0;
  }
  .sell-style .c-heading01 {
    font-size: 4rem;
  }
  .sell-style-img img {
    aspect-ratio: 3 / 2;
  }
  .sell-style::before {
    width: 35vw;
    height: 46vw;
  }
  .sell-style,
  .works {
    padding: 6rem 0;
  }
  .works-sub-ttl {
    font-size: 2rem;
  }
  .assessment-card__thumb {
    width: 100px;
  }
  .assessment-card {
    padding: 14px;
  }
  .assessment-card__head {
    gap: 14px;
    align-items: flex-start;
  }
  .price-main {
    font-size: 3rem;
  }
  .assessment-card__note {
    padding: 1rem;
  }
  .note-ttl {
    min-width: 30px;
  }
  .sales-card__thumb {
    width: 100%;
  }
  .sales-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .sales-card__thumb img {
    aspect-ratio: 3 / 2;
  }
  .sales-card__body {
    padding: 1.6rem;
  }
  .voice-card__title {
    font-size: 1.8rem;
  }
  .voice-card {
    padding: 1.6rem;
  }
  .voice-card__ico {
    width: 80px;
  }
  .home-ginowan::before {
    width: 100%;
  }
  .home-ginowan,
  .home-sns {
    padding: 6rem 0;
  }
  .home-ginowan-catch {
    font-size: 2.2rem;
    text-align: center;
  }
  .home-ginowan-txt {
    margin: 0 0 3rem;
    line-height: 1.75;
  }
  .sns-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .footer-banner {
    margin: 3rem auto;
  }
  .footer-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .sns-grid.-nav {
    padding: 0 2rem;
    gap: 1rem;
	  grid-template-columns: repeat(3, 1fr);
	  max-width: 20rem;
	  margin: 2rem auto 0;
  }
  .l-page-cover::before {
    width: 30vw;
    height: 32vw;
    right: 0;
  }
  .l-page-cover__ttl {
    display: flex;
    flex-direction: column-reverse;
  }
  .l-page-cover__ttl span {
    margin-left: 0;
    font-size: 1.6rem;
  }
  .sale01 {
    padding: 4rem 0 6rem;
  }
  .worries-grid img {
    aspect-ratio: 3 / 2;
  }
  .worries-grid:nth-child(3) {
    display: flex;
    flex-direction: column-reverse;
  }
  .worries-catch {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .sale02,
  .sale03 {
    padding: 6rem 0;
  }
  .sale02-grid img {
    aspect-ratio: 3 / 2;
  }
  .feature-item {
    padding: 1.6rem;
  }
  .feature-num {
    font-size: 4rem;
  }
  .feature-ttl {
    font-size: 2rem;
  }
  .feature-txt {
    margin-top: 1rem;
  }
  .feature-body {
    padding: 2rem 0 0 ;
  }
  .sale04-catch {
    line-height: 1.5;
    margin-top: 2rem;
    font-size: 2rem;
  }
  .p-home-flow-txt {
    margin: 2rem 0;
  }
  .faq {
    padding: 6rem 0;
  }
  .faq-cta-grid {
    display: flex;
    flex-direction: column-reverse;
    padding: 1rem 1rem 0;
  }
  .faq-cta-grid img {
    max-width: 100px;
  }
  .faq-txt {
    font-size: 1.6rem;
  }
  .track01,
  .track02,
  .track03,
  .p-company-sec02,
  .p-company-sec03 {
    padding: 6rem 0;
  }
  .track-grid {
    margin-top: 3rem;
  }
  #greeting.section .text {
    margin-top: 2rem;
  }
  .greeting-img img {
    aspect-ratio: 3 / 2;
  }
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .staff-name {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
	.footer-sns {
		padding: 0;
		max-width: 14rem;
		gap: 1rem;
	}
	.c-textA,
	body{
		font-size: 14px;
	}
	.worries-grid {
		margin-top: 2rem;
	}
	.sale02 .c-heading01 span {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.c-heading01 {
		margin-bottom: 2rem;
	}
}


/* mq */

/* =========================
   Floating Banner
========================= */
.floating-banner{
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 150px;
  height: 150px;
  z-index: 9999;
  display: block;
}

.floating-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ホバーでちょい動く */
.floating-banner:hover{
  transform: translateY(-4px);
  transition: .2s ease;
}

/* =========================
   SPは非表示
========================= */
@media screen and (max-width: 767px){
  .floating-banner{
    display: none;
  }
}


.home {
  & .p-about {
      & .p-about-box {
          & .p-about-box__textArea {
              @media screen and (max-width: 768px) {
                  padding-left: 0;
                  width: 100%;
                  border-radius: 20px;
                  padding: 0 20px;
                  display: contents;
                  background-color: transparent;
                  display: flex;
                  flex-direction: column;
              }
          }
      }
  }
}

.home {
  & .p-about {
      & .p-about-box {
          @media screen and (max-width: 768px) {
              flex-direction: column-reverse;
              padding: 0 20px 30px;
              background-color: #fefefeBF5;
              border-radius: 20px;
              gap: 0;
              display: flex;
          }
      }
  }
}

.home {
  & .p-about {
      & .p-about-box {
          & .p-about-box__imageArea {
              & .object {
                  &.object--02 {
                    @media screen and (max-width: 768px) {

                      bottom: -25px;
                      right: 0;
                      width: 35%;
                    }
                  }
              }
          }
      }
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .p-about-box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-direction: column-reverse;
}
  .worries-list li {
    position: relative;
    padding: 6px 1rem 6px 8rem;
    background: #f9f9f9;
    border-radius: 4px;
    max-width: 80rem;
}
.worries-list {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 35rem;
  padding: 10px 24px 10px 60px;
  line-height: 1.8;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.worries-list li {
  position: relative;
  padding: 6px 1rem 6px 8rem;
  background: #f9f9f9;
  border-radius: 4px;
  max-width: 80rem;
  font-size: 2rem;
}
.p-about-box__imageArea img {
  border-radius: 5px;
  width: 80%;
}
.sales-card__thumb {
  width: 25rem;
  background: #e9eef4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about-box__imageArea {
  margin-left: 0;
  position: relative;
  width: 100%;
}
.home {
  & .p-about {
      & .p-about-box {
          .p-about-box__imageArea {
              margin-left: 0;
              position: relative;
              width: 90%;
          }
      }
  }
}
.home {
  & .p-about {
      & .p-about-box {
          & .p-about-box__imageArea {
              & .object {
                  &.object--02 {
                      bottom: -50px;
                      right: 0;
                      width: 30%;
                  }
              }
          }
      }
  }
}
.home {
  & .p-about {
      & .p-about-box {
          .p-about-box__textArea {
              background-color: #f9f9f9;
              border-top-right-radius: 20px;
              border-bottom-right-radius: 20px;
              padding-left: 11%;
              margin-top: 40px;
              width: 82%;
              padding-bottom: 100px;
          }
      }
  }
}
.page-id-3535 .worries-list {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
}

/*タブレット縦比率*/
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .worries-list li {
    position: relative;
    padding: 6px 1rem 6px 8rem;
    background: #f9f9f9;
    border-radius: 4px;
    max-width: 80rem;
}
.worries-list {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 35rem;
  padding: 10px 24px 10px 60px;
  line-height: 1.8;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.worries-list li {
  position: relative;
  padding: 6px 1rem 6px 8rem;
  background: #f9f9f9;
  border-radius: 4px;
  max-width: 80rem;
  font-size: 2rem;
}
.p-about-box__imageArea img {
  border-radius: 5px;
  width: 80%;
}
.home {
  & .p-about {
      & .p-about-box {
          .p-about-box__imageArea {
              margin-left: 0;
              position: relative;
              width: 100%;
          }
      }
  }
}
}

.home {
  & .p-about {
      & .p-about-box {
        @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
          flex-direction: column-reverse;
              padding: 0 20px 30px;
              background-color: #fefefeBF5;
              border-radius: 20px;
              gap: 0;
              display: flex;
          }
      }
  }
}


.home {
  & .p-about {
      & .p-about-box {
          & .p-about-box__textArea {
            @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
              padding-left: 0;
                  width: 100%;
                  border-radius: 20px;
                  padding: 0 20px;
                  display: contents;
                  background-color: transparent;
                  display: flex;
                  flex-direction: column;
              }
          }
      }
  }
}

.home {
  & .p-about {
      & .p-about-box {
        @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
          flex-direction: column-reverse;
              padding: 0 20px 30px;
              background-color: #fefefeBF5;
              border-radius: 20px;
              gap: 0;
              display: flex;
              margin-top: 15rem;
          }
      }
  }
}

.floating-sns {
  position: fixed;
  top: 40%;
  right: -80px;
  transform: translatey(-50%);
}
.floating-sns:hover {
  right: 0;
  transition: .3s ease-in-out;
}