@charset "UTF-8";
:root {
  --inner-scale: 1;
  --vw-base: calc(1600 / var(--inner-scale));
  --inner: 1260;
  --inner-1600: 1600px;
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: 375;
    --inner-scale: 1;
    --inner: 315;
  }
}

/* 絞り込み
------------------------------*/
.filter {
  display: flex;
  align-items: center;
  gap: 0 calc(35 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .filter {
    gap: 0 calc(15 * 100vw / var(--vw-base));
  }
}

.filter__item {
  width: 15em;
  font-size: calc(15 * 100vw / var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: #80b44b;
  border-radius: 2em;
  padding: 1.3em 2em;
  position: relative;
}
.filter__item select {
  cursor: pointer;
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 0%);
  width: 100%;
  padding-top: calc(40 * 100vw / var(--vw-base));
  opacity: 0;
}
.filter__item select:not(.act) {
  opacity: 0;
}
@media (max-width: 767px) {
  .filter__item {
    font-size: calc(12 * 100vw / var(--vw-base));
  }
}

/* ページネーション
------------------------------*/
.pagination {
  margin-top: calc(120 * 100vw / var(--vw-base)); /*  */
  display: flex;
  gap: calc(6 * 100vw / var(--vw-base));
  align-items: center;
  font-family: sans-serif;
}

.page-numbers {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 200;
  min-width: 1.4em;
  aspect-ratio: 1/1;
  line-height: 1;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.page-numbers:not(.current):not(.next):not(.prev):not(.dots)::after {
  content: ".";
  position: absolute;
  aspect-ratio: 1/1;
  font-size: 1em;
  right: -0.3em;
  bottom: 0.2em;
}
.page-numbers:nth-last-child(1 of :not(.next))::after {
  display: none;
}
.page-numbers.current {
  background: #80b44b;
  color: #fff;
  border-radius: calc(10 * 100vw / var(--vw-base));
  padding: 0 0.6em;
}
.page-numbers:has(.pagination-arrow) {
  min-width: unset;
  width: 0.4em;
}
.page-numbers.prev {
  transform: scale(-1, 1);
}
.page-numbers img {
  width: 0.6em;
}
@media (max-width: 767px) {
  .page-numbers {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}

.pagination-arrow {
  background: url(../img/icon_arrow5.svg) no-repeat center center/100%;
  aspect-ratio: 210/365;
  width: 100%;
  display: block;
}

.pagination--news {
  margin-top: calc(145 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  .pagination--news {
    margin-top: calc(70 * 100vw / var(--vw-base));
  }
}

/* ===============================
  お客様の声
=============================== */
#archive .interview__container {
  padding: calc(75 * 100vw / var(--vw-base)) 0 calc(150 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #archive .interview__container {
    padding: calc(75 * 100vw / var(--vw-base)) 0 calc(70 * 100vw / var(--vw-base));
  }
}
#archive .interview__message {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 2.35;
  letter-spacing: 0.1em;
  color: #80b44b;
  text-align: center;
}
@media (max-width: 767px) {
  #archive .interview__message {
    font-size: calc(12 * 100vw / var(--vw-base));
  }
}
#archive .interview__list {
  margin-top: calc(210 * 100vw / var(--vw-base));
  gap: calc(160 * 100vw / var(--vw-base)) 0;
}
@media (max-width: 767px) {
  #archive .interview__list {
    margin-top: calc(150 * 100vw / var(--vw-base));
  }
}

