/*-------------------------------
---common
-------------------------------*/

section {
  margin-bottom: 12rem;
}


/*-------------------------------
---.home_hero
-------------------------------*/

.home_hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100vw;
  font-size: 2.4rem;
  overflow: hidden;
  margin-bottom: 12rem;
}

.home_hero .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home_hero .contents {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: var(--z-index-low);
  display: block;
  width: 100%;
  color: #fff;
  letter-spacing: 0.01em;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(0,0,0,0.4));
  padding-bottom: min(3vh, 3vw);
  padding-left: 6rem;
  padding-right: 6rem;
}

.home_hero .scrolldown {
  position: absolute;
  bottom: 0;
  left: 3rem;
  z-index: var(--z-index-low);
  width: 0.2rem;
  height: calc(min(3vh, 3vw) + (2em * 1.7));
  background-color: rgba(255, 255, 255, 0.3);
}

.home_hero .scrolldown::before {
  content: '';
  position: absolute;
  left: 0;
  z-index: var(--z-index-mid);
  display: block;
  width: 100%;
  height: 2.5%;
  background-color: #fff;
  animation: pathmove 1.5s ease-in-out infinite;
}

@keyframes pathmove {
  0% {
    top: 0;
    height: 0;
    opacity: 0;
  }
  30% {
    height: 30%;
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 0;
    opacity: 0;
  }
}


/*-------------------------------
---.home_topics
-------------------------------*/

.home_topics .slick-track {
  display: flex;
}

.home_topics .slick-slide {
  height: auto !important;
}

.home_topics .item a {
  width: 100%;
  height: 100%;
}

.home_topics .item {
  padding-top: calc(0.5rem + 0.3rem);
  padding-bottom: calc(0.5rem + 0.3rem);
}

.home_topics .item_inner {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: calc((41.25rem - 0.5rem * 2) * (2 / 3)) 1fr;
  width: 41.25rem;
  height: 100%;
  min-height: 41.25rem;
  box-shadow: 0 0 0.5rem 0.3rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.home_topics .item:not(.slick-center) .item_inner{
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

.home_topics .image {
  position: relative;
  overflow: hidden;
}

.home_topics .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .home_topics .item a:hover .image img {
    width: 120%;
    height: 120%;
  }
}

.home_topics .contents {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, max-content) 1fr;
  align-items: flex-end;
  grid-row-gap: 0.5em;
  line-height: 1.5;
  padding: 1.5rem;
}

.home_topics .contents dt {
  font-size: 1.2em;
}

.home_topics .contents dd {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(1em * 2 * 1.5);
}

.home_topics .contents dd.more_btn {
  color: var(--main-color);
  text-align: right;
}

.home_topics .contents dd.more_btn::before {
  content: '\f054';
  margin-right: 0.5em;
}

.home_topics .slider-arrow.slider-prev {
  left: calc(50% - 3.6rem - ((41.25rem + 1.25rem * 2) / 2));
}

.home_topics .slider-arrow.slider-next {
  right: calc(50% - 3.6rem - ((41.25rem + 1.25rem * 2) / 2));
}

.home_topics .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.home_topics .slick-dots {
  position: relative;
  bottom: -1rem;
}

.home_topics .slick-dots li {
  margin: 0 .3rem;
}

.home_topics .slick-dots li button:before,
.home_topics .slick-dots li.slick-active button:before {
  font-size: 1.2rem;
}

.home_topics .slick-dots li button:before {
  opacity: 0.35;
}

