@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
変数 fonts.scss
===========================================*/
/*===================================
userSS 追加
=====================================*/
.sec-article {
  position: relative;
}
.sec-article.border {
  border-top: 1px solid #000;
}
.sec-article.border::before {
  content: none;
  width: 10em;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  top: 2em;
  left: 2em;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.sec-article.border::after {
  content: "";
  width: 1px;
  display: inline-block;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0%;
  transform: translate(0%, 0);
}
@media screen and (max-width: 960px) {
  .sec-article.border::after {
    height: 90%;
  }
}
.sec-article.border h2 {
  position: relative;
}
.sec-article.border h2::after {
  content: "";
  width: 150%;
  left: -30%;
}
.sec-article .article-inner {
  overflow-x: hidden;
}

.editor-style {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
@media all and (-ms-high-contrast: none) {
  .editor-style {
    word-break: break-all;
  }
}
.editor-style p {
  line-height: 2;
}
.editor-style p:not(:last-child) {
  margin-bottom: 3em;
}
.editor-style mark {
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.editor-style mark::after {
  content: "";
  width: 100%;
  display: inline-block;
  background: #ff0;
  z-index: -1;
}
.editor-style a {
  color: #005096;
  text-decoration: underline;
}
.editor-style a img {
  transition: 0.3s;
}
.editor-style a:hover {
  text-decoration: underline !important;
}
.editor-style a:hover img {
  opacity: 0.5;
}
.editor-style img {
  height: auto;
}
.editor-style h3 {
  line-height: 1.4;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: bold;
  padding: 0 0 1em;
  margin: 1em 0 2em;
  position: relative;
}
.editor-style h3::after {
  content: "";
  width: 110%;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: -5%;
  transform: translate(0%, 0);
}
.editor-style h4 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: bold;
  padding: 0 0 0 1em;
  margin: 1em 0 1.5em;
  line-height: 1.5;
  position: relative;
}
.editor-style h4::after {
  content: "";
  width: 9px;
  display: inline-block;
  height: 70%;
  background: #333;
  position: absolute;
  bottom: 50%;
  left: 0%;
  transform: translate(0%, 50%);
}
.editor-style h5 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  margin: 1em 0 1.5em;
}
.editor-style h6 {
  border-block: 3px solid #333;
  padding: 0.5em 0;
  margin: 2em 0 2em;
}
.editor-style strong {
  font-weight: bold;
}
.editor-style em {
  font-style: italic;
}
.editor-style ul {
  margin: 2em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .editor-style ul {
    padding: 1em;
  }
}
.editor-style ul li {
  position: relative;
  padding: 0 0 0 1.5em;
}
.editor-style ul li:not(:last-child) {
  margin-bottom: 0.7em;
}
.editor-style ul li::before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  top: 0;
  left: 0;
  position: absolute;
}
.editor-style ol {
  margin: 4em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .editor-style ol {
    padding: 1em;
  }
}
.editor-style ol li {
  padding: 0 0 0 2.5em;
  position: relative;
}
.editor-style ol li::before {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  content: counter(number);
  counter-increment: number;
  left: 0;
  top: 0.35em;
  width: 1.5em;
  height: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #202b51;
  color: white;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.editor-style ol li:not(:last-child) {
  margin-bottom: 1em;
}
.editor-style .blocks-gallery-grid,
.editor-style .wp-block-gallery {
  margin: 0;
}
.editor-style li.blocks-gallery-item {
  padding-left: 0;
}
.editor-style li.blocks-gallery-item::before {
  display: none;
}
.editor-style .wp-block-table {
  margin-block: 4em;
}
.editor-style .wp-block-image {
  margin-block: 4em;
}
.editor-style .wp-block-buttons {
  margin-block: 4em;
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button:last-of-type {
    margin-top: 2em;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
    width: 100%;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
    width: 100%;
  }
}
.editor-style .wp-block-columns {
  margin-block: 2em;
}
.editor-style .wp-block-table thead {
  border-bottom: 0px solid;
  background: #202b51;
  color: #fff;
  border: 1px solid #202b51;
}
.editor-style hr {
  border-top: 3px solid #000;
  width: 70%;
  margin: clamp(30px, 6vw, 60px) auto;
}
.editor-style table {
  width: 100%;
}
.editor-style table th, .editor-style table td {
  border: 1px solid #202b51;
  padding: 1em;
}
.editor-style table th {
  text-align: center;
}
.editor-style table th:not(:first-of-type) {
  border-left: 2px solid #fff;
}

/*==========================================
 動的一覧共通 
===========================================*/
.estate-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 960px) {
  .estate-list {
    max-width: 100%;
    margin-inline: auto;
  }
}
.estate-list .close-item .add01,
.estate-list .close-item .add03 {
  opacity: 0;
}
.estate-list .estate-item {
  max-width: 100%;
}
@media screen and (min-width: 961px) {
  .estate-list .estate-item {
    width: 32%;
  }
  .estate-list .estate-item:nth-of-type(n + 4) {
    margin-top: clamp(30px, 4vw, 150px);
  }
  .estate-list .estate-item:not(:nth-of-type(3n + 1)) {
    margin-left: 2%;
  }
}
@media screen and (max-width: 960px) {
  .estate-list .estate-item {
    width: 100%;
  }
}
.estate-list .estate-item a {
  position: relative;
}
@media (hover: hover) {
  .estate-list .estate-item a:hover:hover .item-img img {
    scale: 1.1;
  }
  .estate-list .estate-item a:hover:hover .item-more-wrap {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}
.estate-list .estate-item .close {
  position: relative;
}
.estate-list .estate-item .close .close-line {
  text-decoration: line-through;
}
.estate-list .estate-item .close .item-more-wrap {
  display: none;
}
.estate-list .estate-item .close .item-close-wrap {
  opacity: 1;
}
.estate-list .estate-item .item-close-wrap {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.estate-list .estate-item .item-close-wrap .item-close {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0em;
  text-align: center;
}
.estate-list .estate-item .item-close-wrap .item-close.en {
  font-size: clamp(1.4rem, 2.5vw, 3.6rem);
  letter-spacing: 0em;
  margin-bottom: 1em;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .estate-list .estate-item .item-close-wrap .item-close.en {
    font-size: clamp(1.4rem, 2.5vw, 3.6rem);
  }
}
.estate-list .estate-item .item-close-wrap .item-close.ja {
  font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
  font-weight: 100;
}
.estate-list .new-area.new {
  z-index: 10;
  position: absolute;
  top: -2%;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: clamp(50px, 6vw, 60px);
}
@media screen and (max-width: 960px) {
  .estate-list .new-area.new {
    top: 20px;
  }
}
.estate-list .item-wrap {
  position: relative;
}
@media screen and (max-width: 960px) {
  .estate-list .item-wrap {
    padding-top: 30px;
  }
}
.estate-list .item-head {
  position: relative;
}
.estate-list .item-img-wrap {
  position: relative;
}
.estate-list .item-img-wrap::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent 50%, #acbbc2);
  position: absolute;
  bottom: 0;
  left: 0%;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .estate-list .item-img-wrap::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, transparent 50%, #acbbc2);
    position: absolute;
    bottom: 0;
    left: 0%;
    z-index: 3;
  }
}
.estate-list .item-img {
  font-size: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #d4d4d4;
}
.estate-list .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.8;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate3d(0px, 0px, 0px) scale(1);
  object-fit: contain;
}
.estate-list .item-body {
  position: relative;
  z-index: 4;
}
.estate-list .item-ttl-block {
  display: flex;
  align-items: center;
}
.estate-list .item-ttl {
  padding: 0.5em 0;
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-top: 0;
  letter-spacing: 0.05em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 960px) {
  .estate-list .item-ttl {
    margin: 0.2em 0 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .estate-list .item-ttl {
    margin: 0.4em 0 0.4em;
  }
}
.estate-list .item-tag {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 2em;
}
.estate-list .item-tag .item-tag-name {
  padding: 0.5em 1em;
  border: 1px solid #000;
  border-radius: 100vmax;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
}
.estate-list .item-ttl-wrap {
  padding: 1.5em 0 0.5em;
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
}
@media screen and (max-width: 960px) {
  .estate-list .item-ttl-wrap {
    font-size: clamp(1.4rem, 1.6666666667vw, 1.6rem);
  }
}
.estate-list .item-address {
  padding: 0.5em 0;
}
.estate-list .item-txt {
  padding: 0.5em 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
}
@media screen and (max-width: 960px) {
  .estate-list .item-txt {
    font-size: clamp(1.4rem, 1.6666666667vw, 1.6rem);
  }
}
.estate-list .item-cat {
  font-size: clamp(1.4rem, 0.8333333333vw, 1.6rem);
}
@media screen and (max-width: 960px) {
  .estate-list .item-cat {
    font-size: clamp(1.4rem, 1.6666666667vw, 1.6rem);
  }
}
.estate-list .item-cat {
  display: flex;
  flex-wrap: wrap;
}
.estate-list .item-cat li:not(:last-child) {
  margin-right: 1em;
}
.estate-list .item-date {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
.estate-list .item-date li {
  padding-bottom: 2rem;
  display: flex;
}
.estate-list .item-date li span {
  font-size: 1.8rem;
}
.estate-list .item-date li span:first-child {
  min-width: 120px;
}

/*フッター直上、土地探しリンク*/
.link-request a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #202b51;
  color: #fff;
  border: 5px solid #202b51;
}
.link-request a:hover {
  background: #fff;
  color: #202b51;
}
.link-request a .txt {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.link-request a .txt .ttl_en {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-family: "Libre Baskerville", serif;
}
.link-request a .txt .ttl_txt {
  padding-bottom: 20px;
  font-size: 1.8rem;
}
.link-request a .txt .ttl_ja {
  font-size: clamp(2rem, 4vw, 2.4rem);
}

/*==========================================
 　一覧
===========================================*/
.archive-estate {
  color: #000;
}
.archive-estate .cts-ttl-ja {
  display: block;
}
.archive-estate .estate-read {
  display: flex;
  width: 90%;
  margin: 0 0 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read {
    width: 100%;
    flex-direction: column;
  }
}
.archive-estate .estate-read .left {
  flex: 0 0 70%;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read .left {
    margin-bottom: 30px;
  }
}
.archive-estate .estate-read .right {
  flex: 0 0 30%;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read .right {
    width: 100%;
  }
}
.archive-estate .estate-read .right .btn-more-flex {
  width: auto;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read .right .btn-more-flex {
    width: 100%;
  }
}
.archive-estate .estate-read .right .btn-more-hover {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  border: 1px solid #000;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read .right .btn-more-hover {
    flex-direction: column;
    width: 100%;
  }
}
.archive-estate .estate-read .right .btn-more-hover:hover:hover.btn-link .circle-arrow .circle-top .circle,
.archive-estate .estate-read .right .btn-more-hover:hover:hover .btn-link .circle-arrow .circle-top .circle {
  width: 100%;
}
.archive-estate .estate-read .right .btn-txt {
  text-align: center;
}
.archive-estate .estate-read .right .btn-txt span {
  display: block;
}
.archive-estate .estate-read .right .btn-txt .small {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-read .right .circle-arrow {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-top: 10px;
  }
}
.archive-estate .estate-navBlock {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-navBlock {
    width: 100%;
  }
}
.archive-estate .estate-navBlock .estate-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
}
.archive-estate .estate-navBlock .estate-nav li {
  position: relative;
  flex: 0 0 31.3333333333%;
}
.archive-estate .estate-navBlock .estate-nav li a {
  padding: 0.5em 1em;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
}
.archive-estate .estate-navBlock .estate-nav li a.current, .archive-estate .estate-navBlock .estate-nav li a:hover {
  background-color: #d4d4d4;
}
.archive-estate .estate-areaBlock {
  width: 90%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-areaBlock {
    width: 100%;
  }
}
.archive-estate .estate-areaBlock ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.archive-estate .estate-areaBlock ul li a {
  padding: 0.5em 1em;
  border: 1px solid #000;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  margin-top: 10px;
}
.archive-estate .estate-areaBlock ul li a.current, .archive-estate .estate-areaBlock ul li a:hover {
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
@media screen and (max-width: 767px) {
  .archive-estate .estate-areaBlock ul li a {
    font-size: 1.4rem;
    min-width: 100px;
  }
}
.archive-estate .estate-list {
  gap: 2%;
}
@media screen and (min-width: 577px) {
  .archive-estate .estate-list .estate-item {
    width: 48%;
  }
}
@media screen and (min-width: 961px) {
  .archive-estate .estate-list .estate-item {
    width: 30.6666666667%;
  }
}

/*==========================================
 　詳細
===========================================*/
.single-estate {
  /*タイトル共通*/
}
.single-estate .sec-ttl {
  text-align: center;
}
.single-estate .sec-ttl span {
  display: block;
}
.single-estate .sec-ttl .ttl-en {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.1em;
  font-family: "Libre Baskerville", serif;
  padding-bottom: 10px;
}
.single-estate .sec-ttl .ttl-ja {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.single-estate .estate-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-item {
    flex-direction: column-reverse;
  }
}
.single-estate .estate-aside {
  flex: 0 0 40%;
  position: sticky;
  top: clamp(50px, 5vw, 100px);
}
@media screen and (max-width: 767px) {
  .single-estate .estate-aside {
    position: static;
  }
}
.single-estate .estate-aside .estate-aside-ttl {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.1em;
}
.single-estate .estate-aside .item-tag {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  padding-bottom: clamp(20px, 5vw, 30px);
  margin-top: 20px;
}
.single-estate .estate-aside .item-tag .item-tag-name {
  padding: 0.5em;
  border: 1px solid #000;
  border-radius: 100vmax;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
}
.single-estate .estate-aside .day_date {
  text-align: right;
  padding-right: clamp(2rem, 5vw, 3rem);
  padding-bottom: 1.5rem;
}
.single-estate .estate-aside .day_date .date {
  padding-bottom: 0.5em;
}
.single-estate .estate-aside .item-date {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 2rem 0;
  margin-bottom: 1em;
}
.single-estate .estate-aside .item-date li {
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
}
.single-estate .estate-aside .item-date li span {
  font-size: 1.8rem;
}
.single-estate .estate-aside .item-date li span:first-child {
  min-width: 120px;
}
.single-estate .estate-aside .item-date li .price {
  font-size: clamp(2.4rem, 3vw, 2.8rem);
}
.single-estate .estate-aside .estate-desc .desc-ttl {
  margin-bottom: 20px;
}
.single-estate .estate-aside .estate-desc .desc-text {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.single-estate .estate-aside .btn-more-block {
  margin: clamp(10px, 2vw, 20px) 0;
}
.single-estate .estate-aside .estate-link {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-aside .estate-link {
    flex-direction: column;
  }
}
.single-estate .estate-aside .estate-link li {
  flex: 1;
}
.single-estate .estate-aside .estate-link li a {
  display: block;
  background-color: #202b51;
  border: 2px solid #202b51;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  transition: all 0.3s ease;
  text-align: center;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-aside .estate-link li a {
    margin-bottom: 10px;
  }
}
.single-estate .estate-aside .estate-link li a:hover {
  background-color: #fff;
  color: #202b51;
}
.single-estate .estate-aside .estate-link li a .ttl-en {
  font-family: "Libre Baskerville", serif;
  font-size: 2.1rem;
  padding-bottom: 10px;
}
.single-estate .estate-aside .estate-link li a .ttl-ja {
  font-size: 1.8rem;
}
.single-estate {
  /*aside*/
}
.single-estate .estate-contents {
  flex: 0 0 55%;
  max-width: 55%;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents {
    max-width: 100%;
  }
}
.single-estate .estate-contents {
  /*fv_slider*/
}
.single-estate .estate-contents .fv-slick {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .fv-slick {
    margin-bottom: 12px;
  }
}
.single-estate .estate-contents .fv-slick li {
  overflow: hidden;
  position: relative;
  border: 1px solid #d4d4d4;
  height: 80vh;
  max-height: 800px;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .fv-slick li {
    height: 50vh;
    max-height: 500px;
  }
}
.single-estate .estate-contents .fv-slick li img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.8;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate3d(0px, 0px, 0px) scale(1);
  object-fit: contain;
  height: 100%;
}
.single-estate .estate-contents .fv-thumb {
  margin: 0 -4px;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .fv-thumb {
    margin: 0 -2px;
  }
}
.single-estate .estate-contents .fv-thumb li {
  padding: 0 4px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  aspect-ratio: 1;
  border: 1px solid #d4d4d4;
  margin-right: 3%;
  max-width: 170px;
  max-height: 170px;
}
.single-estate .estate-contents .fv-thumb img {
  object-fit: contain;
  display: block;
  height: 100%;
}
.single-estate .estate-contents .fv-thumb .slick-current {
  opacity: 1;
}
.single-estate .estate-contents {
  /*plan*/
}
.single-estate .estate-contents .plan {
  background-color: #e4e4e4;
}
.single-estate .estate-contents .plan .plan-slick-wrap {
  position: relative;
}
.single-estate .estate-contents .plan .plan-slick {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .plan .plan-slick {
    width: 80%;
  }
}
.single-estate .estate-contents .plan .plan-slick li {
  overflow: hidden;
  background: #f5f5f5;
}
.single-estate .estate-contents .plan .plan-slick img {
  width: 100%;
  height: 60vh;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .plan .plan-slick img {
    height: 50vh;
  }
}
.single-estate .estate-contents .plan .plan-prev,
.single-estate .estate-contents .plan .plan-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 100vmax;
  background: #202b51;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .plan .plan-prev,
  .single-estate .estate-contents .plan .plan-next {
    width: 36px;
    height: 36px;
  }
}
.single-estate .estate-contents .plan .plan-prev {
  left: 8%;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .plan .plan-prev {
    left: 2%;
  }
}
.single-estate .estate-contents .plan .plan-next {
  right: 8%;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .plan .plan-next {
    right: 2%;
  }
}
.single-estate .estate-contents {
  /*division*/
}
.single-estate .estate-contents .land-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.single-estate .estate-contents .land-table th,
.single-estate .estate-contents .land-table td {
  padding: 24px 16px;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}
