@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: TsukuhouMincho;
  src: url("/static/fonts/TsukuhouMincho.ttf");
  font-style: normal;
}
html {
  font-family: "游明朝", "游明朝体", "Yu Mincho", serif;
  color: #44403e;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1199px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 8px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.4vw;
  }
}

main {
  position: relative;
}

.gray_area {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s ease-in-out;
}
.gray_area .close_button {
  position: absolute;
  top: -24px;
  right: -26px;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 30px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.gray_area .close_button:hover {
  background: white;
  color: black;
}
.gray_area .popup_container {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  z-index: 1001;
  top: 110px;
  height: fit-content;
}
.gray_area .popup_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 80vh;
}

* {
  --mainbg: #d9d9d9;
  --mainbg-open: #eeecea;
  --hamburgir: #44403e;
}

.header {
  position: fixed;
  height: 102px;
  width: 100%;
  padding: 0 4.6% 0 5.5%;
  background-color: rgba(217, 217, 217, 0.0117647059);
  display: flex;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 55px;
    padding: 0;
    transition: 0.3s ease-in-out;
  }
}
.header::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--mainbg-open);
  left: 0;
  bottom: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: 0.3s ease-in-out;
}
.header.active::before {
  transform: scaleY(1);
}
.header.s2::before {
  background-color: #444;
}
.header__content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__content {
    height: 100%;
    padding: 0 28px;
  }
}
.header__logo {
  width: 261px;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 160px;
  }
}
.header__logo:hover {
  opacity: 0.8;
}
.header__menu {
  display: flex;
  gap: 116px;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    position: absolute;
    max-height: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--mainbg-open);
    top: 55px;
    left: 0;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
}
.header__menu.active {
  max-height: calc(100vh - 55px);
}
.header__menu.active .header__navigation,
.header__menu.active .header__contact {
  opacity: 1;
  transition: 0.3s ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  .header__menu.s2 {
    background-color: #444;
  }
}
.header__navigation {
  display: flex;
  align-items: center;
  gap: 92px;
}
@media screen and (max-width: 1024px) {
  .header__navigation {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .header__navigation {
    flex-direction: column;
    gap: 23px;
    opacity: 0;
    transition: 0.1s;
  }
}
.header__navigation a {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-align: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__navigation a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .header__navigation a {
    font-size: 1.6rem;
    transition: 0.3s ease;
  }
}
.header__navigation a:hover {
  opacity: 0.7;
}
.header__navigation.s2 a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__contact {
    opacity: 0;
    transition: 0.1s;
  }
}
.header__contact-txts {
  font-size: 1.8rem;
  text-align: center;
}
.header__contact-txts.sm {
  font-size: 1.4rem;
}
.header__contact-txts.s2 {
  color: #fff;
}
.header__contact-contact {
  font-size: 3.1rem;
  display: flex;
  align-items: center;
  gap: 23px;
  color: #1a1a1a;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__contact-contact {
    font-size: 2.8rem;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header__contact-contact {
    width: fit-content;
    margin: 8px auto 25px;
    padding: 9px 20px 14px;
    color: #44403e;
    border: 1.5px solid #44403e;
    border-radius: 2px;
    gap: 8px;
  }
  .header__contact-contact.mail-content {
    font-size: 2.4rem;
  }
}
.header__contact-contact svg {
  margin-top: 3.5px;
  transition: 0.3s ease;
}
.header__contact-contact:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .header__contact-contact:hover {
    opacity: 1;
    background-color: #44403e;
    color: var(--mainbg-open);
  }
}
@media screen and (max-width: 767px) {
  .header__contact-contact:hover svg path {
    fill: var(--mainbg-open);
  }
}
.header__contact-contact.s2 {
  color: #fff;
  border-color: #fff;
}
.header__contact-contact.s2 svg path {
  fill: #fff;
}
.header__contact-contact.s2 span {
  color: #fff;
}
.header__hamburger {
  width: 27px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger.active .header__hamburger-ac::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(152deg);
}
.header__hamburger.active .header__hamburger-ac span {
  transform: translate(-50%, -50%) rotate(-152deg);
}
.header__hamburger.active .header__hamburger-ac::after {
  bottom: -16px;
  height: 0;
  transition: 0.3s ease, height 0.3s ease 0.1s;
}
.header__hamburger.active .header__hamburger-txt span {
  transform: translateY(0);
  transition: 0.3s ease;
}
.header__hamburger.s2 .header__hamburger-ac span, .header__hamburger.s2 .header__hamburger-ac::before, .header__hamburger.s2 .header__hamburger-ac::after {
  background-color: #fff;
}
.header__hamburger.s2 .header__hamburger-txt span {
  color: #fff;
}
.header__hamburger-ac {
  position: relative;
  width: 100%;
  height: 14px;
}
.header__hamburger-ac span {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: var(--hamburgir);
  border-radius: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.header__hamburger-ac::before, .header__hamburger-ac::after {
  content: "";
  position: absolute;
  width: 100%;
  max-height: 1.5px;
  height: 1.5px;
  background-color: var(--hamburgir);
  border-radius: 5px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.header__hamburger-ac::after {
  top: unset;
  bottom: 0;
  transition: 0.3s ease;
}
.header__hamburger-txt {
  position: relative;
  max-height: 11px;
  margin-top: 5px;
  text-align: center;
  overflow: hidden;
}
.header__hamburger-txt span {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  top: 0;
  transform: translateY(-11px);
  transition: 0.25s ease;
}

.breadcrumbs {
  position: absolute;
  bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.75em;
  z-index: 1;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    width: 100%;
    font-size: 1.3rem;
    line-height: 2em;
  }
}
.breadcrumbs--property {
  color: #eae6e4;
}
.breadcrumbs__content {
  display: flex;
  gap: 20px;
}

.image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  object-fit: contain;
}