.home_topics .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* 登録数2~3の場合のフォールバック */
.home_topics .slider[data-count="2"] .slick-dots li:nth-child(n + 3),
.home_topics .slider[data-count="3"] .slick-dots li:nth-child(n + 4) {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.home_topics .slider[data-count="2"] .slick-dots li:nth-child(3) {
  right: calc(50% - 10px);
}

.home_topics .slider[data-count="2"] .slick-dots li:nth-child(4) {
  left: calc(50% + 10px);
}

.home_topics .slider[data-count="3"] .slick-dots li:nth-child(4) {
  right: calc(50% + 2.5px);
}

.home_topics .slider[data-count="3"] .slick-dots li:nth-child(5) {
  left: calc(50% - 2.5px);
}

.home_topics .slider[data-count="3"] .slick-dots li:nth-child(6) {
  left: calc(50% + 22.5px);
}


/*-------------------------------
---.event / .news-release
-------------------------------*/

.information {
  max-width: 100rem;
  margin-bottom: 6rem;
}

.information .contents {
  line-height: 1;
  margin-bottom: 6rem;
}

.information .contents .info_item a {
  display: grid;
}

.information .contents p+p {
  margin-top: 1rem;
}

.information .contents .info_date {
  font-size: var(--font-size-date);
  color: var(--sub-color);
  letter-spacing: 0.077em;
}

.information .contents .info_title {
  font-weight: 500;
  font-size: var(--font-size-subject);
  line-height: var(--line-height-narrow);
}

.information .contents .info_body {
  font-size: revert;
  line-height: var(--line-height-default);
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /** webkit以外のフォールバック */
  max-height: calc(1.92em * 3);
}


/*-------------------------------
---.event
-------------------------------*/

.event .contents .info_item:not(:last-child) {
  margin-bottom: 3rem;
}

.event .contents .info_item a {
  grid-template-columns: 27rem 1fr;
  grid-gap: 1.5rem 3rem;
}

.event .contents .info_item .info_image {
  grid-column: 1/2;
  grid-row: 1/3;
}

.event .contents .info_item .thumbnail {
  position: relative;
  overflow: hidden;
}

.event .contents .info_item .thumbnail::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 56.25%;
}

.event .contents .info_item .thumbnail img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.event .contents .info_item .event_area {
  display: inline-block;
  min-width: 8rem;
  font-size: var(--font-size-tag-area);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background-color: var(--main-color);
  padding: 0.15rem;
  margin-left: 1rem;
}

/*-------------------------------
---.news-release
-------------------------------*/

.news-release .contents .info_item:not(:last-child) {
  margin-bottom: 2rem;
}


/*-------------------------------
---.to_reservation
-------------------------------*/

.to_reservation {
  margin-bottom: 12rem;
}

.to_reservation a {
  text-align: center;
}


/*-------------------------------
---.blog
-------------------------------*/

.staff_blog .blog_item {
  position: relative;
}

.staff_blog .contents {
  max-width: 100rem;
  margin: 0 auto 4.5rem;
}

.staff_blog .blog_item a {
  color: #fff;
  grid-gap: 3rem;
}

.staff_blog .blog_image {
  height: max-content;
}

.staff_blog .blog_image::after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 50%;
}

.staff_blog .blog_image img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}

.staff_blog .blog_txt {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-low);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto max-content auto;
  grid-row-gap: 0.5rem;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .25);
  padding: 0.5rem 3rem;
}

.staff_blog .blog_date {
  font-size: var(--font-size-date);
  letter-spacing: 0.065em;
  line-height: 1;
}

.staff_blog .blog_title {
  font-weight: 500;
  line-height: 1.2;
  font-size: var(--font-size-subject);
}

.staff_blog .blog_body {
  font-size: revert;
  line-height: revert;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /** webkit以外のフォールバック */
  max-height: calc(1.92em * 3);
}


/*-------------------------------
---.house_navi
-------------------------------*/

.house_navi {
  max-width: var(--max-width-outer);
  margin-right: auto;
  margin-left: auto;
}

.house_navi .upper_contents {
  grid-gap: .8rem;
  margin-bottom: .3rem;
}

.house_navi .lower_contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: .8rem;
}

.house_navi .house_navi_item a {
  display: inline-block;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.house_navi .house_navi_item a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: var(--main-color);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 1025px) {
  .house_navi .house_navi_item a:hover::after {
    left: 0;
  }
}

.house_navi .house_navi_item .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: var(--z-index-low);
  width: 75%;
  max-width: 35rem;
  color: #fff;
}

.house_navi .house_navi_item .caption .subject,
.house_navi .house_navi_item .caption .subtitle {
  line-height: 1;
}

