@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;
}



/* --------------------------------
header
----------------------------------- */
.header-sp__top {
  height: 14vw;
}

.header-sp__logo {
  width: 60vw;
}

.header-sp .nav-drawer__list {
  color: #333;
}

.header-sp .nav-drawer__btn {
  background: var(--color-blue);
  color: #fff;
  font-weight: 500;
  width: 300px;
}

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

.header-sp .nav-drawer__time {
  color: #333;
  line-height: 1.5;
}



/* --------------------------------
c-heading
----------------------------------- */
.c-heading01 {
  color: #000;
  font-size: 9vw;
  font-weight: bold;
  line-height: 1.45;
  text-transform: capitalize;
}

.c-heading01 span {
  display: block;
  color: #000;
  font-size: 4vw;
  margin-top: 1vw;
  font-weight: 400;
}

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

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

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

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

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

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

/* --------------------------------
btn
----------------------------------- */
.btn {
  background-color: #fff;
  color: #009886;
}

.btn:hover {
  color: #fff;
}

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

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

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

/* --------------------------------
c-card
----------------------------------- */
.c-card .label {
  background-color: var(--color-blue);
  color: #fff;
}

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

/* --------------------------------
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: #009886;
  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: #fff;
  font-weight: 500;
  background-color: var(--color-blue);
}

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

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

.pagination .page-numbers.current {
  /* background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#009886),
    to(#82b31a)
  ); */
  background: var(--color-blue);
}

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

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

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

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

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

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

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

.footer-contact .left .tel__opentime span:nth-of-type(1) {
  border: 1px solid linear-gradient(135deg, var(--color-blue) 0%, #d74489 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: #EDF8FF;
  /* 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: #000;
  margin-bottom: 4rem;
  padding: 0;
}

.p-home-sec03 .home-shop__text {
  background: var(--color-blue);
  width: 100%;
  color: #fff;
  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: #fff;
}

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

.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: #d74489;
  color: #fff;
}

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

.p-management-sec .comment {
  font-size: 5vw;
  position: relative;
  color: var(--color-blue);
  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 #a3d0e4 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: #d74489;
  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: #d74489;
  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: #82b31a;
  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: #009886;
  height: 2px;
  width: 100%;
}

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

.sub-archive-proprty .cat-wrap {
  width: 100%;
  /* border: 5px solid #82b31a; */
  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-blue);
  color: #fff;
  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-blue);
}




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

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

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

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

.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: var(--color-blue);
  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: var(--color-blue);
}

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

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

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

.p-contact-sec01 .sub-contact__time span:nth-of-type(1) {
  border: 1px solid #333;
}

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

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

.p-contact-sec01 .sub-contact__submit input {
  background: #E7355C;
}

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

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

.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: #009886;
  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__link {
    color: #333;
  }

  .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: #333;
  }

  .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 {
    font-size: 4rem;
  }

  .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: #fff;
    margin-top: 0;
  }

  /*   .p-home-sec03 .home-shop__text::after {
    content: "";
    background: #009886;
  } */
  .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-blue);
    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: #009886;
  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: #000;
  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-blue);
  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-yellow);
  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-blue);
  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-blue);
}

.manager {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: #fff;
  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 #d74489;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--color-blue);
}

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

.message h3 {
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--color-blue);
  border-bottom: 4px solid #d74489;
  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: #EDF8FF;
  margin-top: 3rem;
}

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

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

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

.p-buying-sec02 {
  background: #EDF8FF;
  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-blue);
  text-align: center;
  padding: 0 10px 7px;
  display: inline-block;
  background-image: linear-gradient(135deg, var(--color-blue) 0%, #d74489 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;
}

.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: #fff;
}

.footer-contact .left__txt span {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-blue);
  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;
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  border: 1px solid var(--color-blue);
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 15px;
}

.grid-item {
  padding: 10px;
  text-align: center;
  color: var(--color-blue);
}

.baseball-member-ttl {
  font-size: 2rem;
  color: var(--color-blue);
  font-weight: 600;
  margin-top: 3rem;
  text-align: center;
}

@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: 8vw;
    text-align: center;
    margin: 0 2rem 2rem;
  }

  .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 var(--color-blue);
  }

  .nav-drawer__link::after {
    content: "";
    position: absolute;
    right: 10px;
    /* Adjust the position as needed */
    top: 50%;
    transform: translateY(-50%);
    border: solid transparent;
    border-width: 8px 0 8px 11px;
    border-left-color: currentColor;
    /* Use the current text color */
    color: var(--color-blue);
  }

  .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: #fff;
  }
}

/*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: #3e9de2;
    display: flex;
    align-items: center;
    z-index: 11;
    border-top: 2px solid #fff;
  }

  .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: #fff;
    background: var(--color-blue);
    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: #4EC1F2;
    border-left: 2px solid #fff;
  }

  .sp_cta a:last-child::before {
    position: absolute;
    content: "";
    background-image: url(../img/home/header_icon001.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: #000;
  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 10rem;
  text-align: center;
  line-height: 1.5;
}

.tel_link img {
  width: 3vw;
}

.tel__link {
  color: #fff;
  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 #d74489;
  padding: 0px 3px;
}

.footer_flex .mail {
  display: block;
  background: #fff;
  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: #fff;
      }
    }

    &::after {
      border: 1px solid #fff;
      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: #333;
  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;
}

.footer-left_ttl {
  position: relative;
  display: block;
  margin: 20px 0;
  padding: 10px 60px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 2.4rem;
  background: #d74489;
  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 #d74489;
}

.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: #fff;
  border: 2px solid #d74489;
  border-radius: 5px;
  padding: 10px;
  color: #d74489;
  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: #fff;
}

@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;
    margin: 1rem 11rem !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;
  }
}

/*----about----*/
.gallery {
  position: relative;
}