.single-estate .estate-contents .land-table th {
  font-weight: 700;
}
.single-estate .estate-contents .land-table td.price {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .land-table,
  .single-estate .estate-contents .land-table thead,
  .single-estate .estate-contents .land-table tbody,
  .single-estate .estate-contents .land-table tr,
  .single-estate .estate-contents .land-table th,
  .single-estate .estate-contents .land-table td {
    display: block;
  }
  .single-estate .estate-contents .land-table thead {
    display: none;
  }
  .single-estate .estate-contents .land-table tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .single-estate .estate-contents .land-table tr {
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .single-estate .estate-contents .land-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    text-align: left;
  }
  .single-estate .estate-contents .land-table td:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  .single-estate .estate-contents .land-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #666;
  }
}
.single-estate .estate-contents {
  /*life-info*/
}
.single-estate .estate-contents .life-info-slick-wrap {
  position: relative;
  padding-bottom: 80px;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick {
  margin-bottom: 40px;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick li {
  margin-right: 30px;
  display: flex;
  flex-direction: column;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick .img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick .text-box {
  margin-top: 12px;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick .title {
  font-size: clamp(1.8rem, 3vw, 2.1rem);
  padding-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
}
.single-estate .estate-contents .life-info-slick-wrap .life-info-slick .desc {
  margin-top: 15px;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.6;
}
.single-estate .estate-contents .life-info-slick-wrap .progress-wrap {
  position: relative;
  width: calc(100% - 180px);
  height: 12px;
}
.single-estate .estate-contents .life-info-slick-wrap .progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #cfcfcf;
  border-radius: 999px;
}
.single-estate .estate-contents .life-info-slick-wrap .progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 6px;
  background: #202b51;
  border-radius: 999px;
  width: 0%;
  transition: width 0.4s ease;
}
.single-estate .estate-contents .life-info-slick-wrap .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 16px;
}
.single-estate .estate-contents .life-info-slick-wrap .btn button {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #202b51;
  background: #202b51;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}
.single-estate .estate-contents .life-info-slick-wrap .btn button:hover {
  background: #fff;
  color: #202b51;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .life-info-slick-wrap {
    padding-bottom: 0;
  }
  .single-estate .estate-contents .life-info-slick-wrap .life-info-slick {
    margin-bottom: 24px;
  }
  .single-estate .estate-contents .life-info-slick-wrap .life-info-slick li {
    margin-right: 16px;
  }
  .single-estate .estate-contents .life-info-slick-wrap .progress-wrap {
    display: none;
  }
  .single-estate .estate-contents .life-info-slick-wrap .btn {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  .single-estate .estate-contents .life-info-slick-wrap .btn button {
    width: 48px;
    font-size: 16px;
  }
}
.single-estate .estate-contents {
  /*map*/
}
.single-estate .estate-contents .map-inner {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.single-estate .estate-contents .map-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .map-inner {
    aspect-ratio: 4/3;
  }
}
.single-estate .estate-contents {
  /*detail*/
}
.single-estate .estate-contents .detail-list {
  display: grid;
  grid-template-columns: 160px 1fr 160px 1fr;
  border-top: 1px solid #ddd;
}
.single-estate .estate-contents .detail-list dt,
.single-estate .estate-contents .detail-list dd {
  padding: 32px 24px;
  border-bottom: 1px solid #ddd;
}
.single-estate .estate-contents .detail-list dt {
  font-weight: 700;
}
.single-estate .estate-contents .detail-list .is-wide {
  grid-column: span 3;
}
.single-estate .estate-contents .detail-list .col2 {
  border-left: 1px solid #ddd;
}
.single-estate .estate-contents .detail-list .col2:nth-of-type(2n) {
  border-left: none;
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .detail-list .col2 {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .single-estate .estate-contents .detail-list {
    grid-template-columns: 120px 1fr;
  }
  .single-estate .estate-contents .detail-list dt,
  .single-estate .estate-contents .detail-list dd {
    padding: 20px 16px;
  }
  .single-estate .estate-contents .detail-list .is-wide {
    grid-column: span 1;
  }
}

/*other*/
.other-estate {
  background-color: #e5e5e5;
}

/*# sourceMappingURL=estate.css.map */
