@charset "UTF-8";

@font-face {
  /* ① ここにfont-familyで指定したい名前を書く*/
  font-family: "satoshi";

  /* フォントが置かれているパスを書く */
  src: url(../font/Satoshi-Medium.woff) format(”woff”);
  /* フォントファイルのパスとフォーマットを指定 */
}

body {
  font-family: "IBM Plex Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .1em;

  color: #333333 !important;
  letter-spacing: .1rem !important;
  background: none !important;
  transition: .3s;

}

.ibm-plex-sans-jp-regular {
  font-family: "IBM Plex Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans-jp-semibold {
  font-family: "ibm-plex-sans-jp", sans-serif;
font-weight: 700;
font-style: normal;
}

.kozuka {
  font-family: "kozuka-gothic-pr6n", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.btn {
  transition: opacity 0.4s ease;
}

.btn:hover {
  cursor: pointer;
  opacity: 0.7;
}



.loading_wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading_logo {
  width: 100px;
}

.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
  
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*メインビジュアル*/



.movie {
  position: relative;
  height: 100vh;
}

.parallax-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

video {
  position: absolute;
  z-index: -1;
  width: 100vw;
    left: 50%;         /* 中央寄せ用 */
    top: 50%;
    transform: translate(-50%, -50%); /* 中央に配置 */
    object-fit: cover; /* はみ出しつつトリミング */
}

img.video_logo{
  position: absolute;
  top: 100px;
  left: 40px;
  width: 800px;
  height: auto;
  z-index: 0;
}

.video_overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  z-index: 1;
}
@media (max-width: 1023px) {
  video {
    width: auto;       /* 横幅はみ出してOK */
    height: 100vh;     /* 画面の高さにフィット */
  }

img.video_logo{
  display: none;
}
}

.section_inner {}

.section_inner h3 {
  padding: 80px 0 40px;
  max-width: 940px;
  margin: 0 auto;
}

.section_inner h3 img {
  max-width: 330px;
}

.news_wrap {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 50px;
}

.news_inner {
  max-width: 1200px;
  margin: 0 auto;
}

h4 {

  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 1.125rem;
}

.topics_section h4 {
  margin: 0;
  padding: 0;
  padding-bottom: 60px;
}

ul.update {
  padding: 0;
}
ul.update li {
  border-bottom: 1px dashed #4C4948;
  padding: 10px 0;
}
ul.update li:last-of-type{
  border: none;
}

ul.update li div{
  max-width: 960px;
    margin: 0 auto;
  list-style: none;
  display: flex;
  /* フレックスボックスにする */
  align-items: center;
  /* 縦の位置指定 */
  justify-content: flex-start;
  /* 横の位置指定 */
  flex-direction: row;
  /* 要素の並び順 */
  flex-wrap: wrap;
  /* 折り返し指定 */
}

ul.update li span {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

ul.update li span.news-date {
  width: 13%;
}


ul.update li span.news-tag {
  color: #fff;
  padding: 0px 5px;
  font-size: 10px;
  width: 6%;
  text-align: center;
  margin-right: 10px;
}



.tag_new {
  background-color: #a86b6d;
}
.tag_topics {
  background-color: #a8a26b;
}

@media (max-width: 1023px) {

  h4 {
    font-size: 14px;
}
  .section_inner h3 {
    padding: 40px 0 40px 20px;
}
  .section_inner h3 img {
    max-width: 300px;
}
.news_wrap {
    padding: 40px 0;
}
.topics_section h4 {
    padding-bottom: 40px;
}
ul.update {
    padding: 0 20px;
}
ul.update li span {
  font-size: 12px;
}
ul.update li span.news-date {
  width: 30%;
}
ul.update li span.news-tag {
  width: 17%;
}
}

#section_slider {
  padding: 120px 0 90px;
}

#section_slider h4 {
  padding-bottom: 0;
  margin: 0;
  margin-bottom: 20px;
}

.slider_soldout {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, .4);
}

.slider_soldout .slick-list {
  margin: 0 -20px;
}

.slider_soldout .slick-slide {
  margin: 0 20px;
  background-color: #fff;
  padding: 28px 12px 12px 12px;
}

.slider_soldout h5 {
  text-align: center;
  font-size: 12px;
  margin: 0 auto 28px;
  font-weight: 700;
}

.slider .slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slider .slick-next:before {
  background: url(../images/top/slick_r.svg) !important;
  background-size: contain !important;
  opacity: 1;
}