.inner.inner_gallery {
  padding-top: 6rem;
}

.gallery h2.c-heading01.c-heading01_center {
  padding-top: 0;
  text-align: left;
  font-size: 3rem;
}

img.gallery_illust {
  width: 40px;
  display: inline-block;
  margin: 0 10px 0 0;
  position: relative;
  top: 8px;
}

.inner_gallery .c-heading01 span {
  display: block;
  color: #d74489;
  font-size: 4.5vw;
  margin-top: 1vw;
  font-weight: 500;
}

.home-gallery__list {
  display: -ms-grid;
  display: grid;
  gap: 2rem 2rem;
  -ms-grid-columns: (minmax(25rem, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  margin-top: 3.9rem;
}

.home-gallery__item {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

ul.home-gallery__list img {
  border-radius: 5px;
}

.massage_img {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}

.grid-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
}

.grid-item .icon {
  width: 20px;
}

.grid-container {
  max-width: 900px;
}

.illust_deco.-deco03 {
  width: 180px;
}

@media (min-width: 768px) {
  .inner_gallery .c-heading01 span {
    font-size: 2.6rem;
    margin-top: 0.8rem;
    font-weight: 700;
    font-style: normal;
  }
}

@media screen and (max-width: 767px) {
  .home-gallery__list {
    gap: 5vw 5vw;
    -ms-grid-columns: (minmax(45%, 1fr)) [auto-fill];
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    margin-top: 8vw;
  }

  .gallery h2.c-heading01.c-heading01_center {
    text-align: center;
    font-size: 7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  img.gallery_illust {
    margin-bottom: 2rem;
  }

  .inner.inner_gallery {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .illust_deco.-deco03 {
    max-width: 100px;
    top: 80px;
  }

  .massage_img {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 2rem;
  }

  .c-heading03 {
    font-size: 1.8rem;
    padding: 1.5rem 0 1.5rem 0;
  }
}

/*----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;
}

.profile .illust_deco.-deco01 {
  right: 0;
  z-index: -1;
  width: 30%;
  opacity: 0.5;
}

.representative-ttl {
  font-size: 3.4rem;
  color: var(--color-blue);
  font-weight: 600;
  text-align: center;
  background: none;
  padding: 20px;
  margin-top: 0;
}

.representative-text {
  margin-top: 0;
}

.representative-grid h2 {
  letter-spacing: 0.05em;
}

.representative-grid h2 span {
  font-size: 70%;
  padding-right: 20px;
}

.profile {
  margin-top: 3rem;
  text-align: left;
  /*    display: flex;*/
  /*    align-items: flex-start;*/
}

/*
.profile p {
     margin-top: 0; 
}
*/

.illust_deco.-deco04 {
  right: -4%;
  top: 0%;
  width: 300px;
  z-index: -1;
  opacity: .6;
}

.representative-ttl::before {
  content: "“";
  padding-right: 10px;
}

.representative-ttl::after {
  content: "”";
  padding-left: 10px;
}

.representative-ttl span {
  font-size: 80%;
  font-weight: 600;
}

.representative-text {
  margin-top: 0;
  padding: 0 3rem 3rem;
  background-color: #f9f6f900;
}

.representative-body {
  border-radius: 10px;
  margin: 3rem 0;
  background: #EDF8FF;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .illust_deco.-deco04 {
    right: 0;
    top: 70%;
    width: 150px;
  }

  .representative-ttl {
    font-size: 7vw;
    position: relative;
    line-height: 1.4;
  }

  .representative-ttl::after {
    content: "”";
    padding-left: 10px;
    position: absolute;
    top: 10px;
    right: 8vw;
    font-size: 160%;
  }

  .representative-ttl::before {
    content: "“";
    padding-right: 10px;
    position: absolute;
    top: 10px;
    left: 8vw;
    font-size: 160%;
  }

  .representative-text {
    margin-top: 0;
    padding: 0 4vw 2rem;
    text-align: justify;
  }
}

/*売却*/
.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow07 {
  padding-left: 0;
  margin: 3rem 0 0;
}

.flow07>li {
  list-style-type: none;
  display: flex;
}

.flow07>li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07>li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: var(--color-blue);
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}

.flow07>li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid var(--color-blue);
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07>li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07>li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}

.flow07>li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: var(--color-blue);
}

.flow07>li dl dd {
  margin: 0;
}

.flow07 dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.flow_txt .list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list .icon {
  max-width: 20px;
}

.secondary {
  margin-top: 20px;
  font-size: 120%;
}

.secondary span,
.time span {
  background-color: var(--color-blue);
  padding: 4px 8px;
  margin-right: 10px;
  color: #fff;
  font-size: 80%;
}

.time {
  margin-top: 20px;
  font-size: 120%;

}