#single.interview {
  overflow: hidden;
}
#single .interview__hero {
  position: relative;
}
#single .interview-item__number--single {
  top: calc(360 * 100vw / var(--vw-base));
  left: calc(290 * 100vw / var(--vw-base));
  transform: translateY(-100%) scale(3.2);
}
@media (max-width: 767px) {
  #single .interview-item__number--single {
    top: 25vw;
    left: 10%;
    transform: translateY(-100%) scale(1);
  }
}
#single .interview-item__catch--single {
  top: 5.8vw;
  right: 11.8%;
  transform: translateY(0%) scale(1.4);
}
#single .interview-item__catch--single p {
  overflow: hidden;
}
#single .interview-item__catch--single p span {
  transform: translateX(-110%);
  background: #fff;
  position: relative;
}
#single .interview-item__catch--single p span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#single .interview-item__catch--single p.act span {
  -webkit-animation: 0.3s catch_text 0.4s forwards;
          animation: 0.3s catch_text 0.4s forwards;
}
#single .interview-item__catch--single p.act span::before {
  -webkit-animation: 0.3s catch_bg 0.7s forwards;
          animation: 0.3s catch_bg 0.7s forwards;
}
@media (max-width: 767px) {
  #single .interview-item__catch--single {
    top: -4.2vw;
    right: 3.8%;
    transform: translateY(0%) scale(0.8);
  }
}
@-webkit-keyframes catch_bg {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(110%);
  }
}
@keyframes catch_bg {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(110%);
  }
}
@-webkit-keyframes catch_text {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes catch_text {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(0%);
  }
}
#single .interview__hero-visual img {
  aspect-ratio: 1600/581;
  -o-object-fit: cover;
     object-fit: cover;
}
#single .interview__container {
  padding-bottom: calc(130 * 100vw / var(--vw-base));
  margin-top: 5%;
}
#single .interview__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #single .interview__wrapper {
    display: block;
  }
}
#single .interview__wrapper--reverse {
  flex-direction: row-reverse;
  margin-top: calc(80 / var(--inner) * 100%);
}
#single .interview__wrapper--reverse .interview__image {
  margin-left: unset;
  margin-right: calc(-170 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .interview__wrapper--reverse {
    margin-top: calc(40 / var(--inner) * 100%);
  }
  #single .interview__wrapper--reverse .interview__image {
    position: relative;
    right: calc(100% / (var(--inner) / var(--vw-base)) * -0.08);
  }
}
#single .interview__image {
  width: calc(750 / var(--inner) * 100%);
  margin-left: calc(-170 * 100vw / var(--vw-base));
}
#single .interview__image img {
  aspect-ratio: 750/800;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #single .interview__image {
    width: 100%;
    margin-left: calc(100% / (var(--inner) / var(--vw-base)) * -0.08);
  }
}
#single .interview__image--1 img {
  border-radius: 0 calc(20 * 100vw / var(--vw-base)) calc(20 * 100vw / var(--vw-base)) 0;
}
#single .interview__image--2 img {
  border-radius: calc(20 * 100vw / var(--vw-base)) 0 0 calc(20 * 100vw / var(--vw-base));
}
#single .interview__items {
  width: calc(580 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .interview__items {
    width: 100%;
    margin-top: calc(30 / var(--inner) * 100%);
  }
}
#single .interview__item--row {
  display: flex;
  justify-content: space-between;
  margin-top: calc(110 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .interview__item--row {
    display: block;
    margin-top: calc(50 / var(--inner) * 100%);
  }
}
#single .interview__item-header {
  width: calc(440 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .interview__item-header {
    width: 100%;
  }
}
#single .interview__body {
  width: calc(100% - (440 / var(--inner) * 100%));
}
@media (max-width: 767px) {
  #single .interview__body {
    width: 100%;
    margin-top: calc(30 / var(--inner) * 100%);
  }
}
#single .interview__profile {
  margin-bottom: calc(110 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .interview__profile {
    margin-bottom: calc(50 * 100vw / var(--vw-base));
  }
}
#single .interview__name-en {
  display: block;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.75;
  color: #80b44b;
}
@media (max-width: 767px) {
  #single .interview__name-en {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .interview__name-ja {
  display: block;
  font-size: calc(25 * 100vw / var(--vw-base));
  line-height: 1.88;
}
@media (max-width: 767px) {
  #single .interview__name-ja {
    font-size: calc(18 * 100vw / var(--vw-base));
  }
}
#single .interview__brand {
  font-size: calc(59 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.186440678;
  color: #595757;
}
@media (max-width: 767px) {
  #single .interview__brand {
    font-size: calc(34 * 100vw / var(--vw-base));
  }
}
#single .interview__question {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.75;
  color: #80b44b;
  position: relative;
  padding-left: 2em;
}
#single .interview__question::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #80b44b;
  width: 1.5em;
  height: 1px;
}
@media (max-width: 767px) {
  #single .interview__question {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .interview__answer {
  font-size: calc(30 * 100vw / var(--vw-base));
  font-weight: 500;
  line-height: 1.7333333333;
  margin-top: 0.6em;
}
@media (max-width: 767px) {
  #single .interview__answer {
    font-size: calc(20 * 100vw / var(--vw-base));
  }
}
#single .interview__description {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2.2;
  margin-top: 1.8em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  #single .interview__description {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .interview__description-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: -3%;
}
@media (min-width: 768px) {
  #single .interview__description-flex .interview__description {
    margin-top: 0;
    width: 46%;
  }
}
@media (max-width: 767px) {
  #single .interview__description-flex {
    flex-direction: column;
  }
  #single .interview__description-flex .interview__description:nth-child(1) {
    margin-top: 0;
  }
}
#single .interview__description-harf {
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  #single .interview__description-harf {
    height: auto !important;
  }
}
@media (min-width: 768px) {
  #single .interview__description--harf1 {
    align-items: flex-start;
  }
}
#single .interview__description--harf2 {
  align-items: flex-end;
}
@media (max-width: 767px) {
  #single .interview__description--harf2 {
    display: none;
  }
}
#single .interview__visual {
  margin-top: calc(100 / var(--inner) * 100%);
}
#single .interview__visual img {
  aspect-ratio: 1260/677;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(20 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .interview__visual {
    margin-top: calc(50 / var(--inner) * 100%);
  }
}
#single .gallery {
  margin-top: calc(170 / var(--inner) * 100%);
  display: flex;
  flex-wrap: wrap;
  gap: calc(40 * 100vw / var(--vw-base)) calc(45 / var(--inner) * 100%);
}
#single .gallery li {
  width: calc(33.3% - (45 / var(--inner) * 100%) * 2 / 3);
}
#single .gallery li img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 398/270;
  border-radius: calc(24 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .gallery {
    margin-top: calc(60 / var(--inner) * 100%);
    gap: calc(20 * 100vw / var(--vw-base)) calc(20 / var(--inner) * 100%);
  }
  #single .gallery li {
    width: calc(50% - (20 / var(--inner) * 100%) / 2);
  }
  #single .gallery li img {
    border-radius: calc(16 * 100vw / var(--vw-base));
  }
}
#single .customer-info {
  margin-top: calc(110 / var(--inner) * 100%);
}
#single .interview__info__title {
  width: calc(380 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .interview__info__title {
    width: calc(200 / var(--inner) * 100%);
  }
}
#single .customer-info__wrapper {
  margin-top: calc(30 / var(--inner) * 100%);
  display: flex;
  gap: 0 calc(80 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .customer-info__wrapper {
    display: block;
  }
}
#single .customer-info__items {
  width: calc(50% - (80 / var(--inner) * 100%) / 2);
  font-size: calc(17 * 100vw / var(--vw-base));
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #595757;
}
#single .customer-info__items dt, #single .customer-info__items dd {
  border-bottom: 1px solid #595757;
}
#single .customer-info__items dt {
  width: calc(145 * 100vw / var(--vw-base));
  padding: 2.9em 1em;
}
#single .customer-info__items dd {
  width: calc(100% - (145 * 100vw / var(--vw-base)));
  padding: 2.9em 0;
}
#single .customer-info__items dd a {
  display: inline-block;
  position: relative;
  padding-right: 3.7em;
}
#single .customer-info__items dd a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_arrow02.svg) no-repeat center center/contain;
  width: 1.4em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  #single .customer-info__items {
    width: 100%;
    font-size: calc(12 * 100vw / var(--vw-base));
  }
  #single .customer-info__items:nth-child(2) {
    border-top: none;
  }
  #single .customer-info__items dt {
    width: 35%;
  }
  #single .customer-info__items dd {
    width: 65%;
    line-height: 1.4;
  }
}