.house_navi .house_navi_item .caption .subtitle {
  letter-spacing: 0.1em;
}

.house_navi .upper_contents .house_navi_item .caption .subject {
  font-size: var(--font-size-exl);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.house_navi .lower_contents .house_navi_item .caption .subject {
  font-size: var(--font-size-exl);
  margin-bottom: 1rem;
}

.house_navi .house_navi_item .caption .subject::before {
  content: '\f054';
  font-size: 0.76em;
  font-weight: lighter;
  vertical-align: 0.1em;
  margin-right: 0.5em;
  margin-left: -1em;
}

.house_navi .upper_contents .house_navi_item .caption .subtitle {
  font-size: var(--font-size-xxl);
  margin-bottom: 2rem;
}

.house_navi .lower_contents .house_navi_item .caption .subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.house_navi .house_navi_item .caption .caption_txt {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
  font-size: 1.5rem;
}

@media screen and (min-width: 1025px) {
  .house_navi .house_navi_item:hover .caption_txt {
    visibility: visible;
    opacity: 1;
  }
}


/*-------------------------------
---.for_sale
-------------------------------*/

.for_sale .contents {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: max-content;
  grid-row-gap: 2rem;
}

.for_sale .contents .half_grid {
  grid-gap: 0;
}

.for_sale .article.homes {
  border: 0.3rem solid #23224c;
}

.for_sale .land {
  border: 0.3rem solid #5F8B9F;
}

.for_sale .archive_contents {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, auto);
  grid-row-gap: 3rem;
  align-items: flex-end;
  padding: 5rem 3rem 2rem;
}

.for_sale .land .archive_contents {
  background-color: #5F8B9F;
}

.for_sale .archive_title {
  width: 63.5%;
  margin-left: auto;
  margin-right: auto;
}

.for_sale .term_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5em, auto));
  grid-auto-rows: max-content;
  justify-content: center;
  grid-gap: 2rem;
}

.for_sale .term_list .menu-item a {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 0.1rem solid;
}

.for_sale .homes .term_list .menu-item a {
  color: #23224C;
  border-color: #23224C;
}

.for_sale .land .term_list .menu-item a {
  color: #fff;
  border-color: #333;
}

@media (hover: hover) and (pointer: fine) {
  .for_sale .term_list .menu-item a:hover {
    opacity: 0.7;
  }
}

.for_sale .term_list .menu-item a::before {
  content: '\f054';
  display: inline-block;
  width: 1.5625em;
  height: 1.5625em;
  font-size: 0.8em;
  color: #fff;
  line-height: 1.75;
  border-radius: 0.15em;
  margin-right: 0.25em;
}

.for_sale .homes .term_list .menu-item a::before {
  background-color: #23224C;
}

.for_sale .land .term_list .menu-item a::before {
  background-color: #333;
}

.for_sale .contents .image {
  height: 100%;
}

.for_sale .lisvo-iema .image {
  border-top: 0.3rem solid #23224c;
  border-bottom: 0.3rem solid #23224c;
  border-right: 0.3rem solid #23224c;
}

.for_sale .contents .image img {
  height: 100%;
  object-fit: cover;
}


/*-------------------------------
---.business_introduction
-------------------------------*/

.business_introduction .slider {
  background-color: #EDEDED;
}

.business_introduction .slider .item a {
  width: auto;
  opacity: 0.5;
  margin: 4rem 6.5%;
}

.business_introduction .slider .item.slick-active a {
  opacity: 1;
}

.business_introduction .slider .item .business_name {
  font-size: revert;
  text-align: center;
  margin-top: 1.5rem;
}

.business_introduction .slider .item .business_name::before {
  content: '\f054';
  margin-right: 0.5em;
}


/*-------------------------------
---.more_btn
-------------------------------*/

.more_btn.total a {
  font-size: revert;
  color: var(--main-color);
  border-color: var(--main-color);
  background-color: #fff;
}

.more_btn.total a:hover {
  background-color: var(--main-color);
  color: #fff;
}