.slider .slick-prev:before {
  background: url(../images/top/slick_l.svg) !important;
  background-size: contain !important;
  opacity: 1;
}

.slick-prev,
.slick-next {
  z-index: 10;
  opacity: 1;
  color: #000;
}

.slick-next {
  right: -60px !important;
  z-index: 11;
  width: 70px !important;
  height: 70px !important;
}

.slick-prev {
  left: -60px !important;
  z-index: 11;
  width: 70px !important;
  height: 70px !important;
}

.slick-next:before,
.slick-prev:before {
  font-size: 50px !important;
}

.slick-slide img {
   border-radius: 8px;
}

.btn_limited {
  max-width: 500px;
  margin: 90px auto 0;
}

@media (max-width: 1023px) {

  #section_slider {
    padding: 90px 20px;
}

  .slick-prev {
    left: 0px !important;
    width: 50px !important;
    height: 50px !important;
}
.slick-next {
    right: 0px !important;
    width: 50px !important;
    height: 50px !important;
}

}

.top_filter {
  position: relative;
}



#section_company{
  background-image: url(../images/top/bg_img01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.overlay {
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  padding: 140px 0 90px;
}

.overlay_contents {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /*横方向の位置を調整*/
  align-items: center;
  /* 縦の位置指定 */
  gap:4.1666%;

}


.company_l {
  max-width: 47.91%;
  width: 100%;
}

.company_r {
  max-width: 47.91%;
  width: 100%;
  background-color: #fff;
  padding: 40px;
}

.company_l h4 {
  max-width: 340px;
  text-align: left;
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 36px;
  padding: 0;
}

.company_l h4 img {
  margin-bottom: 15px;
}

.company_l p {
  font-size: 16px;
  color: #595757;
  line-height: 35px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 50px;
}

.overlay_btn {
  max-width: 250px;
}

.company_number_wrap {
  width: 100%;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: center;
  /*横方向の位置を調整*/
  align-items: start;

}

.company_number_wrap+.company_number_wrap {
  margin-top: 50px;
}

.company_number {
  width: 10%;
}

.company_number img {
  height: 42px;
  width: auto;
}

.company_number_txt {
  width: 80%;
  border-left: 1px solid #595757;
  padding-left: 18px;
}

.company_number_txt p:nth-of-type(1) {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: bold;
  line-height: 1em;
}

.company_number_txt p:nth-of-type(2) {
  font-size: 14px;
  color: #595757;
  margin: 0;
}

@media (max-width: 1023px) {
  .overlay_contents {
    gap: 0;
    flex-wrap: wrap;
    padding: 0 20px;
}
  .company_l {
    max-width: 100%;
}
.company_r {
    max-width: 100%;
    padding: 40px 20px;
    margin-top: 40px;
}

.company_l h4 {
    max-width: 270px;
    font-size: 16px;
    margin: 0 0 36px;
}
.company_l p {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 40px;
}
.company_number {
    width: 15%;
}
.company_number_txt p:nth-of-type(1) {
    margin: 0 0 10px;
}
}

#section_brand {
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  /* 縦の位置指定 */
}


#section_brand>img {
  display: flex;
  justify-content: flex-end;
  max-width: 464px;
  width: 100%;
  margin: 0 0 0 auto;
}

.brand_l {
  position: absolute;
  max-width: 670px;
  padding-left: 20px;
  z-index: 2;
}

.mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, .5);
  top: 0;
  left: 0;
}

#section_brand h4 {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  align-items: baseline;
  font-size: 17px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 50px;
}

#section_brand h4 img {
  max-width: 300px;
  margin-right: 14px;
}

.brand_l p {
  font-size: 16px;
  color: #595757;
  line-height: 35px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}


@media (max-width: 1023px) {
  .brand_l {
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
}
  #section_brand>img {
    max-width: 100%;
    width: 100%;
    margin: 0;
}
#section_brand h4 {
    font-size: 16px;
}
#section_brand h4 img {
    max-width: 190px;
    margin-right: 14px;
}
.brand_l p {
    font-size: 14px;
    color: #333;
    line-height: 28px;
}
.mask {
    background-color: rgba(255, 255, 255, .8);
}
}

#section_monorie {
  background-color: rgba(255, 255, 255, 1);
}

#section_monorie .overlay {
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 110px;
    right: 0;
    height: 100%;
width: unset;
}

#section_monorie .overlay .mask {
  background-color: rgba(0, 0, 0, .5);
}