.flow_txt .list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-flow-sec02 .promise {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .flow07>li {
    list-style-type: none;
    display: flex;
  }

  .flow07>li dl {
    padding: 0 0 0 10px;
    width: calc(100% - 95px);
  }

  .flow07 dl {
    display: flex;
    gap: 20px;
    flex-direction: column-reverse;
  }

  .flow_txt .list li {
    gap: 4px;
  }

  .time,
  .secondary {
    font-size: 100%;
  }
}

.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;
}

.sub-single-property .btn.-color.print {
  color: #fff;
}

.sub-single-property .btn.-color.print:hover {
  color: #d74489;
}

.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: #fff;
    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: 294px;
      }
    }
  }

}

.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: #fff;
  cursor: pointer;
  width: 50%;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.3s;
  /* 追加: ボタンのホバー時の変化もスムーズに */
}

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

.tab-button.active {
  background-color: var(--color-blue);
  color: #fff;
}

.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-blue);
}

@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-blue);
}

.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: #EDF8FF;
  color: var(--color-blue);
}

.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-blue);
}

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

.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: #fff;
  background: var(--color-blue);
  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-blue);
}

.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-blue);
  margin: 1.5rem 0 1rem;
  display: inline-block;
  border-top: none !important;
}

.assessment-cat__btn {
  color: #fff;
  background: var(--color-blue);
  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-blue);
    color: #fff;
    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: 0;
  transform: scaleY(0.95);
  /* スケール効果でふわっと感を追加 */
  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-blue);
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
}

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

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

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

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

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

.sub-single__main p {
  font-size: 100%;
  line-height: 1.5;
}

.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;
  }
}


.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: #fff;
  font-weight: 600;
  text-align: center;
  display: block;
}

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

.home-news__btn a {
  padding: 25px 0;
  margin: 5px;
}

.home-news__btn a:nth-child(2) {
  background-color: #fff;
  color: var(--color-blue);
}

.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-blue);
  z-index: 10;
  font-size: 45px;
  position: absolute;
}

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

.slick-next {
  right: 10%;
}

.slick-prev {
  left: 9%;
}

.item_group .tags {
  color: #fff;
  background: var(--color-blue);
  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;
}

.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: #fff;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-blue);
  padding: 2.2rem;
  margin-top: 15px;
}

.flow {
  margin-top: 3rem;
}

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

.step div {
  background: var(--color-blue);
  color: #fff;
  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: var(--color-yellow);
}

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

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

.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;
  }
}

.slider2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.slider2 .slick-slide {
  margin: 0 0px;
}

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

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

.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: #fff;
}

.footer_txt {
  color: #fff;
  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: 1rem;
}

.overview {
  background: #EDF8FF;
  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-blue);
}

.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: 1rem;
}

.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: #fff;
  color: var(--color-blue);
}

#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: #fff;
  color: #141414;
  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: #FFDAC0;
}

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

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

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

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

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-blue);
  }

  .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%;
  }
}

/* mq */
h3.p-sec01-contents__tit.-laundry {
  text-align: center;
  color: #fff;
  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;
}

.p-laundry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0;
  gap: 2rem;
}

