@charset "UTF-8";
/*-------------------------------------------
BGグラデーション
-------------------------------------------*/

.movie_blk {
  width: 100%;
  height: auto;
  position: relative;
}
.movie_blk video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}
/*-------------------------------------------
タイトル枠
-------------------------------------------*/
.TtlBox {
  width: 100%;
  height: 100vh;
}

h1.ttl {
  font-size: 7.472vw;
  font-weight: 400;
  line-height: 1;
  padding: 10vw;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

h1.ttl span {
  display: block;
  margin-bottom: 2rem;
}

h1.ttl span.wh {
  font-size: 8.472vw;
  font-weight: 700;
  color: #0a2341;
  display: inline;
  transition: 0.3s;
}

.text-container {
  padding-left: 10vw;
}
.text-container p {
  font-size: 2vw;
  line-height: 1.6;
  transition: 0.3s;
}

@media only screen and (max-width: 780px) {
  .TtlBox {
    width: 100%;
    height: 100vh;
  }

  h1.ttl {
    font-size: 10.472vw;
    padding: 40vw 0 0 10vw;
  }

  h1.ttl span.wh {
    font-size: 11.472vw;
  }

  .text-container {
    margin-top: 10vw;
  }

  .text-container p {
    font-size: 5vw;
  }
}

/*-------------------------------------------
ABOUT枠
-------------------------------------------*/
.Aboutbox {
  padding: 10vw 15vw 0 10vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 7vw;
  margin-bottom: 20vh;
}

.AboutTxt {
  width: 45%;
  height: auto;
}

.Aboutbox h2 {
  font-size: 6.16vw;
  line-height: 5.4rem;
  font-weight: 400;
  color: #0a2341;
  position: absolute;
  bottom: 0;
  left: 30%;
  letter-spacing: 0.1em;
}

.AboutImg {
  width: 50%;
}

@media only screen and (max-width: 780px) {
  .Aboutbox {
    padding: 10vw 10vw;
    display: block;
    margin-bottom: 10vh;
  }

  .AboutTxt {
    width: 100%;
    height: auto;
    line-height: 3rem;
    margin-bottom: 2vh;
  }

  .Aboutbox h2 {
    font-size: 6.16vw;
    line-height: 5.4rem;
    font-weight: 400;
    color: #0a2341;
    position: inherit;
    bottom: 0;
    left: 0;
    letter-spacing: 0.1em;
    margin-bottom: 1vh;
  }

  .AboutImg {
    width: 100%;
  }
}

/*-------------------------------------------
物件情報枠
-------------------------------------------*/
.REBox {
  padding: 15vh 0 0;
  margin-bottom: 20vh;
}

.REBox h2 {
  font-size: 4.16vw;
  color: #0a2341;
  margin-left: 10vw;
  margin-bottom: 10vh;
  display: flex;
  align-items: center;
  position: relative;
}

.REBox h2::after {
  content: "";
  display: inline-block;
  width: 40vw;
  height: 1px;
  background-color: #0a2341;
  margin-right: 15px;
  position: absolute;
  right: 14vw;
  top: 50%;
  transition: 0.3s;
}

.REBox h2 span {
  font-size: 1.38vw;
  margin-left: 3.47vw;
  font-weight: 400;
}

.REBox article {
  border-radius: 15px;
  background: #fff;
  border: 1px solid #0a2341;
  width: 100%;
  height: 30rem;
  transition: 400ms;
  padding: 1rem;
  /* transition: box-shadow 1.4s ease-in-out;  */
}

.REBox article:hover {
  transform: scale(1.02); /* 拡大 */
  transition: 400ms;
}

.slide-media2 img {
  border-radius: 15px;
}

.category-tag {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  overflow: hidden;
  font-weight: bold;
  line-height: 2.4rem;
}

.newopenhouse {
  color: #e8d500;
  font-size: 1rem;
  float: left;
}

.newopenhouse::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 24px;
  background-image: url(../img/icon_new.webp);
  background-size: contain;
  vertical-align: middle;
  overflow: hidden;
  background-repeat: no-repeat;
}

.catDay {
  float: right;
}

.title01 {
  font-size: 1.1rem;
}

.pricebox span {
  color: #e60000;
}

span.price {
  font-size: 1.4rem;
  font-weight: bold;
}

.swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.REBox .swiper-button-prev,
.REBox .swiper-button-next {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.REBox .swiper-button-prev::before,
.REBox .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: #fff !important;
  width: 100%;
  height: 100%;
  border: 1px solid #0a2341;
}
.REBox .swiper-button-prev::after,
.REBox .swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  width: 35px;
  height: 7px;
  border: none;
  border-right: 2px solid #0a2341;
  border-bottom: 1px solid #0a2341;
  transform: skew(45deg);
  transition: 0.3s;
}