.monorie_r {
  border: 5px solid #fff;
  padding: 26px;
  z-index: 2;
}

.monorie_r h4 {
  max-width: 196px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.monorie_r p {
  color: #fff;
  text-align: center;
  margin: 50px auto;
  font-size: 16px;
  line-height: 35px;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.monorie_r .overlay_btn {
  margin: 0 auto;
}


@media (max-width: 1023px) {
  #section_monorie .overlay {
    position: static;
    padding: 50px 20px;
            justify-content: center;
}
#section_monorie .overlay .mask {
}
#section_monorie {
  background-image: url(../images/top/bg_img03.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section_monorie_img{
    display: none;
}
.monorie_r {
    padding: 50px 20px;
}
.monorie_r p {
    font-size: 14px;
}
}


#section_quality {
  background: #c2d1e1;
  background: -moz-linear-gradient(#ffffff 60%, #c2d1e1 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#c2d1e1));
  background: -webkit-linear-gradient(#ffffff 0%, #c2d1e1 100%);
  background: -o-linear-gradient(#ffffff 0%, #c2d1e1 100%);
  background: linear-gradient(#ffffff 0%, #c2d1e1 100%);
  padding: 90px 0 290px;
  position: relative;
}

.quality_sticky {
  position: sticky;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
  max-width: 230px;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
}

.quality_contents {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

#section_quality>.quality_contents:nth-child(2),
#section_quality>.quality_contents:nth-child(4) {
  justify-content: start;
}

#section_quality>.quality_contents:nth-child(3) {
  justify-content: end;
}


.quality_contents img {
  max-width: 300px;
  width: 100%;
}







@media (max-width: 1023px) {
  .quality_contents {
    padding: 0 20px;
    margin-bottom: 30px;
}
.quality_contents img {
    max-width: 200px;
}
#section_quality {
    padding: 50px 0 120px;
}
.quality_sticky {
    margin: 0 auto 50px;
        left: unset;
    transform: unset;
}

}

:root {
  --dh-roop-svg-width: 1480px;
  --dh-roop-svg-height: 222px;
}

@media (max-width: 1023px) {
  :root {
    --dh-roop-svg-width: 1100px;
    --dh-roop-svg-height: 165px;
  }
}

.roop {
  position: absolute;
  bottom: 0;
  height: var(--dh-roop-svg-height);
  overflow: hidden;
}

.roop_track {
  display: flex;
  width: calc(var(--dh-roop-svg-width) * 2);
  animation: roopMove 20s linear infinite;
  will-change: transform;
}

.roop_track img {
  width: var(--dh-roop-svg-width);
  height: var(--dh-roop-svg-height);
  flex-shrink: 0;
}

@keyframes roopMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(var(--dh-roop-svg-width) * -1));
  }
}

/*TOP物件情報フリップ機能*/

.property-item {
  position: relative;
  perspective: 1000px;
  height: 400px !important;
}

/* 表面 */
.flip-card-front {
  position: relative;
  height: 100%;
  /* ← 追加 */

  /* ▼ ここ追加（背景化） */
  background-size: cover;
  /* 横トリミング */
  background-position: center;
  /* 中央基準 */
  background-repeat: no-repeat;
}

/* 裏面 */
.flip-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

.flip-card-inner {
  position: relative;
  height: 100%;
  /* ← 追加（重要） */
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

@media (hover: hover) {
  .property-item:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
}

/* タップ用 */
.property-item.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
}

.slider_bnr_img {
  /* height: 300px; */
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* 裏面画像 */
.back-image img {
  width: 100%;
  height: auto;
  /* border: #51779f solid 1px; */
  display: block;
  /* 余白防止 */
}

/* テキスト */
.slide_concept {
  text-align: center;
  font-size: 12px;
  margin: 0 auto 28px;
  font-weight: 700;
  color: #51779f;
}

.slide_soldout {
  color: red;
}

.back-lead{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  margin: 0 auto;
  color: #51779f;
}
.flip-card-front .back-lead p{
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.flip-card-front .back-lead p span{
  font-size: 12px;
  color: #333;
}
/* .flip-card-front .back-lead p::after {
    background-color: #51779f;
    bottom: -15px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 120px;
} */
.back-lead p{
  font-size: 12px;
  line-height: 1.4;
  max-width: 21em;
  text-align: center;
}

@media (max-width: 1023px) {
  .property-item {
    height: 400px !important;
  }
}