/* ===============================
  お知らせ
=============================== */
#archive .news__container {
  padding: calc(155 * 100vw / var(--vw-base)) 0 calc(145 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #archive .news__container {
    padding: calc(70 * 100vw / var(--vw-base)) 0;
  }
}
#single .news__container {
  padding: calc(150 * 100vw / var(--vw-base)) 0 calc(155 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .news__container {
    padding: calc(80 * 100vw / var(--vw-base)) 0;
  }
}
#single .news__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #single .news__wrapper {
    display: block;
  }
}
#single .news__thumbnail {
  width: calc(410 / var(--inner) * 100%);
}
#single .news__thumbnail img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(25 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .news__thumbnail {
    width: 100%;
  }
}
#single .news__body {
  width: calc(760 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .news__body {
    width: 100%;
    margin-top: calc(40 / var(--inner) * 100%);
  }
}
#single .news__title {
  font-size: calc(49 * 100vw / var(--vw-base));
  font-weight: 500;
  border-bottom: 1px dashed #47555e;
  padding-bottom: 0.7em;
}
@media (max-width: 767px) {
  #single .news__title {
    font-size: calc(20 * 100vw / var(--vw-base));
  }
}
#single .news__meta {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.12em;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  #single .news__meta {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .news__category {
  margin-left: 1.5em;
  position: relative;
}
#single .news__category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.7em;
  transform: translate(-50%, -50%);
  background: #3e3a39;
  width: 1px;
  height: 80%;
}
#single .news__content {
  font-feature-settings: "palt";
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-top: 2.2em;
}
@media (max-width: 767px) {
  #single .news__content {
    font-size: calc(14 * 100vw / var(--vw-base)); /*  */
  }
}