.REBox .swiper-button-prev::after {
  border-left: 2px solid #0a2341;
  transform: skew(-45deg);
  border-right: none;
}

.REBox .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.REBox .swiper-button-prev,
.REBox .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.REBox .swiper-button-prev {
  right: calc(100% - 11.6rem);
}
.REBox .swiper-button-next {
  left: calc(100% - 11.6rem);
}

@media only screen and (max-width: 1024px) {
  .REBox .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
  .REBox .swiper-button-next {
    left: calc(100% - 5.2rem);
  }

  .REBox article {
    height: 26rem;
  }
}

@media only screen and (max-width: 780px) {
  .REBox {
    margin-bottom: 10vh;
  }

  .REBox h2 {
    font-size: 7.16vw;
    display: block;
    margin-bottom: 5vh;
  }

  .REBox h2 span {
    font-size: 4.38vw;
    display: block;
    margin-left: 0;
    margin-top: 2vh;
  }

  .REBox h2::after {
    content: "";
    display: inline-block;
    width: 40vw;
    height: 1px;
    background-color: #0a2341;
    margin-right: 0px;
    position: absolute;
    right: 10vw;
    top: 50%;
    transition: 0.3s;
  }

  .REBox article {
    height: 50rem;
  }

  .slide-media2 .img-cover {
    margin-bottom: 2vw;
  }

  .title01 {
    font-size: 2rem;
    line-height: 3rem;
  }

  span.price {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .dayTime p {
    line-height: 3rem;
  }
}

@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .REBox .swiper-button-prev::before,
  .REBox .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .REBox .swiper-button-prev:hover::before,
  .REBox .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}

/*-------------------------------------------
NEWS枠
-------------------------------------------*/
.NEWSBox {
  padding: 15vh 0 0;
  margin-bottom: 20vh;
}

.NEWSBox h2 {
  font-size: 4.16vw;
  color: #0a2341;
  margin-left: 10vw;
  margin-bottom: 10vh;
  display: flex;
  align-items: center;
  position: relative;
}

.NEWSBox h2::after {
  content: "";
  display: inline-block;
  width: 40vw;
  height: 1px;
  background-color: #0a2341;
  margin-right: 15px;
  position: absolute;
  right: 14vw;
  top: 50%;
  transition: 0.3s;
}

.NEWSBox h2 span {
  font-size: 1.38vw;
  margin-left: 3.47vw;
  font-weight: 400;
}

.NewList {
  margin: 0 auto;
  max-width: 1080px;
}

.NewList h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.NewList h3 span {
  width: 15%;
  display: inline-block;
}

.NewList ul {
  border-bottom: 1px solid #0a2341;
  margin-bottom: 1rem;
}

.NewList ul li {
  border-top: 1px solid #0a2341;
  position: relative;
}

.notCat {
  background: #0a2341;
  border-radius: 5px;
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
}

.movbg {
  padding: 2rem;
}

.NewList ul li::before {
  content: "";
  display: block;
  width: 10px;
  height: calc(100% - 2rem);
  background: #0a2341;
  position: absolute;
  top: 1rem;
  left: 0;
}

.NewList ul li:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: rgb(10, 35, 65, 0.2);
  z-index: -1;
  transition: 0.4s;
}

.NewList ul li:hover:after {
  width: 100%;
}

@media only screen and (max-width: 780px) {
  .NEWSBox {
    margin-bottom: 10vh;
  }

  .NEWSBox h2 {
    font-size: 7.16vw;
    display: block;
    margin-bottom: 5vh;
  }

  .NEWSBox h2 span {
    font-size: 4.38vw;
    display: block;
    margin-left: 0;
    margin-top: 2vh;
  }

  .NEWSBox h2::after {
    content: "";
    display: inline-block;
    width: 40vw;
    height: 1px;
    background-color: #0a2341;
    margin-right: 0px;
    position: absolute;
    right: 10vw;
    top: 50%;
    transition: 0.3s;
  }

  .movbg {
    padding: 2rem 2rem 2rem 3rem;
  }

  .notCat {
    margin-bottom: 1vw;
  }

  .NewList h3 {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 1vw;
  }

  .movbg p {
    line-height: 2.4rem;
  }

  .NewList {
    padding: 10vw;
  }

  .NewList h3 span {
    display: block;
  }
}