@media screen and (max-width: 767px) {
  .p-laundry-gallery {
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem 0;
    gap: 2rem;
  }

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

.home {
  .p-news {
    position: relative;
    padding: 40px 0 60px;

    .p-news__bg {
      position: absolute;
      z-index: 1;

      &.p-news__bg--01 {
        left: 0;
        top: 50px;

        @media screen and (max-width: 767px) {
          top: 0;
        }
      }

      &.p-news__bg--02 {
        right: 0;
        bottom: -80px;

        @media screen and (max-width: 767px) {
          bottom: -40px;
        }
      }

      img {
        width: 250px;

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

    .p-news-list {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 910px;
      margin: 40px auto 0;

      .p-news-list__item {
        +.p-news-list__item {
          margin-top: 27px;
        }

        .itemLink {

          border-bottom: 1px solid #C8D6DE;
          padding-bottom: 17px;

          .infoArea {
            display: flex;
            gap: 14px;

            .cat {
              background-color: #1D66A7;
              color: #fff;
              padding: 5px 10px;
              display: flex;
              justify-content: center;
              align-items: center;
              min-width: 124px;
              border-radius: 3px;
              font-size: 12px;
              line-height: 1.5;
              font-weight: bold;
            }

            .date {
              font-size: 16px;
              line-height: 1.5;
            }
          }

          .itemTit {
            margin-top: 15px;
            font-size: 16px;
            line-height: 1.5;
          }
        }
      }
    }

    .p-news__btnArea {
      margin-top: 77px;
      display: flex;
      justify-content: center;

    }
  }

  .p-greeting {
    position: relative;
    padding: 40px 0 80px;
    background-color: var(--color-gray);

    .p-greeting__bg {
      position: absolute;
      left: 0;
      bottom: -50px;

      img {
        width: 300px;

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

    .p-greeting__bgTit {
      position: relative;
      z-index: 3;

      img {
        width: 70%;
      }
    }

    .p-greeting-box {
      display: flex;
      gap: 81px;
      position: relative;
      z-index: 3;

      @media screen and (max-width: 768px) {
        gap: 40px;
      }

      @media screen and (max-width: 767px) {
        gap: 40px;
        flex-direction: column-reverse;
        padding: 0 20px;
      }

      .p-greeting-box__textArea {
        padding-left: 5%;

        @media screen and (max-width: 767px) {
          padding-left: 0;
        }

        .titArea {
          display: flex;
          flex-direction: column;
          margin-bottom: 30px;

          .theme {
            color: #1E6EB0;
            font-size: 22px;
            line-height: 1.5;
            font-weight: bold;

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

          .tit {
            margin-top: 3px;
            font-size: 32px;
            line-height: 1.5;
            font-weight: 500;

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

      }

      .p-greeting-box__imageArea {
        border-top-left-radius: 23px;
        border-bottom-left-radius: 23px;
        width: 50%;
        flex-shrink: 0;

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

        }

        img {
          width: 100%;
        }
      }
    }

    .p-greeting-btnArea {
      position: relative;
      z-index: 3;
      max-width: 1040px;
      margin: 40px auto 0;
      display: grid;
      grid-auto-flow: column;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      column-gap: 60px;
      row-gap: 20px;

      @media screen and (max-width: 768px) {
        padding: 0 20px;

        @media screen and (max-width: 767px) {
          grid-auto-flow: unset;
          grid-template-columns: auto;
          grid-template-rows: 1fr;
          padding: 0 20px;
          max-width: none;
        }
      }


      .p-greeting-btnArea__item {
        .itemLink {
          padding-bottom: 25px;
          border-bottom: 1px solid #C8D6DE;
          height: 100%;
          transition: .4s;

          &:hover {
            opacity: .7;
          }

          .titArea {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;

            .textArea {
              display: flex;
              align-items: center;
              gap: 24px;

              @media (min-width: 768px) and (max-width: 1200px) {
                gap: 10px;
              }

              .num {
                width: 64px;

                @media (min-width: 768px) and (max-width: 1200px) {
                  width: 50px;
                }

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

              .titText {
                font-size: 28px;
                line-height: 1.5;
                font-weight: 500;
                letter-spacing: .1em;

                @media (min-width: 768px) and (max-width: 1200px) {
                  letter-spacing: .1em;
                  font-size: 20px;
                }

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

                .blue {
                  color: #1D64A6;
                  font-weight: 600;
                }
              }
            }

            .icon {
              border: 1px solid #C8D6DE;
              border-radius: 50%;
              width: 36px;
              height: 36px;
              display: flex;
              justify-content: center;
              align-items: center;

              img {
                width: 7px;
              }
            }
          }

          .itemText {
            font-size: 15px;
            line-height: 1.5;
            font-weight: 500;
          }
        }
      }
    }
  }

  .p-slider {
    position: relative;
    padding: 80px 0;

    @media screen and (max-width: 767px) {
      padding: 40px 0;
    }

    .p-slider__bg {
      position: absolute;
      z-index: 1;

      &.p-slider__bg--01 {
        left: 0;
        bottom: -100px;

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

        img {
          width: 300px;

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

      &.p-slider__bg--02 {
        right: 0;
        top: 0;

        img {
          width: 250px;

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

    }

    .p-slider-slideArea {
      position: relative;
      z-index: 3;

      .slick-track {
        padding: 5px 0;
      }

      .p-slider-slideArea__item {
        border-radius: 10%;
        overflow: hidden;
        /* box-shadow: 0 0 4px #000; */
        /* box-shadow: 0 0 6px 1px #00000094; */
        margin: 0 10px;

        img {
          aspect-ratio: 1 / 1;
          object-fit: cover;
          width: 100%;
          height: 100%;
        }

        &:nth-child(2n) {
          margin-top: 50px;
        }
      }
    }
  }
}

.p-contact {
  position: relative;
  padding: 130px 0;
  background-color: var(--color-gray);
  padding: 80px 0;

  .p-contact__bg {
    position: absolute;

    &.p-contact__bg--01 {
      left: 0;
      bottom: 0;

      img {
        width: 400px;

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

    &.p-contact__bg--02 {
      top: -100px;
      right: -20px;

      img {
        width: 400px;

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

    &.p-contact__bg--03 {
      right: 0;
      bottom: 0;

      img {
        width: 250px;

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

  .p-contact-box {
    position: relative;
    z-index: 3;

    .p-contact-box__tit {
      display: flex;
      justify-content: center;

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

      img {
        width: 450px;

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

    .p-contact-box__text {
      text-align: center;
      margin-top: 1rem;
      font-size: 22px;
      font-weight: bold;
      line-height: 1.5;

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

  .p-contact-box__linkArea {
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 20px;
    padding: 34px 40px;
    justify-content: space-between;
    align-items: center;
    margin: 4rem auto 0;
    max-width: 910px;
    background-color: #fff;

    @media screen and (max-width: 767px) {
      flex-direction: column;
      margin: 3rem auto 0;
    }

    .textArea {
      flex-shrink: 0;

      @media screen and (max-width: 767px) {
        padding: 0 0 1rem;
      }

      .telArea {
        display: flex;

        .icon {
          width: 36px;
        }

        .num {
          color: #1D64A6;
          font-size: 50px;
          line-height: 1;
          font-weight: bold;

          @media (min-width: 768px) and (max-width: 1200px) {
            font-size: 38px;
          }

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

      .telText {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
        text-align: center;

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

    .btnArea {
      width: 366px;
      min-height: 74px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 23px;
      line-height: 1.5;
      font-weight: bold;
      color: #fff;
      background-color: #E7355C;
      border-radius: 50px;
      transition: .4s;

      @media (min-width: 768px) and (max-width: 1200px) {
        width: 345px;
        min-height: 60px;
      }

      @media screen and (max-width: 767px) {
        width: 100%;
        min-height: 60px;
        font-size: 18px;
      }

      &:hover {
        opacity: .7;
      }
    }
  }
}

.p-map {
  .p-map-box {
    iframe {
      width: 100%;
      aspect-ratio: 1440 / 557;

      @media screen and (max-width: 767px) {
        aspect-ratio: 5 / 3;
        height: auto;
      }
    }
  }
}

.p-property {
  background-color: #fff8ee;

  .p-home-center__boximg {
    padding-top: 15rem;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 20px #0e586d24;

    @media screen and (min-width: 767px) {
      padding-top: 30rem;
    }

    img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .p-home-center__item-wrap {
    padding-top: 5rem;
    margin-top: -5rem;

    @media screen and (max-width: 767px) {
      margin-top: -7rem;
    }

    @media screen and (min-width: 767px) {
      padding: 2rem;
      display: flex;
      justify-content: space-around;
      padding-top: 0;
      margin-top: -5rem;
      position: relative;
      z-index: 10;
    }

    .p-home-center__item {
      padding-top: 5rem;

      @media screen and (min-width: 767px) {
        width: 45rem;
        padding-top: 0;
        /*padding: 4vw;*/
      }

      @media screen and (max-width: 767px) {
        padding: 4vw;
      }

      .p-home-center__item-inner {
        background-color: #fff;
        border-radius: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding: 12vw 3vw;
        box-shadow: 0 0 20px #0e586d24;
        height: 100%;

        @media screen and (min-width: 767px) {
          padding: 3rem 5rem;
        }

        .p-home-center__item-btn {
          margin-top: auto;
        }

        .p-home-center__item-img {
          width: 124px;
          height: 124px;
          border-radius: 50%;
          overflow: hidden;
          object-fit: cover;
          font-family: "object-fit: cover;";
          background-color: var(--color-yellow);
          padding: 20px;
          display: flex;
          justify-content: center;
          align-items: center;

          img {
            width: 80px;
          }
        }

        .p-home-center__item-head {
          font-size: 6vw;
          font-weight: bold;
          padding-top: 3rem;

          @media screen and (min-width: 767px) {
            font-size: 3.5rem;
            padding-top: 3rem;
          }
        }

        .p-home-center__item-txt {
          font-size: 4vw;
          line-height: 1.7;
          padding-top: 2rem;
          margin: 1rem;
          text-align: justify;

          @media screen and (min-width: 767px) {
            font-size: 100%;
            padding-top: 2rem;
            margin-bottom: 5rem;
          }
        }
      }
    }
  }
}



.p-home-company {
  .textArea {
    padding-right: 40px;

    @media screen and (max-width: 767px) {
      padding-right: 0;
    }
  }
}

.home-column {
  .home-news__btn {
    display: flex;
    justify-content: center;
  }
}



/* よくある質問 */
.c-question {
  background-color: #ffeed4;
  padding: 8rem 0;

  .c-question-contents {
    margin-top: 40px;

    .c-question-contents__list {
      .listItem {
        border-bottom: 2px solid var(--color-yellow);
        padding-bottom: 1.56rem;

        +.listItem {
          .question {
            padding-top: 2rem;
          }
        }

        .question {
          display: flex;
          justify-content: space-between;
          align-items: center;

          &:hover {
            opacity: 1;
          }

          .title {
            font-size: 2rem;
            font-weight: bold;
            line-height: 2;
            color: var(--color-green);

            @media screen and (max-width: 767px) {
              font-size: 1.8rem;
              display: flex;
              line-height: 1.6666;
            }

            .head {
              margin-right: 1rem;
              font-weight: 700;
            }
          }

          .icon {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;

            span {
              background-color: var(--color-yellow);
              width: 2.6rem;
              height: 0.3rem;
              border-radius: 0.15rem;

              &:nth-child(2) {
                position: absolute;
                transform: rotate(270deg);
                transition: 0.4s ease;
              }
            }
          }

          &.is-open {
            .icon {
              span {
                &:nth-child(2) {
                  transform: rotate(0);
                }
              }
            }
          }
        }

        .answer {
          font-weight: bold;
          padding-top: 0.86rem;
          display: none;

          .flex {
            display: flex;

            .head {
              font-size: 2rem;
              margin-right: 1rem;
              font-weight: 700;
            }

            .text {
              font-size: 1.6rem;

              line-height: 1.9375;
            }
          }
        }
      }
    }
  }
}



.company {
  .section.bg-orange {
    margin: 5rem 0 0rem;
    border-radius: 10px;
    background: #fff2e7;
  }

  .section .section-inner {
    max-width: 1200px;
    width: 86%;
    margin: 0 auto;
    padding: 5rem 0;

    @media only screen and (max-width: 767px) {
      padding-top: 0;
      width: 90%;
    }
  }

  .section .section-lead {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;
    color: var(--color-blue);
    font-size: 3rem;

    @media screen and (max-width: 767px) {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 3rem;
      padding: 3rem 0 0rem;
    }
  }

  #greeting.section .text {
    line-height: 2;
  }

  @media screen and (min-width: 768px) {
    #greeting.section figure {
      float: right;
      /* width: 45%; */
      max-width: 300px;
      margin: -180px 0 0 50px;
    }
  }

  .p-rinen-listArea {
    margin-top: 3rem;
  }

  .p-rinen {
    .p-rinen-listArea {
      .p-rinen-listArea__list {
        .listItem {
          display: flex;
          gap: 10px;

          +.listItem {
            margin-top: 15px;
          }

          .icon {
            width: 30px;
          }

          .text {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.5;

            @media only screen and (max-width: 767px) {
              font-size: 15px;
              margin-top: 4px;
            }
          }
        }
      }
    }
  }
}

.company-grid img {
  border-radius: 0 2rem 2rem 0;

  @media screen and (max-width: 767px) {
    border-radius: 1rem;
  }
}

.text.clearfix img:before {
  content: "";
  background: #fff;
  width: 100%;
  height: 20px;
  background-image: url(../img/sub/about/about-name.png);
  position: absolute;
  z-index: 100;
}

.p-rinen-listArea {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.sub {
  &.company {
    .p-sec01 {
      padding: 80px 0;

      .p-sec01__tit {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;

        img {
          width: 80%;
          position: absolute;
          opacity: .5;
        }
      }

      .p-sec01-box {
        display: flex;
        align-items: center;
        gap: 80px;
        margin-top: 30px;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 20px;
          align-items: flex-start;
        }

        .p-sec01-box__item {
          .numArea {
            display: flex;
            align-items: center;
            gap: 10px;

            .bar {
              background-color: var(--color-blue);
              width: 18px;
              height: 5px;
            }

            .num {
              font-size: 22px;
              line-height: 1.5;
              font-weight: bold;

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

          .tit {
            margin-top: 10px;
            font-size: 2.4rem;
            line-height: 1.5;
            font-weight: bold;

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

    .p-sec02 {
      position: relative;
      padding: 40px 0 100px;
      background-color: var(--color-gray);

      .p-sec02__bg {
        position: absolute;
        z-index: 1;

        &.p-sec02__bg--01 {
          top: -50px;
          left: 0;

          img {
            width: 200px;

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

        &.p-sec02__bg--02 {
          top: -50px;
          right: 0;

          img {
            width: 300px;

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

        &.p-sec02__bg--03 {
          bottom: 0;
          left: 0;

          img {
            width: 300px;

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

        &.p-sec02__bg--04 {
          bottom: -50px;
          right: 0;

          img {
            width: 200px;

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

      .p-sec02__tit {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 40px;
        position: relative;
        z-index: 3;

        img {
          width: 60%;
          position: absolute;
          opacity: .5;
          top: 3rem;
        }
      }

      .p-sec02-box {
        display: flex;
        gap: 50px;
        margin-top: 60px;
        position: relative;
        z-index: 3;
        align-items: center;

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

        .p-sec02-box__imageArea {
          flex-shrink: 0;
          width: 28%;
          border-top-right-radius: 23px;
          border-bottom-right-radius: 23px;
          overflow: hidden;

          @media screen and (max-width: 767px) {
            width: 100%;
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
          }
        }

        .p-sec02-box__textArea {
          padding-top: 0;
          padding-right: 5%;

          @media screen and (max-width: 767px) {
            padding: 0 20px;
          }

          .tit {
            font-size: 22px;
            line-height: 1.5;
            font-weight: bold;
            color: var(--color-blue);

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

          .theme {
            font-size: 32px;
            line-height: 1.5;
            font-weight: 500;
            margin-bottom: 40px;

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

    .p-sec03 {
      padding: 40px 0 80px;
      position: relative;

      .p-sec03__bg {
        position: absolute;
        z-index: 2;

        &.p-sec03__bg--01 {
          top: 50px;
          left: 0;

          img {
            width: 300px;

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

        &.p-sec03__bg--02 {
          bottom: -100px;
          right: 0;

          img {
            width: 300px;

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

      .p-sec03__tit {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        position: relative;
        z-index: 3;

        img {
          width: 100%;
        }
      }

      .p-sec03__text {
        position: relative;
        z-index: 3;
        margin-top: 20px;
        text-align: center;
        font-size: 22px;
        line-height: 1.5;
        font-weight: bold;

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

        .blue {
          color: var(--color-blue);
          font-weight: 500;
        }
      }

      .p-sec03__mainImg {
        position: relative;
        z-index: 3;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        overflow: hidden;
        border-radius: 23px;

        img {
          width: 70%;
        }
      }

      .p-sec03-list {
        margin-top: 100px;
        position: relative;
        z-index: 3;

        @media screen and (max-width: 767px) {
          padding: 0 20px;
        }

        .p-sec03-list__item {
          display: flex;
          align-items: center;
          gap: 120px;

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

          +.p-sec03-list__item {
            margin-top: 93px;

            @media screen and (max-width: 767px) {
              margin-top: 70px;
            }
          }

          &:nth-child(odd) {
            .textArea {
              padding-left: 5%;

              @media screen and (max-width: 767px) {
                padding-left: 0;
              }
            }

            .imageArea {
              border-top-left-radius: 23px;
              border-bottom-left-radius: 23px;
            }
          }

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

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

            .textArea {
              padding-right: 5%;

              @media screen and (max-width: 767px) {
                padding-right: 0;
              }
            }

            .imageArea {
              border-top-right-radius: 23px;
              border-bottom-right-radius: 23px;
            }
          }

          .textArea {
            .theme {
              font-size: 32px;
              line-height: 1.5;
              font-weight: 500;
              color: var(--color-blue);
              margin-bottom: 20px;

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

          .imageArea {
            width: 50%;
            flex-shrink: 0;
            overflow: hidden;

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

    .p-sec04 {
      background-color: var(--color-gray);
      padding: 40px 0 80px;
      position: relative;

      .p-sec04__bg {
        position: absolute;
        z-index: 1;

        &.p-sec04__bg--01 {
          top: 0;
          right: 0;

          img {
            width: 300px;

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

        &.p-sec04__bg--02 {
          bottom: 0;
          left: 0;

          img {
            width: 300px;

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

      .p-sec04__tit {
        margin-bottom: 60px;
        z-index: 1;
        position: relative;

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

        img {
          width: 60%;
          position: absolute;
          opacity: .5;
        }
      }

      .p-sec04-tableArea {
        margin-top: 60px;
        position: relative;
        z-index: 3;

        table {
          border-collapse: collapse;
          border-top: 2px solid #D3E0ED;
          border-right: 2px solid #D3E0ED;
          width: 100%;

          tr {
            border-left: 2px solid #D3E0ED;
            border-bottom: 2px solid #D3E0ED;

            th,
            td {
              vertical-align: middle;

              @media screen and (max-width: 767px) {
                display: block;
              }
            }

            th {
              background-color: #8A98A3;
              padding: 15px 10px;
              color: #fff;
              font-size: 18px;
              font-weight: bold;
              line-height: 1.5;
              width: 250px;
              text-align: center;

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

            td {
              font-size: 16px;
              line-height: 1.5;
              font-weight: 400;
              color: #4F4F4F;
              /* padding: 150px 30px; */
              background-color: #fff;

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

  &.sellandbuy {
    .p-sec01 {
      position: relative;
      padding: 40px 0 60px;

      .p-sec01__bg {
        position: absolute;
        z-index: 1;
        right: 0;
        top: -50px;

        img {
          width: 400px;

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

      .p-sec01__tit {
        margin-bottom: 30px;

        img {
          width: 60%;
          position: absolute;
          opacity: .5;
        }
      }

      .p-sec01-question {
        position: relative;
        z-index: 3;

        .p-sec01-question__tit {
          font-size: 42px;
          line-height: 1.5;
          font-weight: bold;
          text-align: center;
          color: var(--color-blue);
          margin-bottom: 40px;

          @media (min-width: 768px) and (max-width: 1200px) {
            font-size: 30px;
          }

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

        .p-sec01-question__balloon {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          row-gap: 20px;
          column-gap: 17px;

          @media screen and (max-width: 767px) {
            grid-template-columns: repeat(1, 1fr);
            gap: 6px;
          }

          .balloonItem {
            img {
              width: 100%;
            }
          }
        }

        .p-sec01-question__box {
          margin-top: 40px;

          background-color: #EAF8FF;
          border-radius: 20px;
          padding: 40px 10px;
          font-size: 18px;
          line-height: 1.8;
          font-weight: bold;
          text-align: center;

          @media screen and (max-width: 767px) {
            font-size: 16px;
            text-align: left;
          }
        }
      }
    }

    .p-sec02 {
      background: url(../img/sub/sell/sell_contact_bg.jpg) no-repeat;
      background-size: cover;
      background-position: center;
      padding: 50px 0;

      .p-contact-box {
        position: relative;
        z-index: 3;

        .p-contact-box__tit {
          display: flex;
          justify-content: center;

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

          img {
            width: 60%;

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

        .p-contact-box__text {
          text-align: center;
          margin-top: 20px;
          font-size: 22px;
          font-weight: bold;
          line-height: 1.5;
          color: #fff;
          text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

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

      .p-contact-box__linkArea {
        position: relative;
        z-index: 3;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        border-radius: 20px;
        padding: 34px 40px;
        justify-content: space-between;
        align-items: center;
        margin: 40px auto 0;
        max-width: 910px;
        background-color: #fff;

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

        .textArea {
          .telArea {
            display: flex;

            .icon {
              width: 36px;
            }

            .num {
              color: #1D64A6;
              font-size: 5rem;
              line-height: 1;
              font-weight: bold;

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

          .telText {
            font-size: 22px;
            line-height: 1.5;
            font-weight: 500;
            text-align: center;

            @media screen and (max-width: 767px) {
              font-size: 16px;
              text-align: center;
            }
          }
        }

        .btnArea {
          width: 366px;
          min-height: 74px;
          display: flex;
          justify-content: center;
          align-items: center;
          font-size: 23px;
          line-height: 1.5;
          font-weight: bold;
          color: #fff;
          background-color: #E7355C;
          border-radius: 50px;
          transition: .4s;

          @media screen and (max-width: 767px) {
            width: 100%;
            min-height: 60px;
            font-size: 18px;
            margin: 1rem 0 0;
          }

          &:hover {
            opacity: .7;
          }
        }
      }
    }

    .p-sec03 {
      position: relative;
      padding: 80px 0;

      &.p-sec03--buy {
        .p-sec03-list {
          .p-sec03-list__item {
            border: 2px solid #0072D9;

            .textArea {
              .itemTit {
                border-bottom: 2px solid #0072D9;
                color: #0072D9;
              }
            }
          }
        }
      }

      .p-sec03__bg {
        position: absolute;
        z-index: 2;

        &.p-sec03__bg--01 {
          top: 0;
          left: 0;

          img {
            width: 450px;

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

        &.p-sec03__bg--02 {
          right: 0;
          bottom: -50px;

          img {
            width: 400px;

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

      .p-sec03__tit {
        margin-bottom: 40px;
        display: flex;
        justify-content: flex-end;

        img {
          width: 50%;
          position: absolute;
          opacity: .5;
        }
      }

      .p-sec03-list {
        position: relative;
        z-index: 3;
        margin-top: 60px;

        .p-sec03-list__item {
          background-color: #fff;
          display: flex;
          align-items: center;
          gap: 100px;
          border: 2px solid var(--color-blue);
          padding: 27px 39px;
          border-radius: 23px;

          @media (min-width: 768px) and (max-width: 1200px) {
            gap: 40px;
            padding: 20px 30px;
          }

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

          +.p-sec03-list__item {
            margin-top: 30px;
          }

          .numArea {
            flex-shrink: 0;
            width: 240px;

            @media (min-width: 768px) and (max-width: 1200px) {
              width: 160px;
            }

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

          .textArea {
            .itemTit {
              font-size: 42px;
              line-height: 1.5;
              font-weight: bold;
              padding-bottom: 20px;
              border-bottom: 2px solid var(--color-blue);
              color: var(--color-blue);

              @media (min-width: 768px) and (max-width: 1200px) {
                font-size: 24px;
              }

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

            .itemText {
              margin-top: 10px;
              font-size: 100%;
              line-height: 1.7;

            }
          }
        }
      }
    }

    .p-sec04 {
      position: relative;
      padding: 40px 0 60px;
      background-color: var(--color-gray);

      @media (min-width: 768px) and (max-width: 1200px) {
        padding: 40px 0 40px;
      }

      .p-sec04__bg {
        position: absolute;
        z-index: 1;

        &.p-sec04__bg--01 {
          top: 0;
          right: 0;

          img {
            width: 400px;

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

        &.p-sec04__bg--02 {
          top: 40%;
          left: 0;

          img {
            width: 400px;

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

        &.p-sec04__bg--03 {
          top: 50%;
          left: 0;

          img {
            width: 400px;

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

        &.p-sec04__bg--04 {
          top: 60%;
          right: 0;

          img {
            width: 400px;

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

      .p-sec04__tit {
        margin-bottom: 40px;

        img {
          width: 35%;
          position: absolute;
          opacity: .5;

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

      .p-sec04-bnr {
        display: flex;
        justify-content: center;
        margin-top: 80px;
        position: relative;
        z-index: 1;

        @media (min-width: 768px) and (max-width: 1200px) {
          margin-top: 60px;
        }

        .p-sec04-bnr__link {
          border-radius: 20px;
          width: 70%;
          display: block;
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);

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

          img {
            width: 100%;
          }
        }
      }
    }

  }
}

.c-flow {
  margin-top: 40px;
  position: relative;
  z-index: 3;

  &.c-flow--buy {
    .c-flow-list {
      .c-flow-list__item {
        .itemTit {
          color: #0072D9;
        }

        .itemBox {
          .textArea {
            .blue {
              color: #0072D9;
            }
          }
        }

        +.c-flow-list__item {
          &::before {
            background: url(../img/sub/buy/flow_arrow.svg) no-repeat;
            background-size: 59px;

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

  .c-flow-list {
    .c-flow-list__item {
      position: relative;
      box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
      background-color: #fff;
      border-radius: 20px;
      padding: 60px 35px;

      @media screen and (max-width: 767px) {
        padding: 30px 20px;
      }

      +.c-flow-list__item {
        margin-top: 35px;

        &::before {
          position: absolute;
          top: -43px;
          left: 84px;
          content: '';
          background: url(../img/sub/sell/flow_arrow.svg) no-repeat;
          background-size: 59px;
          width: 59px;
          height: 75px;

          @media screen and (max-width: 767px) {
            left: 50%;
            transform: translateX(-50%);
            background-size: 45px;
            width: 45px;
            height: 58px;
          }
        }
      }

      .itemTit {
        display: flex;
        align-items: baseline;
        color: var(--color-blue);
        font-size: 32px;
        line-height: 1.5;
        font-weight: bold;
        margin-bottom: 10px;

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

        .num {
          font-weight: 900;
        }

        .text {
          font-weight: bold;
        }
      }

      .itemBox {
        display: flex;
        align-items: center;
        gap: 20px;

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

        .imageArea {
          flex-shrink: 0;
          border-radius: 20px;
          overflow: hidden;
          width: 418px;

          @media (min-width: 768px) and (max-width: 1200px) {
            width: 250px;
          }

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

        .textArea {
          font-size: 18px;
          line-height: 1.5;
          font-weight: 400;

          @media (min-width: 768px) and (max-width: 1200px) {
            font-size: 16px;
          }

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

          .blue {
            font-weight: bold;
            color: var(--color-blue);
          }
        }
      }
    }
  }
}