.news__button {
  margin-top: calc(260 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  .news__button {
    margin-top: calc(100 / var(--inner) * 100%);
  }
}

/* ===============================
  物件一覧
=============================== */
#archive .property {
  padding: calc(60 * 100vw / var(--vw-base)) 0 calc(280 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #archive .property {
    padding: calc(40 * 100vw / var(--vw-base)) 0 calc(100 * 100vw / var(--vw-base));
  }
}
#archive .property__list {
  margin-top: calc(70 / var(--inner) * 100%);
}

#single .property {
  padding-bottom: calc(170 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .property {
    padding-bottom: calc(80 * 100vw / var(--vw-base));
  }
}
#single .property__container {
  padding: calc(60 * 100vw / var(--vw-base)) 0 calc(120 * 100vw / var(--vw-base));
}
#single .property__title {
  font-size: calc(50 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 1px solid #3e3a39;
  padding-bottom: 0.76em;
}
@media (max-width: 767px) {
  #single .property__title {
    font-size: calc(30 * 100vw / var(--vw-base));
  }
}
#single .property__heading {
  font-size: calc(40 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.75;
  margin-top: 1.1em;
  color: #80b44b;
}
@media (max-width: 767px) {
  #single .property__heading {
    font-size: calc(24 * 100vw / var(--vw-base));
  }
}
#single .property__description {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
  line-height: 2.3;
  margin-top: 0.7em;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  #single .property__description {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .property__images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: calc(45 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .property__images {
    display: block;
    margin-top: calc(30 / var(--inner) * 100%);
  }
  #single .property__images p {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .propertySwiper {
  width: calc(1010 / var(--inner) * 100%);
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}
#single .propertySwiper p {
  margin-top: 0.7em;
  position: absolute;
  top: 100%;
  left: 0%;
  transform: translate(0%, 0%);
  transition: all 0.3s;
}
#single .propertySwiper .swiper-slide img {
  aspect-ratio: 1010/770;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(25 * 100vw / var(--vw-base));
  transition: all 0.3s;
}
#single .propertySwiper .swiper-slide:not(.swiper-slide-active) img {
  opacity: 0;
}
#single .propertySwiper .swiper-slide:not(.swiper-slide-active) p {
  opacity: 0;
}
@media (max-width: 767px) {
  #single .propertySwiper {
    width: 100%;
  }
}
#single .slider-thumbnail {
  align-self: stretch;
  width: calc(225 / var(--inner) * 100%);
}
#single .slider-thumbnail .swiper-slide {
  height: auto;
}
#single .slider-thumbnail .swiper-slide:nth-child(n+2) {
  margin-top: calc(27 * 100vw / var(--vw-base));
}
#single .slider-thumbnail .swiper-slide img {
  border-radius: calc(25 * 100vw / var(--vw-base));
  aspect-ratio: 242/185;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  #single .slider-thumbnail .swiper-wrapper {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  #single .slider-thumbnail {
    width: 100%;
    margin-top: calc(40 * 100vw / var(--vw-base));
  }
  #single .slider-thumbnail .swiper-wrapper {
    gap: 0 calc(5 * 100vw / var(--vw-base));
  }
  #single .slider-thumbnail .swiper-slide {
    width: calc((100% - (5 * 100vw / var(--vw-base)) * 3) / 4);
  }
  #single .slider-thumbnail .swiper-slide:nth-child(n) {
    margin-top: 0;
  }
  #single .slider-thumbnail .swiper-slide img {
    border-radius: calc(10 * 100vw / var(--vw-base));
  }
}
#single .panorama {
  margin-top: calc(130 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .panorama {
    margin-top: calc(40 / var(--inner) * 100%);
  }
}
#single .panorama__title {
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  border: 0.28em solid #80b44b;
  color: #80b44b;
  padding: 1.6em 2em;
  border-radius: 2em;
}
@media (max-width: 767px) {
  #single .panorama__title {
    font-size: calc(14 * 100vw / var(--vw-base));
    padding: 1em 1.3em;
    border-width: calc(2 * 100vw / var(--vw-base));
  }
}
#single .panorama__list {
  margin-top: calc(50 / var(--inner) * 100%);
  display: flex;
  gap: 0 calc(45 / var(--inner) * 100%);
  gap: 0 calc(45 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .panorama__list {
    margin-top: calc(25 / var(--inner) * 100%);
    display: block;
  }
}
#single .panorama__item {
  width: calc(25% - (45 / var(--inner) * 100%) * 3 / 4);
}
@media (max-width: 767px) {
  #single .panorama__item {
    width: 100%;
  }
  #single .panorama__item:nth-child(n+2) {
    margin-top: calc(20 / var(--inner) * 100%);
  }
}
#single .panorama__image {
  aspect-ratio: 281/200;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: calc(25 * 100vw / var(--vw-base));
  width: 100%;
  overflow: hidden;
}
#single .panorama__image img, #single .panorama__image canvas {
  aspect-ratio: 281/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #single .panorama__image {
    border-radius: calc(10 * 100vw / var(--vw-base));
  }
}
#single .panorama__text {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  margin-top: 1em;
}
@media (max-width: 767px) {
  #single .panorama__text {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .panorama-modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(19, 19, 19, 0.7);
  z-index: 5000;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#single .panorama-modal:not(.act) {
  opacity: 0;
  pointer-events: none;
}
#single .panorama-modal .panorama__item {
  position: relative;
  width: 800px;
  max-width: 90%;
  max-height: 90%;
}
#single .panorama-modal .panorama__item:not(.act) {
  position: absolute;
  top: 0%;
  left: 0%;
  opacity: 0;
  pointer-events: none;
}
#single .panorama-modal .panorama__text {
  color: #fff;
}
@media (min-width: 768px) {
  #single [data-modalopen] canvas {
    pointer-events: none;
  }
}
#single .c-modal-close {
  cursor: pointer;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translate(0%, -100%);
  font-size: calc(40 * 100vw / var(--vw-base));
  color: #fff;
}
#single .download__button {
  margin-top: calc(85 / var(--inner) * 100%);
}
#single .download__button a {
  display: inline-block;
  width: 18.8em;
  font-size: calc(25 * 100vw / var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: #80b44b;
  border-radius: 2.16em;
  padding: 1.6em 2em;
  position: relative;
  text-align: left;
}
#single .download__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6em;
  transform: translateY(-50%);
  background: url(../img/icon_download.svg) no-repeat center center/contain;
  width: 1.6em;
  aspect-ratio: 40/36;
}
@media (max-width: 767px) {
  #single .download__button a {
    font-size: calc(13 * 100vw / var(--vw-base));
  }
}
@media (max-width: 767px) {
  #single .download__button {
    margin-top: calc(20 * 100vw / var(--vw-base));
  }
}
#single .occupancy {
  margin-top: calc(124 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .occupancy {
    margin-top: calc(60 / var(--inner) * 100%);
  }
}
#single .occupancy__title {
  width: calc(360 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .occupancy__title {
    width: calc(180 / var(--inner) * 100%);
  }
}
#single .occupancy__content {
  background: #ececec;
  padding: 11% 5% 7%;
  padding-left: 4%;
  border-radius: calc(25 * 100vw / var(--vw-base));
}
@media (max-width: 767px) {
  #single .occupancy__content {
    padding: calc(60 / var(--inner) * 100%) calc(20 / var(--inner) * 100%);
  }
}
#single .occupancy__content--apart {
  padding: 6% 5%;
  margin-top: 2%;
}
#single .occupancy__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: calc(70 * 100vw / var(--vw-base)) 0;
}
#single .occupancy__items dt {
  width: calc(116 * 100vw / var(--vw-base));
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: calc(30 * 100vw / var(--vw-base));
  font-weight: 400;
}
#single .occupancy__items dd {
  width: calc(100% - (116 * 100vw / var(--vw-base)));
  padding-left: 4.7%;
}
@media (max-width: 767px) {
  #single .occupancy__items dt {
    width: 10%;
    font-size: calc(16 * 100vw / var(--vw-base));
  }
  #single .occupancy__items dd {
    width: 90%;
    padding-left: calc(20 * 100vw / var(--vw-base));
    padding-left: 2%;
  }
}
#single .occupancy__list {
  display: flex;
  border: 1px solid #000;
  height: 100%;
  background: #fff;
}
#single .occupancy__list li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  min-height: 6.6lh;
}
#single .occupancy__list li:nth-child(n+2) {
  border-left: 1px solid #000;
}
#single .occupancy__list li .vacant {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #80b44b;
  font-size: calc(17 * 100vw / var(--vw-base));
  border-radius: 1em;
  padding: 0 1.7em;
  color: #fff;
}
@media (max-width: 767px) {
  #single .occupancy__list li {
    font-size: calc(10 * 100vw / var(--vw-base));
  }
  #single .occupancy__list li .vacant {
    font-size: calc(8 * 100vw / var(--vw-base));
  }
}
#single .occupancy__hp {
  display: flex;
  flex-wrap: wrap;
  gap: 0 calc(60 * 100vw / var(--vw-base));
  padding: 0 1%;
  margin-top: 4.3%;
}
#single .occupancy__hp li {
  width: calc((100% - (60 * 100vw / var(--vw-base))) / 2);
}
#single .occupancy__hp li:first-child, #single .occupancy__hp li:nth-child(2) {
  border-top: 1px solid #595757;
  border-bottom: 1px solid #595757;
}
#single .occupancy__hp li:nth-child(n+3) {
  border-bottom: 1px solid #595757;
}
#single .occupancy__hp li a, #single .occupancy__hp li p {
  display: inline-block;
  font-size: calc(17 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 2.5882352941;
  padding: 2em 0.5em;
  position: relative;
  width: 100%;
}
#single .occupancy__hp li a em, #single .occupancy__hp li p em {
  right: 2em;
}
@media (max-width: 767px) {
  #single .occupancy__hp li {
    width: 100%;
  }
  #single .occupancy__hp li:nth-child(n+2) {
    border-top: none;
  }
  #single .occupancy__hp li a, #single .occupancy__hp li p {
    padding: 1em 0.5em;
    padding-right: 4em;
    font-size: calc(14 * 100vw / var(--vw-base));
  }
}
#single .occupancy__apart {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#single .occupancy__apart > div {
  width: 48%;
  display: flex;
  border-top: 1px solid #595757;
  border-bottom: 1px solid #595757;
  padding-left: 3%;
}
#single .occupancy__apart p {
  padding: 3em 0;
  font-size: calc(17 * 100vw / var(--vw-base));
  font-weight: 400;
}
#single .occupancy__apart p:nth-child(2) {
  margin-left: 3em;
}
@media (max-width: 767px) {
  #single .occupancy__apart {
    display: block;
  }
  #single .occupancy__apart > div {
    width: 100%;
  }
  #single .occupancy__apart > div:not(:first-child) {
    border-top: none;
  }
  #single .occupancy__apart p {
    font-size: calc(14 * 100vw / var(--vw-base));
  }
  #single .occupancy__apart p:nth-child(1) {
    width: 50%;
  }
  #single .occupancy__apart p:nth-child(2) {
    width: 50%;
    margin-left: 0;
  }
}
#single .occupancy_title {
  width: 32%;
  margin-top: 8.4%;
}
@media (max-width: 767px) {
  #single .occupancy_title {
    width: 80%;
  }
}
#single .access {
  margin-top: calc(156 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .access {
    margin-top: calc(60 * 100vw / var(--vw-base));
  }
}
#single .access__header {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #single .access__header {
    display: block;
  }
}
#single .access__title {
  width: calc(360 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .access__title {
    width: calc(180 / var(--inner) * 100%);
  }
}
#single .access__address {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  padding-left: 2.5em;
  margin-left: calc(45 * 100vw / var(--vw-base));
  transform: translateY(-80%);
}
#single .access__address::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_map.svg) no-repeat center center/contain;
  width: 2em;
  aspect-ratio: 40/40;
}
@media (max-width: 767px) {
  #single .access__address {
    margin-left: 0;
    margin-top: calc(20 / var(--inner) * 100%);
    font-size: calc(16 * 100vw / var(--vw-base));
    display: block;
  }
}
#single .property__cta {
  margin-top: calc(120 / var(--inner) * 100%);
  position: relative;
}
#single .property__cta::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4%;
  transform: translateY(-50%);
  background: url(../img/property/cta_img01.png) no-repeat center center/contain;
  width: 25%;
  aspect-ratio: 654/538;
}
#single .property__cta::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: url(../img/property/cta_arrow.svg) no-repeat center center/contain;
  width: calc(60 * 100vw / var(--vw-base));
  aspect-ratio: 60/52;
}
@media (max-width: 767px) {
  #single .property__cta {
    margin-top: calc(60 / var(--inner) * 100%);
  }
  #single .property__cta::before {
    top: unset;
    right: calc(20 * 100vw / var(--vw-base));
    bottom: calc(-50 * 100vw / var(--vw-base));
    width: 40%;
  }
  #single .property__cta::after {
    width: calc(30 * 100vw / var(--vw-base));
  }
}
#single .property__cta-content {
  border: calc(8 * 100vw / var(--vw-base)) solid #f5a800;
  border-radius: calc(25 * 100vw / var(--vw-base));
  padding: calc(50 / var(--inner) * 100%);
}
@media (max-width: 767px) {
  #single .property__cta-content {
    padding: calc(25 / var(--inner) * 100%) calc(25 / var(--inner) * 100%) calc(100 / var(--inner) * 100%);
    border: calc(6 * 100vw / var(--vw-base)) solid #f5a800;
  }
}
#single .property__cta-heading {
  font-size: calc(52 * 100vw / var(--vw-base));
  font-weight: 500;
  color: #f5a800;
}
@media (max-width: 767px) {
  #single .property__cta-heading {
    font-size: calc(24 * 100vw / var(--vw-base));
    line-height: 1.5;
  }
}
#single .property__cta-text {
  font-size: calc(20 * 100vw / var(--vw-base));
  font-weight: 400;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  #single .property__cta-text {
    font-size: calc(14 * 100vw / var(--vw-base));
    line-height: 1.5;
  }
}
/*# sourceMappingURL=post.css.map */