* {
  --footmainbg: #e2e1dc;
  --foots2mainbg: #444;
  --lowerbg: #181818;
  --lowertxts: #f6f4f2;
  --foots2txt: #eae6e4;
  --floatbdr: #cfb639;
}

.footer__content {
  padding: 92px 3% 60px;
  background-color: var(--footmainbg);
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 86px 3%;
  }
}
.footer__content.s2 {
  background-color: var(--foots2mainbg);
}
.footer__float {
  position: fixed;
  width: 74px;
  padding: 20px;
  border: 1px solid var(--floatbdr);
  background-color: rgba(249, 249, 249, 0.5019607843);
  display: flex;
  flex-direction: column;
  gap: 7px;
  right: 0;
  top: 78%;
  transform: translateY(-50%);
  transition: 0.3s ease;
  z-index: 9999999;
}
@media screen and (max-width: 767px) {
  .footer__float {
    width: 35px;
    padding: 11px 7px 14px;
    gap: 0;
    right: 0;
  }
}
.footer__float span {
  width: fit-content;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  color: #000;
  writing-mode: vertical-rl;
  text-orientation: upright;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__float span {
    font-size: 1.4rem;
  }
}
.footer__float svg {
  margin-left: 2px;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__float svg {
    margin-left: -2px;
    transform: scale(0.6);
  }
}
.footer__float:not(:focus):hover {
  background-color: var(--floatbdr);
}
.footer__float.s2 {
  border: none;
}
.footer__content-title {
  margin-bottom: 58px;
  font: 400 4rem "TsukuhouMincho", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__content-title {
    margin-bottom: 47px;
    font-size: 2.4rem;
  }
}
.footer__content-title.s2 {
  color: var(--foots2txt);
}
.footer__content-content {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__content-content {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}
.footer__content-l1 {
  height: 101px;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer__content-l1 {
    font-size: 2.5rem;
    height: 68px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content-l1 {
    height: fit-content;
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}
.footer__content-l1.s2 {
  color: var(--foots2txt);
}
.footer__content-contact > span {
  display: block;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__content-contact > span {
    font-size: 1.4rem;
  }
}
.footer__content-contact > span.s2 {
  color: var(--foots2txt);
}
.footer__content-button {
  margin-bottom: 9px;
  padding-inline: 5rem;
  font-size: 5.2rem;
  color: #44403e;
  border: 1.5px solid #44403e;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: 0.3s ease;
  height: 10rem;
}
.footer__content-button.mail-content {
  font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
  .footer__content-button {
    font-size: 3.8rem;
    padding: 0 30px 5px 20px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content-button {
    width: fit-content;
    margin-bottom: 7px;
    padding: 0 20px 3px 22px;
    font-size: 2.8rem;
    gap: 0;
    height: 8rem;
  }
  .footer__content-button.mail-content {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
.footer__content-button svg {
  margin-top: 7px;
  transition: 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .footer__content-button svg {
    transform: scale(0.7);
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content-button svg {
    transform: scale(0.6);
  }
}
.footer__content-button:hover {
  background-color: #44403e;
  color: var(--mainbg-open);
}
.footer__content-button:hover svg path {
  fill: var(--mainbg-open);
}
.footer__content-button.s2 {
  border: 2px solid var(--foots2txt);
  color: var(--foots2txt);
  min-height: 6rem;
}
.footer__content-button.s2 svg path {
  fill: var(--foots2txt);
}
.footer__content-button.s2:hover {
  background-color: var(--foots2txt);
  color: var(--foots2mainbg);
}
.footer__content-button.s2:hover svg path {
  fill: var(--foots2mainbg);
}
.footer__content-lower {
  padding: 30px 3% 10px;
  background-color: var(--lowerbg);
}
@media screen and (max-width: 767px) {
  .footer__content-lower {
    padding: 34px 3% 8px;
  }
}
.footer__content-lower > p {
  margin-top: 25px;
  font-size: 1.4rem;
  color: var(--lowertxts);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__content-lower > p {
    margin-top: 60px;
    font-size: 1.2rem;
  }
}
.footer__content-lower-gr {
  max-width: 1546px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__content-lower-gr {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__content-lower-logo {
  width: 50%;
  padding-top: 26px;
}
@media screen and (max-width: 1024px) {
  .footer__content-lower-logo {
    width: 45%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__content-lower-logo {
    width: 100%;
  }
}
.footer__logo {
  max-width: 261px;
  width: 100%;
  height: auto;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 164px;
  }
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__content-lower-right {
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__content-lower-right {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .footer__content-lower-right {
    width: 100%;
    justify-content: center;
  }
}
.footer__content-lower-links {
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .footer__content-lower-links {
    display: none;
  }
}
.footer__content-lower-links a {
  display: block;
  font-size: 1.6rem;
  color: var(--lowertxts);
  transition: 0.3s ease;
}
.footer__content-lower-links a:not(:last-child) {
  margin-bottom: 28px;
}
.footer__content-lower-links a:hover {
  opacity: 0.7;
}
.footer__content-lower-contact p {
  font-size: 1.8rem;
  font-family: "TsukuhouMincho", sans-serif;
  color: var(--lowertxts);
  text-align: center;
}
.footer__content-lower-contact p.sm {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__content-lower-contact p.sm {
    font-size: 1.4rem;
  }
}
.footer__content-lower-button {
  margin: 11px 0 14px;
  padding: 2px 30px 5px;
  font-size: 3.2rem;
  color: var(--lowertxts);
  border: 2px solid var(--lowertxts);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
  height: 6rem;
}
.footer__content-lower-button.mail-content {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer__content-lower-button {
    margin: 4px 0 11px;
    padding: 9px 22px 12px;
    font-size: 2.8rem;
  }
  .footer__content-lower-button.mail-content {
    font-size: 2rem;
  }
}
.footer__content-lower-button svg {
  margin-top: 5px;
  transition: 0.3s ease;
}
.footer__content-lower-button:hover {
  background-color: var(--lowertxts);
  color: var(--lowerbg);
}
.footer__content-lower-button:hover svg path {
  fill: var(--lowerbg);
}

.top {
  padding-top: 102px;
  background-color: rgba(217, 217, 217, 0.0117647059);
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 55px;
  }
}
.top__mv {
  position: relative;
  height: 728px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__mv {
    height: 100%;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv::after {
    content: "";
    position: absolute;
    height: calc(100% - 150px);
    width: 100%;
    left: 0;
    top: 150px;
    background-color: #eeecea;
    z-index: 1;
  }
}
.top__mv-image-container {
  padding-left: 14.5%;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top__mv-image-container {
    position: relative;
    height: auto;
    padding-left: 3%;
  }
}
.top__mv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top__mv-image {
    max-height: 500px;
  }
}
.top__mv-txt {
  position: absolute;
  display: flex;
  right: 18%;
  top: 203px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top__mv-txt {
    position: relative;
    height: fit-content;
    width: 100%;
    padding-left: 19.5%;
    top: -35px;
    right: 0;
  }
}
.top__mv-txt h1 {
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top__mv-txt h1 {
    font-size: 2.4rem;
  }
}
.top__mv-txt h1:nth-child(1) {
  padding: 65px 30px 0 0;
}
@media screen and (max-width: 767px) {
  .top__mv-txt h1:nth-child(1) {
    padding: 20px 20px 0 0;
  }
}
.top__values {
  margin-top: 185px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__values {
    margin-top: 95px;
  }
}
.top__values-content {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .top__values-content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.top__values-item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__values-item {
    width: 100%;
  }
}
.top__values-item-txts {
  max-width: 650px;
  margin-left: 80px;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .top__values-item-txts {
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top__values-item-txts {
    margin: 0;
    padding: 0 6%;
  }
}
.top__values-item-txts h2 {
  margin-bottom: 18px;
  font-size: 4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top__values-item-txts h2 {
    font-size: 2.4rem;
  }
}
.top__values-item-txts p {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.002em;
  line-height: 2.5em;
}
@media screen and (max-width: 767px) {
  .top__values-item-txts p {
    font-size: 1.4rem;
  }
}
.top__values-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top__values-image-container {
    padding-left: 30px;
  }
}
.top__values-image-container::before {
  content: "";
  position: absolute;
  height: 106%;
  width: 10%;
  background-color: #fff;
  filter: blur(5px);
  left: -2%;
  top: -3%;
}
@media screen and (max-width: 767px) {
  .top__values-image-container::before {
    width: 60px;
    filter: blur(7.5px);
    left: -10px;
  }
}
.top__values-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top__house {
  position: relative;
  width: 100%;
  margin-top: 113px;
  padding: 175px 3%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__house {
    margin-top: 76px;
    padding: 100px 6%;
  }
}
.top__house::before {
  content: "";
  position: absolute;
  background-color: #f4f3f1;
  width: 100%;
  height: 100%;
  border-top-left-radius: 800px 120px;
  border-top-right-radius: 800px 120px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top__house-content {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
}
.top__house-title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__house-title {
    padding-bottom: 10px;
    font-size: 2.4rem;
  }
}
.top__house-title::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 2px;
  background-color: #b29d33;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__house-title::after {
    height: 1px;
    width: 140%;
  }
}
.top__house-list {
  margin-top: 103px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
}
@media screen and (max-width: 1200px) {
  .top__house-list {
    gap: 4.5%;
  }
}
@media screen and (max-width: 980px) {
  .top__house-list {
    grid-template-columns: auto;
    gap: 40px;
  }
}
.top__house-item {
  position: relative;
  width: 100%;
}
.top__house-item > h3 {
  margin-bottom: 9px;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6020833333em;
}
@media screen and (max-width: 767px) {
  .top__house-item > h3 {
    margin-bottom: 2px;
    font-size: 1.6rem;
  }
}
.top__house-item p {
  font-size: 1.8rem;
  line-height: 1.6022222222em;
}
@media screen and (max-width: 767px) {
  .top__house-item p {
    padding-top: 6px;
    font-size: 1.4rem;
  }
}
.top__house-item:hover .top__house-img img {
  transform: translate(-50%, -50%) scale(1.2);
}
.top__house-item:hover .top__house-img-txts-head::after {
  width: 100%;
  transform: translateX(-50%) scaleY(0);
  transition: 0.5s ease, transform 0.5s ease 0.6s;
}
.top__house-item:hover .top__house-arrow img {
  animation: toparrow 0.3s ease;
}
.top__house-img {
  position: relative;
  min-height: 500px;
  margin-bottom: 32px;
  padding: 45px 36px;
  background-color: #c4c4c4;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2509803922);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__house-img {
    min-height: 356px;
    aspect-ratio: 312/356;
    margin-bottom: 20px;
    padding: 35px 27px;
  }
}
.top__house-img img {
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .top__house-img img {
    width: calc(100% + 60px);
  }
}
.top__house-img-txts {
  position: relative;
  width: 100%;
  z-index: 2;
}
.top__house-img-txts p {
  letter-spacing: 0.002em;
  color: #fff;
  text-transform: uppercase;
  font: 400 2rem "Gideon Roman", serif;
}
@media screen and (max-width: 767px) {
  .top__house-img-txts p {
    font-size: 1.2rem;
    text-transform: none;
  }
}
.top__house-img-txts-head {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 17px;
  font: 400 3.1rem "TsukuhouMincho", sans-serif;
  line-height: 1.4480645161em;
  color: #fff;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .top__house-img-txts-head {
    margin-bottom: 10px;
    padding-bottom: 11px;
    font-size: 2.3rem;
  }
}
.top__house-img-txts-head::after {
  content: "";
  position: absolute;
  width: 0;
  background-color: #d9d9d9;
  height: 2px;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
}
.top__house-arrow {
  width: 100%;
}
.top__house-arrow img {
  display: block;
  width: 80px;
  height: auto;
  margin: 20px 0 0 auto;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
@keyframes toparrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate(100%, -50%);
  }
  55% {
    opacity: 0;
    transform: translate(-150%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-10%, -50%);
  }
}

.property {
  font-family: "TsukuhouMincho", sans-serif;
}
.property__container {
  max-width: 1900px;
  width: 100%;
  padding: 0 190px;
  margin: 0 auto;
}
@media screen and (max-width: 1650px) {
  .property__container {
    max-width: calc(1520px + 8%);
    padding: 0 4%;
  }
}
.property__mv {
  position: relative;
  color: #fff;
}
.property__mv-bg {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .property__mv-bg .image {
    object-position: 45%;
  }
}
.property__mv-title {
  position: absolute;
  display: block;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.2rem;
}
@media screen and (max-width: 1600px) {
  .property__mv-title {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 1200px) {
  .property__mv-title {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 767px) {
  .property__mv-title {
    font-size: 24px;
  }
}
.property__mv-content {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
}
.property__mv-header-en {
  width: fit-content;
  font-size: 5.8rem;
  padding: 0 30px 30px 0;
  margin-bottom: 24px;
  font-weight: 400;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 1600px) {
  .property__mv-header-en {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .property__mv-header-en {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__mv-header-en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .property__mv-header-en {
    font-size: 26px;
    margin-bottom: 16px;
    padding: 0 16px 16px 0;
  }
}
.property__mv-header-jp {
  font-size: 3.9rem;
  font-family: "Gideon Roman", serif;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1600px) {
  .property__mv-header-jp {
    font-size: 3.1rem;
  }
}
@media screen and (max-width: 1200px) {
  .property__mv-header-jp {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__mv-header-jp {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .property__mv-header-jp {
    font-size: 20px;
  }
}
.property__about {
  background: #cfc1b6;
  min-height: 100vh;
  padding-block: 233px;
}
@media screen and (max-width: 1600px) {
  .property__about {
    padding-block: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .property__about {
    padding-block: 120px;
    max-height: fit-content;
  }
}
@media screen and (max-width: 1024px) {
  .property__about {
    padding-block: 100px;
  }
}
@media screen and (max-width: 767px) {
  .property__about {
    max-height: unset;
    display: flex;
  }
}
.property__about-header {
  font-weight: 400;
  font-size: 6.4rem;
  margin-bottom: 145px;
  text-align: center;
  color: #574e47;
}
@media screen and (max-width: 1600px) {
  .property__about-header {
    font-size: 5.1rem;
    margin-bottom: 116px;
  }
}
@media screen and (max-width: 1200px) {
  .property__about-header {
    font-size: 4rem;
    margin-bottom: 93px;
  }
}
@media screen and (max-width: 1024px) {
  .property__about-header {
    font-size: 3.3rem;
    margin-bottom: 74px;
  }
}
@media screen and (max-width: 767px) {
  .property__about-header {
    font-size: 24px;
    margin-bottom: 52px;
  }
}
.property__about-text {
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 2em;
  color: #574e47;
}
@media screen and (max-width: 1600px) {
  .property__about-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .property__about-text {
    font-size: 1.6rem;
  }
}
.property__contents {
  background: #3c3836;
  color: #eae6e4;
  padding-top: 17px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .property__contents {
    padding-top: 0;
  }
}
.property__nav {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .property__nav {
    display: none;
  }
}
.property__nav-item {
  display: block;
  width: fit-content;
  position: relative;
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .property__nav-item {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__nav-item {
    font-size: 1.6rem;
  }
}
.property__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #eae6e4;
  transition: 0.3s ease;
  z-index: 1;
}
.property__nav-item:hover::after {
  width: 100%;
}
.property__concept {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-block: 500px 675px;
}
@media screen and (max-width: 1600px) {
  .property__concept {
    margin-block: 400px 540px;
  }
}
@media screen and (max-width: 1200px) {
  .property__concept {
    margin-block: 256px 345px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept {
    margin-block: 164px 276px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept {
    margin-block: 136px 200px;
  }
}
.property__concept-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 0;
  left: 4%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .property__concept-headline {
    position: relative;
    align-self: flex-start;
    left: 8%;
  }
}
.property__concept-headline-en {
  font-weight: 400;
  font-size: 3.2rem;
  font-family: "Gideon Roman", serif;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  padding-left: 10px;
}
@media screen and (max-width: 1200px) {
  .property__concept-headline-en {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-headline-en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-headline-en {
    font-size: 14px;
    padding-left: 5px;
  }
}
.property__concept-headline-jp {
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.8em;
}
@media screen and (max-width: 1200px) {
  .property__concept-headline-jp {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-headline-jp {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-headline-jp {
    font-size: 24px;
  }
}
.property__concept-image {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .property__concept-image {
    position: relative;
  }
}
.property__concept-image--01 {
  position: relative;
  top: 0;
  right: -130px;
  width: 1072px;
  height: 664px;
}
@media screen and (max-width: 1650px) {
  .property__concept-image--01 {
    width: 858px;
    height: 531px;
    right: 0;
  }
}
@media screen and (max-width: 1280px) {
  .property__concept-image--01 {
    width: 686px;
    height: 425px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-image--01 {
    width: 439px;
    height: 272px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-image--01 {
    width: 269px;
    height: 166px;
    margin-top: 57px;
  }
}
.property__concept-image--02 {
  top: 513px;
  left: 3%;
  width: 457px;
  height: 321px;
}
@media screen and (max-width: 1650px) {
  .property__concept-image--02 {
    top: 410px;
    width: 366px;
    height: 257px;
  }
}
@media screen and (max-width: 1280px) {
  .property__concept-image--02 {
    top: 328px;
    width: 293px;
    height: 205px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-image--02 {
    top: 209px;
    width: 234px;
    height: 164px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-image--02 {
    align-self: flex-start;
    top: 0;
    left: -5%;
    width: 138px;
    height: 97px;
    margin-block: 54px 46px;
  }
}
.property__concept-image--03 {
  top: 1018px;
  left: 370px;
  width: 286px;
  height: 509px;
}
@media screen and (max-width: 1650px) {
  .property__concept-image--03 {
    top: 850px;
    left: 220px;
    width: 229px;
    height: 407px;
  }
}
@media screen and (max-width: 1280px) {
  .property__concept-image--03 {
    top: 680px;
    left: 150px;
    width: 183px;
    height: 326px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-image--03 {
    top: 500px;
    width: 146px;
    height: 260px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-image--03 {
    top: 54px;
    left: -5%;
    width: 100%;
    height: 0;
  }
  .property__concept-image--03 img {
    width: 94px;
    height: 167px;
  }
}
.property__concept-image--04 {
  position: relative;
  width: 598px;
  height: 416px;
}
@media screen and (max-width: 1650px) {
  .property__concept-image--04 {
    width: 478px;
    height: 332px;
  }
}
@media screen and (max-width: 1280px) {
  .property__concept-image--04 {
    width: 383px;
    height: 266px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-image--04 {
    width: 306px;
    height: 213px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-image--04 {
    margin-top: 129px;
    width: 178px;
    height: 124px;
    right: -5%;
  }
}
.property__concept-image--05 {
  top: 1896px;
  left: 114px;
  width: 584px;
  height: 369px;
}
@media screen and (max-width: 1650px) {
  .property__concept-image--05 {
    left: 4%;
    top: 1700px;
    width: 467px;
    height: 295px;
  }
}
@media screen and (max-width: 1280px) {
  .property__concept-image--05 {
    top: 1375px;
    width: 373px;
    height: 236px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-image--05 {
    top: 1075px;
    width: 299px;
    height: 188px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-image--05 {
    align-self: flex-start;
    margin-top: 45px;
    top: 0;
    left: 4%;
    width: 188px;
    height: 119px;
  }
}
.property__concept-content {
  display: flex;
  gap: 108px;
  align-items: flex-start;
  margin-block: 170px 164px;
}
@media screen and (max-width: 1280px) {
  .property__concept-content {
    gap: 86px;
    margin-block: 136px;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-content {
    gap: 69px;
    margin-block: 109px;
  }
}
@media screen and (max-width: 767px) {
  .property__concept-content {
    flex-direction: column;
    width: 100%;
    gap: 34px;
    padding: 0 4% 0 8%;
    margin-block: 0;
  }
}
.property__concept-content-title {
  font-weight: 400;
  font-size: 4.2rem;
}
@media screen and (max-width: 1280px) {
  .property__concept-content-title {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-content-title {
    font-size: 2.6rem;
  }
}
.property__concept-content-text {
  font-size: 2rem;
  line-height: 2.5em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1280px) {
  .property__concept-content-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__concept-content-text {
    font-size: 1.4rem;
  }
}
.property__headline {
  text-align: center;
}
.property__headline--left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .property__headline--spleft {
    text-align: left;
  }
}
.property__headline-en {
  font-size: 2.4rem;
  font-family: "Gideon Roman", serif;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 1200px) {
  .property__headline-en {
    font-size: 1.4rem;
  }
}
.property__headline-jp {
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 1.8em;
  text-wrap: nowrap;
}
@media screen and (max-width: 1200px) {
  .property__headline-jp {
    font-size: 2.4rem;
  }
}
.property__content-headline {
  display: block;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 2em;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1200px) {
  .property__content-headline {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .property__content-headline {
    font-size: 1.6rem;
  }
}
.property__content-text {
  font-size: 2rem;
  line-height: 2em;
}
@media screen and (max-width: 1200px) {
  .property__content-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .property__content-text {
    font-size: 1.4rem;
    letter-spacing: 0.002em;
    line-height: 2.5em;
  }
}
.property__appeal-content {
  display: grid;
  grid-template-columns: 545px auto;
  column-gap: 20px;
  margin-block: 289px 586px;
}
@media screen and (max-width: 1600px) {
  .property__appeal-content {
    grid-template-columns: 436px auto;
  }
}
@media screen and (max-width: 1400px) {
  .property__appeal-content {
    margin-block: 75px 186px;
  }
}
@media screen and (max-width: 1200px) {
  .property__appeal-content {
    grid-template-columns: 348px auto;
  }
}
@media screen and (max-width: 1024px) {
  .property__appeal-content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-content .property__content-headline {
    font-size: 1.6rem;
  }
}
.property__appeal-item01 {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 1024px) {
  .property__appeal-item01 {
    grid-area: unset;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-item01 {
    width: 62%;
  }
}
.property__appeal-item02 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 1024px) {
  .property__appeal-item02 {
    grid-area: unset;
    margin-block: 104px;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-item02 {
    margin-block: 83px;
  }
}
.property__appeal-item03 {
  grid-area: 2/2/3/3;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 42px;
  margin-top: 376px;
}
@media screen and (max-width: 1200px) {
  .property__appeal-item03 {
    gap: 33px;
    margin-top: 413px;
  }
}
@media screen and (max-width: 1024px) {
  .property__appeal-item03 {
    grid-area: unset;
    justify-self: flex-end;
    width: fit-content;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-item03 {
    width: 100%;
    flex-direction: column;
  }
}
.property__appeal-item-container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .property__appeal-item-container {
    width: 100%;
  }
}
.property__appeal-item-image01 {
  width: 545px;
  height: 882px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1600px) {
  .property__appeal-item-image01 {
    width: 436px;
  }
}
@media screen and (max-width: 1200px) {
  .property__appeal-item-image01 {
    width: 348px;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-item-image01 {
    width: 100%;
    height: auto;
    aspect-ratio: 234/330;
  }
}
.property__appeal-item-image02 {
  width: 577px;
  height: 357px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .property__appeal-item-image02 {
    width: 100%;
    height: auto;
  }
}
.property__appeal-item-image03 {
  width: 388px;
  height: 627px;
}
@media screen and (min-width: 1600px) {
  .property__appeal-item-image03 {
    width: 310px;
    height: auto;
  }
}
@media screen and (max-width: 1600px) {
  .property__appeal-item-image03 {
    width: 310px;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .property__appeal-item-image03 .property__appeal-item-image03-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .property__appeal-item-image03 {
    width: 60%;
    height: auto;
    aspect-ratio: 227/300;
  }
  .property__appeal-item-image03 .property__appeal-item-image03-pc {
    display: none;
  }
}
.property__appeal-text {
  text-align: right;
}
.property__appeal-text--center {
  text-align: center;
}
.property__access {
  display: flex;
  gap: 229px;
  margin-bottom: 467px;
}
@media screen and (max-width: 1400px) {
  .property__access {
    gap: 180px;
    margin-bottom: 373px;
  }
}
@media screen and (max-width: 1024px) {
  .property__access {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 200px;
  }
}
.property__access-map {
  width: 100%;
  height: 658px;
  filter: brightness(80%);
}
@media screen and (max-width: 767px) {
  .property__access-map {
    position: relative;
    width: 105%;
    height: 199px;
    right: 0;
  }
}
.property__access-map iframe {
  width: 100%;
  height: 100%;
}
.property__area {
  margin-bottom: 239px;
}
.property__area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 84px 8rem;
  margin: 54px auto 0;
  width: 1290px;
  max-width: 80%;
}
@media screen and (max-width: 1024px) {
  .property__area-list {
    grid-template-columns: 1fr;
    gap: 43px;
  }
}
@media screen and (max-width: 767px) {
  .property__area-list .property__content-headline {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .property__area-list .property__content-text {
    font-size: 1.4rem;
  }
}
.property__subd-map {
  position: relative;
  height: auto;
  margin: 200px 100px;
}
@media screen and (max-width: 1600px) {
  .property__subd-map {
    margin: 200px 150px;
  }
}
@media screen and (max-width: 1024px) {
  .property__subd-map {
    margin: 50px 0;
  }
}
.property__subd-map-img {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.property__subd-map-compass {
  position: absolute;
  top: 50%;
  left: -62px;
  transform: translateY(-50%);
  width: 61px;
  height: 80px;
}
@media screen and (max-width: 1200px) {
  .property__subd-map-compass {
    left: 0;
    width: 40px;
    height: 51px;
  }
}
.property__subd-map-details {
  position: absolute;
  bottom: 85px;
  right: -200px;
  width: 310px;
  border-radius: 10px;
  border: 1px solid #fff;
  transition: 0.3s ease;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .property__subd-map-details {
    right: -120px;
    width: 200px;
    border-radius: 5px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .property__subd-map-details {
    display: none;
  }
}
.property__subd-map-details.active {
  opacity: 1;
}
.property__subd-map-detail-header {
  background: #504c49;
  border-bottom: 1px solid #fff;
  font-size: 2.4rem;
  padding: 16px;
  color: #eae6e4;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .property__subd-map-detail-header {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.property__subd-map-detail-item {
  display: flex;
  background-color: #2f2f2f;
}
.property__subd-map-detail-item span {
  display: block;
  padding: 16px 22px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .property__subd-map-detail-item span {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.property__subd-map-detail-item span:first-of-type {
  width: 130px;
}
@media screen and (max-width: 1200px) {
  .property__subd-map-detail-item span:first-of-type {
    width: 100px;
  }
}
.property__subd-map-detail-item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.property__subd-data-pc {
  display: block;
  margin-bottom: 466px;
}
.property__subd-data-pc.main-table-content {
  margin-top: -220px;
}
@media screen and (max-width: 1200px) {
  .property__subd-data-pc {
    margin-bottom: 300px;
  }
}
@media screen and (max-width: 767px) {
  .property__subd-data-pc {
    display: none;
  }
}
.property__subd-data-pc table {
  width: 100%;
  border-collapse: collapse;
}
.property__subd-data-pc th,
.property__subd-data-pc td {
  width: 21%;
  padding: 16px 30px;
  border-bottom: 0.4px solid #fff;
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .property__subd-data-pc th,
  .property__subd-data-pc td {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .property__subd-data-pc th,
  .property__subd-data-pc td {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
}
.property__subd-data-pc th:first-of-type,
.property__subd-data-pc td:first-of-type {
  width: 16%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .property__subd-data-pc th:first-of-type,
  .property__subd-data-pc td:first-of-type {
    padding-left: 30px;
  }
}
.property__subd-data-pc th:last-of-type,
.property__subd-data-pc td:last-of-type {
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .property__subd-data-pc th:last-of-type,
  .property__subd-data-pc td:last-of-type {
    padding-right: 30px;
  }
}
.property__subd-data-pc th {
  background: #504c49;
  font-weight: 400;
}
.property__subd-data-pc td {
  text-align: right;
}
.property__subd-data-pc td:first-of-type {
  text-align: left;
}
.property__subd-data-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .property__subd-data-sp {
    display: block;
    width: 100%;
    border-bottom: 0.4px solid #eae6e4;
    margin-bottom: 200px;
  }
}
.property__subd-item-data, .property__subd-item-header {
  display: grid;
  grid-template-columns: 42% 58%;
  font-size: 14px;
  color: #fff;
}
.property__subd-item-data span, .property__subd-item-header span {
  padding: 16px 22px;
}
.property__subd-item-header {
  background: #504c49;
  border-top: 0.4px solid #eae6e4;
  position: relative;
}
.property__subd-item-header::after {
  content: "";
  width: 10px;
  height: 5px;
  position: absolute;
  top: 25px;
  right: 22px;
  background: url("/static/img/icons/caret.svg");
  transform: rotate(180deg);
}
.property__subd-item-header.active {
  border-bottom: 0.4px solid #eae6e4;
}
.property__subd-item-header.active::after {
  transform: rotate(0deg);
}
.property__subd-item-data {
  display: none;
}
.property__subd-item-data.active {
  display: grid;
}
.property__layout {
  margin-bottom: 435px;
}
@media screen and (max-width: 767px) {
  .property__layout {
    margin-bottom: 200px;
    padding: 0;
  }
}
.property__layout-slider {
  margin-top: 189px;
  display: grid;
  grid-template-columns: 85% 12%;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .property__layout-slider {
    margin-top: 75px;
    grid-template-columns: 1fr;
  }
}
.property__specifications {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, auto);
  margin-bottom: 456px;
}
@media screen and (max-width: 1024px) {
  .property__specifications {
    grid-template-columns: 1fr;
    margin-bottom: 290px;
  }
}
@media screen and (max-width: 767px) {
  .property__specifications {
    gap: 80px;
    margin-bottom: 200px;
  }
}
.property__spec-item01 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .property__spec-item01 {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: right;
  }
}
.property__spec-item01 .property__content-headline {
  text-align: right;
}
.property__spec-item01 .property__content-text {
  text-align: justify;
  max-width: 41rem;
}
.property__spec-text {
  max-width: 417px;
}
.property__spec-item02 {
  width: 40%;
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .property__spec-item02 {
    position: relative;
    top: 0;
    left: 0;
    transform: unset;
  }
}
@media screen and (max-width: 767px) {
  .property__spec-item02 {
    width: 100%;
    margin-block: 83px;
  }
}
.property__spec-item02 .property__content-headline {
  text-align: right;
}
.property__spec-item02 .property__content-text {
  text-align: justify;
}
.property__spec-item03 {
  position: relative;
  right: 122px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 25px;
  margin-top: 429px;
}
@media screen and (max-width: 1024px) {
  .property__spec-item03 {
    right: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .property__spec-item03 {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .property__spec-item03 .property__content-headline {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .property__spec-item03 .property__content-headline {
    text-align: right;
  }
}
.property__spec-image01 {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .property__spec-image01 {
    width: 234px;
    height: 330px;
  }
}
.property__spec-image03 {
  width: 26%;
}
@media screen and (max-width: 767px) {
  .property__spec-image03 {
    width: 195px;
    height: 316px;
  }
}
.property__outline {
  margin-bottom: 188px;
}
@media screen and (max-width: 767px) {
  .property__outline {
    margin-bottom: 90px;
  }
}
.property__outline-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-right: 0.4px solid #504c49;
  border-top: 0.4px solid #eae6e4;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .property__outline-table {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .property__outline-table {
    margin-bottom: 80px;
  }
}
.property__outline-item {
  display: flex;
  border-bottom: 0.4px solid #eae6e4;
}
.property__outline-th, .property__outline-td {
  padding: 24px 30px;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .property__outline-th, .property__outline-td {
    font-size: 14px;
    padding: 16px;
  }
}
.property__outline-th {
  width: 34.5%;
  background: #504c49;
}
.property__outline-td {
  width: 65.5%;
}
.property__subd-ca {
  position: absolute;
  width: 62%;
  top: 11%;
  left: 0;
  right: 0;
  margin: auto;
  height: auto;
  aspect-ratio: 543/444;
}
@media screen and (max-width: 767px) {
  .property__subd-ca {
    pointer-events: none;
  }
}
.property__subd-ca-box {
  width: 50%;
  height: auto;
  aspect-ratio: 295/160;
  position: absolute;
  transition: 0.3s ease;
}
.property__subd-ca-box:hover {
  background: #fff;
}
.property__subd-ca-box:hover .property__subd-ca-text > svg > path {
  fill: #000;
}
.property__subd-ca-box:first-child, .property__subd-ca-box:nth-child(2), .property__subd-ca-box:nth-child(3) {
  right: 0;
}
.property__subd-ca-box:first-child, .property__subd-ca-box:nth-child(6) {
  top: 0;
}
.property__subd-ca-box:nth-child(2), .property__subd-ca-box:nth-child(5) {
  top: 33%;
}
.property__subd-ca-box:nth-child(3), .property__subd-ca-box:nth-child(4) {
  bottom: 0;
  aspect-ratio: 295/163;
}
.property__subd-ca-box:nth-child(4), .property__subd-ca-box:nth-child(5), .property__subd-ca-box:nth-child(6) {
  left: 0;
}
.property__subd-ca-box:nth-child(4) .property__subd-ca-text, .property__subd-ca-box:nth-child(5) .property__subd-ca-text, .property__subd-ca-box:nth-child(6) .property__subd-ca-text {
  left: 37%;
}
.property__subd-ca-box:nth-child(4) .property__subd-ca-text {
  top: -6%;
}
.property__subd-ca-text {
  width: 12%;
  top: -3%;
  bottom: 0;
  position: absolute;
  left: 51%;
}
.property__subd-ca-text > svg {
  width: 100%;
  height: 100%;
}
.property__subd-ca-text > svg > path {
  transition: 0.3s ease;
}

.overview {
  position: relative;
  width: 100%;
  padding: 305px 0 212px;
  overflow: hidden;
  color: #000;
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 163px 0 93px;
  }
}
.overview::before {
  content: "";
  position: absolute;
  background-color: #f4f3f1;
  width: 100%;
  height: 100%;
  border-top-left-radius: 800px 120px;
  border-top-right-radius: 800px 120px;
  top: 183px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .overview::before {
    top: 99px;
  }
}
.overview__content {
  position: relative;
  max-width: 1419px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 2;
}
.overview__content-title {
  margin-bottom: 100px;
  font-size: 4.8rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .overview__content-title {
    margin-bottom: 40px;
    font-size: 2.8rem;
  }
}
.overview__content-list {
  border-bottom: 1px solid #decbad;
}
.overview__content-item {
  padding: 20px 0;
  border-top: 1px solid #decbad;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .overview__content-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.overview__content-item span {
  width: 350px;
  padding: 0 30px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .overview__content-item span {
    width: 100%;
    padding: 0 22px;
    font-size: 1.4rem;
  }
}
.overview__content-item p {
  width: calc(100% - 350px);
  padding: 0 30px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .overview__content-item p {
    width: 100%;
    padding: 0 22px;
    font-size: 1.4rem;
  }
}

.property__mv .splide__track {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .property__mv .splide__track .property_mv_pc {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .property__mv .splide__track .property_mv_sp {
    display: none;
  }
}

.property__layout-slider-main {
  height: 100%;
}
.property__layout-slider-main .splide__track {
  height: 100%;
}
.property__layout-slider-main .splide__slide {
  background: #f6f2ed;
}

@media screen and (max-width: 767px) {
  .property__layout-slider-nav {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .property__layout-slider-nav .splide__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 0;
  }
}
.property__layout-slider-nav .splide__slide {
  background: #f6f2ed;
}
@media screen and (max-width: 767px) {
  .property__layout-slider-nav .splide__slide {
    width: 32% !important;
    flex: 0 0 auto;
  }
}
.property__layout-slider-nav .splide__slide.is-active {
  border: none !important;
}

.overflow {
  overflow: hidden;
}

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

.pc-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

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

.gold {
  color: #b29d33;
}

.nowrap {
  text-wrap: nowrap;
}

.text-stroke-04-white {
  -webkit-text-stroke: 0.4px #eae6e4;
}
.text-stroke-04-gold {
  -webkit-text-stroke: 0.4px #b29d33;
}
.text-stroke-04-brown {
  -webkit-text-stroke: 0.4px #574e47;
}
.text-stroke-03-white {
  -webkit-text-stroke: 0.3px #eae6e4;
}
.text-stroke-03-gold {
  -webkit-text-stroke: 0.3px #b29d33;
}
.text-stroke-03-brown {
  -webkit-text-stroke: 0.3px #574e47;
}
.text-stroke-02-white {
  -webkit-text-stroke: 0.2px #eae6e4;
}
.text-stroke-02-gold {
  -webkit-text-stroke: 0.2px #b29d33;
}
.text-stroke-02-brown {
  -webkit-text-stroke: 0.2px #574e47;
}