.fv {
  padding-top: 140px;
}

.fv .inner {
  display: flex;
  gap: 0 120px;
}

.slick-slide {
  padding: 0 5px;
}

.fv .slider-box {
  width: 560px;
}

.fv .fv-slider {
  margin-bottom: 10px;
}

.fv .fv-thumbnail .thumbnail-img {
  opacity: .3;
  transition: opacity .3s linear;
}

.fv .fv-thumbnail .slick-track {
  transform: unset !important;
}

.fv .fv-thumbnail .thumbnail-img.slick-current {
  opacity: 1;
}

.fv .text-contents {
  padding-top: 50px;
  width: 720px;
}


.fv .text-contents h1 {
  font-size: 70px;
  margin-bottom: 50px;
  width: 100%;
  font-weight: normal;
  position: relative;
}

.fv .text-contents h1::after {
  content: '';
  background-color: #000;
  width: 100%;
  height: 1px;
  transform-origin: 0;
  transform: scaleX(0);
  transition: all 1.5s ease;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.fv .text-contents h1.on::after {
  transform: scaleX(1);
}


.fv .text-contents p.head {
  font-size: 30px;
  line-height: 1.8;
  margin-bottom: 30px;
  display: none;
}

.fv .text-contents p.text {
  font-size: 18px;
  line-height: 2;
}

@media all and (max-width: 760px) {
  .fv {
    padding-top: 20vw
  }

  .fv .inner {
    gap: 0;
    flex-direction: column;
  }

  .fv .slider-box {
    width: 100%;
  }

  .fv .text-contents {
    padding-top: 10vw;
    width: 100%;
  }

  .fv .text-contents h1 {
    font-size: 12vw;
    margin-bottom: 10vw;
  }

  .fv .text-contents h1::after {
    bottom: -4vw;
  }

  .fv .text-contents p.head {
    font-size: 6vw;
    margin-bottom: 6vw;
  }

  .fv .text-contents p.text {
    font-size: 4vw;
    line-height: 2;
  }
}

.property {
  padding: 160px 0 120px;
  background-color: #f4f6f7;
}

.property-list,
.property-table {
  width: 1060px;
  margin: 0 auto;
}

.property-list h3,
.property-table h3 {
  font-size: 16px;
  line-height: 2;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}


.property-list dl {
  font-family: "JMC", "Gothic MB101 JIS2004", sans-serif;
  padding: 10px 0;
  background-color: #fff;
  display: flex;
  font-size: 15px;
  line-height: 2;
  border-bottom: 1px solid #000;
}

.property-list dl dt {
  width: 35%;
  padding-left: 30px;
  box-sizing: border-box;
}

.property-list dl dd {
  width: 65%;
}

.property-table ul {
  position: relative;
}



.property-table ul li {
  display: flex;
  font-size: 14px;
  border-bottom: 1px solid #000;
  background-color: #fff;
}

.property-table ul li.head {
  line-height: 1.6;
}

.property-table ul li p {
  padding: 10px 0 10px 30px;
  box-sizing: border-box;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.property-table ul li p:first-of-type {
  width: 30%;
}

.property-table ul li p:nth-of-type(2) {
  width: 25%;
  background-color: #dde3e7;
}

.property-table ul li p:nth-of-type(3) {
  width: 45%;
}

.property-contents .annotation {
  font-size: 14px;
  line-height: 2;
  margin: 20px auto 0;
  width: 1060px;
  padding-left: 30px;
  box-sizing: border-box;
}

@media all and (max-width: 760px) {

  .property {
    padding: 24vw 0;
    background-color: #f4f6f7;
  }

  .property-list,
  .property-table {
    width: 100%;
  }

  .property-list h3,
  .property-table h3 {
    font-size: 3.4vw;
    padding: 2vw 0;
  }


  .property-list dl {
    padding: 2vw 0;
    font-size: 2.8vw;
  }

  .property-list dl dt {
    padding-left: 2vw;
  }

  .property-list dl dd {
    padding-right: 2vw;
  }

  .property-table ul li.head {
    font-size: 2.8vw;
  }

  .property-table ul li {
    font-size: 2.4vw;
  }

  .property-table ul li p {
    padding: 3vw 1vw;
  }

  .property-contents .annotation {
    font-size: 2.6vw;
    margin: 4vw auto 0;
    width: 100%;
    padding-left: 0;
  }

}

.btn-box {
  display: flex;
  justify-content: center;
  gap: 0 60px;
  margin-top: 60px;
}

.link {
  display: inline-block;
}

.link a {
  display: block;
  background-color: #000;
  color: #fff;
  position: relative;
  padding: 20px 40px;
}

.link a::after {
  content: '＞';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: all .3s ease;
  opacity: 0;
}

.link a:hover::after {
  opacity: 1;
}

.link a span {
  display: block;
  transition: all .3s ease;
  transform: translateX(0);
}

.link a:hover span {
  transform: translateX(-10px);
}

@media all and (max-width: 760px) {
  .btn-box {
    gap: 6vw 0;
    margin-top: 8vw;
    flex-direction: column;
  }

  .link a {
    padding: 4vw;
    text-align: center;
  }
}