@charset "UTF-8";
/* common
---------------------------------------------------*/

main {
  color: #0c4760;
  overflow: visible;
  background: linear-gradient(
    125deg,
    #edf9fc 0%,
    #f3eff8 100%
  );
}

.inner_1000 {
  width: 1000px;
  max-width: 90%;
  margin: 0 auto;
}

.bg_top {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

picture {
  display: block;
}


/* mv
---------------------------------------------------*/

.mv_area {
  position: relative;
  overflow: hidden;
}

.mv_area .mv_layer {
  position: absolute;
  top:0;
  left: 0;
}

/* anchor_nav
---------------------------------------------------*/

.anchor_nav {
  display: flex;
  color: #0c4760;
  background: url("../img/anchor_nav_bg.jpg") no-repeat center / cover;
  text-align: center;
  border-top: 1px solid #cddaf6;
  border-bottom: 1px solid #cddaf6;
}

.anchor_nav li {
  position: relative;
  z-index:1;
  width: calc(100% / 3);
}

.anchor_nav li.coming_soon::before {
  display: grid;
  content: "COMING SOON";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  place-items: center;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

@media only screen and (max-width: 830px) {
  .anchor_nav li.coming_soon::before {
    font-size: 22px;
  }
}


.anchor_nav li a {
  position: relative;
  display: block;
  padding: 30px 0 45px 0;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease;
}

.anchor_nav li a:hover {
  opacity: .6;
}

.anchor_nav li a::before {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/button_arrow.png") no-repeat center / contain;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}

.anchor_nav li a p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px
}

.anchor_nav li a p:nth-child(2) {
  font-size: 14px;
  line-height: 1.6;
}

.anchor_nav li:not(:last-child) {
  border-right: 1px solid #fff;
}

@media only screen and (max-width: 830px) {

  .anchor_nav li a {
    padding: 15px 0 25px 0;
  }
  .anchor_nav li a::before {
    width: 10px;
    height: 10px;
    bottom: 8px;
  }

  .anchor_nav li a p:nth-child(1) {
    font-size: 18px;
    margin-bottom: 10px
  }

  .anchor_nav li a p:nth-child(2) {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Buyer_data
---------------------------------------------------*/

.buyer_data {
  padding-top: 100px;
  position: relative;
}

@media only screen and (max-width: 830px) {
  .buyer_data {
    padding-top: 50px;
  }
}

.sub_ttl {
  text-align: center;
}

.ttl {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ttl::before,.ttl::after {
  position: absolute;
  content: "";
  background: #0c4760;
  width: 80px;
  height: 1px;
  top: 50%;
}

.ttl::after{
  right: -100px;
}
.ttl::before{
  left: -100px;
}

.ttl_lead {
  font-size: 17px;
  letter-spacing: .05em;
}

.ttl_text {
  font-size: 21px;
  letter-spacing: .05em;
  margin-top: 30px;
  line-height: 1.6;
  margin-bottom: 80px;
}


@media only screen and (max-width: 830px) {
  
  .ttl {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .ttl_lead {
    font-size: 14px;
    letter-spacing: .05em;
  }
  .ttl::before,.ttl::after {
    width: 30px;
  }

  .ttl::after{
    right: -40px;
  }
  .ttl::before{
    left: -40px;
  }
  .ttl_text {
    font-size: 14px;
    letter-spacing: .01em;
    margin: 20px 0 50px 0;
  }

}


.buyer_data .buyer_block {
  font-family: "Noto Sans JP", sans-serif;
  padding: 40px;
  background: #fff;
}
@media only screen and (max-width: 830px) {
  .buyer_data .buyer_block {
    padding: 30px 20px;
  }
}

.buyer_data .buyer_block h3 {
  font-size: 21px;
  text-align: center;
  letter-spacing: .05em;
  font-weight: 600;
  color: #0c4760;
  border-bottom: 1px solid #0c4760;
  padding-bottom: 5px;
}

.buyer_data .buyer_block figure,
.buyer_data .buyer_block picture {
  margin: 30px auto 0;
}
.buyer_data .buyer_block .u-shrink01 {
  width: 90%;
}
.buyer_data .buyer_block .u-shrink02 {
  width: 80%;
}

@media only screen and (max-width: 830px) {
  .buyer_data .buyer_block h3 {
    font-size: 16px;
  }

  .buyer_data .buyer_block figure,
  .buyer_data .buyer_block picture {
    margin: 20px auto 0;
  }
  .buyer_data .buyer_block .u-shrink01 {
    width: 100%;
  }
  .buyer_data .buyer_block .u-shrink02 {
    width: 100%;
  }
}

.buyer_data .buyer_block .buyer_reason {
  margin-top: 10px;
  color: #000;
}

.buyer_data .buyer_block .buyer_reason h4 {
  margin-top: 30px;
  display: flex;
  align-items: end;
  gap: .5em;
  color: #e3387b;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}
.buyer_data .buyer_block .buyer_reason h4 img {
  width: 50px;
}

.buyer_data .buyer_block .buyer_reason p {
  letter-spacing: .02em;
  line-height: 1.8;
}

@media only screen and (max-width: 830px) {
  .buyer_data .buyer_block .buyer_reason h4 {
    margin-top: 20px;
    gap: .2em;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .buyer_data .buyer_block .buyer_reason h4 img {
    width: 35px;
  }
  .buyer_data .buyer_block .buyer_reason p {
    font-size: 14px;
  }
}

.buyer_data .flex_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.buyer_data .flex_wrap .buyer_block {
  width: 49%;
}

@media only screen and (max-width: 830px) {
  .buyer_data .flex_wrap {
    gap: 20px;
    flex-direction: column;
    justify-content: none;
  }
  .buyer_data .flex_wrap .buyer_block {
    width: 100%;
  }
}


/* Owners_voice
---------------------------------------------------*/

.owners_voice {
  padding: 100px 0;
  position: relative;
}
@media only screen and (max-width: 830px) {
  .owners_voice {
    padding: 50px 0;
    position: relative;
  }
}

.owners_voice .voice_wrap article:not(:first-of-type) {
  margin-top: 100px;
}

@media only screen and (max-width: 830px) {
  .owners_voice .voice_wrap article:not(:first-of-type) {
    margin-top: 50px;
  }
}

/* voice_block*/

.voice_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: stretch;
  margin-top: 100px;
}

@media only screen and (max-width: 830px) {
  .voice_block {
    flex-direction: column;
    margin-top: 50px;
  }
  .voice_block.reverse {
    flex-direction: column-reverse;
  }
}

.item_img {
  width: 42%;
}

.item_img .sticky {
  position: sticky;
  top: 0px;
  overflow: hidden;
  border-radius: 20px;
}

@media only screen and (max-width: 830px) {
  .item_img {
    width: 100%;
  }

  .item_img .sticky {
    position: static;
    top: auto;
  }
}

.item_text {
  font-family: serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;;
  width: 50%;
}

.item_text h3 {
  font-size: 34px;
  font-weight: 200;
  line-height: 2;
  letter-spacing: 0.01em;;
  margin-bottom: 20px;
}

@media only screen and (max-width: 830px) {
  .item_text {
    width: 100%;
  }

  .item_text h3 {
    font-size: 21px;
    font-weight: 200;
    line-height: 2;
    letter-spacing: 0.01em;;
    margin-bottom: 20px;
    margin-top: 20px;
  }

}

.item_text .detail {
  margin-bottom: 50px;
}

.item_text .icon_light {
  display: flex;
  align-items: end;
  position: relative;
  font-size: 21px;
  margin-bottom: 20px;
}

.item_text .icon_light::before {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url("../img/icon-hint.png") no-repeat center / contain;
}

.item_text h4 {
  background: #0c4760;
  color: #fff;
  font-size: 24px;
  line-height: 1.8;
  padding: 5px 25px;
  margin-bottom: 20px;
}

.item_text .voice {
  line-height: 2.2;
}

.item_text .point:not(:first-of-type) {
  margin-top: 60px;
} 

@media only screen and (max-width: 830px) {
  .item_text .detail {
    margin-bottom: 30px;
  }

  .item_text .icon_light {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .item_text .icon_light::before {
    width: 30px;
    height: 30px;
  }

  .item_text h4 {
    font-size: 18px;
    line-height: 1.7;
    padding: 10px 20px;
  }

  .item_text .voice {
    font-size: 14px;
    line-height: 2.2;
  }

  .item_text .point:not(:first-of-type) {
  margin-top: 30px;
} 

  .item_text .point {
    margin-top: 30px;
  } 

}


/* Owners_voice
---------------------------------------------------*/
.other_voice {
  font-family: serif;
  font-feature-settings: "palt";
  margin-top: 150px;
}
.other_voice h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 180px;
}

@media only screen and (max-width: 830px) {
  .other_voice {
    margin-top: 50px;
  }
  .other_voice h3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 130px;
  }
}

.other_voice .flex_wrap {
  display: flex;
  justify-content: space-between;
}

.other_voice article {
  position: relative;
  width: 30%;
  padding: 130px 20px 30px;
  background: #fff;
  font-size: 15px;
  letter-spacing: .1em;
  color: #000;
}

@media only screen and (max-width: 830px) {
  .other_voice .flex_wrap {
    flex-direction: column;
  }
  .other_voice article {
    width: 100%;
  }
  .other_voice article:not(:last-child) {
    margin-bottom: 130px;
  }
}

.other_voice article .other_img {
  position: absolute;
  width: 90%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  top: -120px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 9999px;
  overflow: hidden;
}
@media only screen and (max-width: 830px) {
  .other_voice article .other_img {
    width: 65%;
    min-width: 165px;
    top: -90px;
  }
}
.other_voice article .other_detail {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.other_voice article .other_text {
  line-height: 2;
}

/* plan
---------------------------------------------------*/

.sec_Box.plan.location {
  padding-bottom: 100px;
  overflow: hidden;
}

.sec_Box.plan.location h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}

.sec_Box.plan.location .location_teiki {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ac0000;
  font-weight: 600;
}

@media only screen and (max-width: 830px) {
  .sec_Box.plan.location {
    padding-bottom: 50px;
  }
  .sec_Box.plan.location .location_teiki {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .sec_Box.plan.location h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

}

.sec_Box .loc_map {
  margin: 0 auto;
  width: 910px;
  max-width: 90%;
  margin: 0 auto;
}

.plan_a {
  width: 1000px;
  max-width: 90%;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 830px) {
  .plan_a {
    margin: 50px auto 0;
  }
}

.plan_a li {
  width: 48%;
}

.plan_a li p {
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 0 10px 1.5em;
  border-bottom: 1px dotted #334439;
  position: relative;
}

.plan_a li figure {
  margin-bottom: 30px;
}

.plan_a li p:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: .5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #334439;
}

.plan_a li .img {
  margin-top: 40px;
}

.plan_a li .zumen {
  mix-blend-mode: multiply;
  max-width: 90%;
  margin: 0 auto;
}

.plan .kakaku {
  width: 729px;
  max-width: 90%;
  margin: 0 auto;
}

@media only screen and (max-width: 830px) {

  .plan_a li {
    width: 100%;
  }

  .plan_a li figure {
    margin-bottom: 20px;
  }

  .plan_a li p {
    font-size: 13px;
    padding: 5px 0 5px 1.5em;
  }

  .plan_a li .zumen {
    margin-top: 30px;
    background: #fff;
    max-width: 100%;
    text-align: center;
  }

  .plan_a li .zumen img {
    max-width: 90%;
    text-align: center;
    margin: 20px auto;
  }

  .plan_a li .img {
    margin-bottom: 30px;
  }
}

.u-map_Btn {
  display: block;
  width: 200px;
  max-width: 80%;
  margin: 40px auto 0 auto;
  padding: 10px 0;
  color: #fff;
  background: #334439;
  border-radius: 50px;
  text-align: center;
  transition: 0.3s;
}

.u-map_Btn:hover {
  background: #477758;
}

/* Future_value
---------------------------------------------------*/
.future_valute {
  padding: 0px 0 100px;
  position: relative;
}
@media only screen and (max-width: 830px) {
  .future_valute {
    padding: 50px 0;
    position: relative;
  }
}

.future_valute .sub_ttl {
  margin-bottom: 80px;
}
@media only screen and (max-width: 830px) {
  .future_valute .sub_ttl {
    margin-bottom: 50px;
  }
}

.future_block {
  background: #fff;
  padding: 60px 50px;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 830px) {
  .future_block {
    padding: 40px 20px;
  }
}

.future_block:not(:last-child) {
  margin-bottom: 50px;
}

.future_block h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 50px;
  padding-left: 80px;
  font-weight: bold;
}

@media only screen and (max-width: 830px) {
  .future_block h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 60px;
  }
}

.future_block h3::before {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_graph.png") no-repeat center / contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 830px) {
  .future_block h3::before {
    width: 45px;
    height: 45px;
  }
}

.future_block p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 830px) {
  .future_block p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
  }
}

.future_block p.source_is {
  font-size: 12px;
  text-align: right;
  margin-top: 1em;
  margin-bottom: .5em;
}

@media only screen and (max-width: 830px) {
.future_block p.source_is {
  margin-top: .5em;
}
}

.clickable_text {
  text-align: center;
  margin-top: .5em;
}
.clickable_text img {
  width: 18px;
}

.future_block h4 {
  font-size: 21px;
  border-left: 10px solid #0c4760;
  padding: 3px 0 3px 8px;
  margin-bottom: 18px;
  font-weight: bold;
  line-height: 1.6;
}

@media only screen and (max-width: 830px) {
  .future_block h4 {
    font-size: 16px;
    border-left: 10px solid #0c4760;
    padding: 0px 0 0px 8px;
}

}

.future_block .graph02 {
  margin-top: 50px;
}
@media only screen and (max-width: 830px) {
  .future_block .graph02 {
    margin-top: 30px;
  }
}

/*テーブル*/

.table_wrap {
  width: 100%;
  background-color: #ffffff;
  overflow-x: scroll;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}


/* ヘッダーセルのスタイル設定 */
th {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #64748b; /* 少し薄めの文字色 */
  background-color: #f1f5f9; /* ヘッダーの背景色 */
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
}

/* 価格などの数値ヘッダーは右寄せにする場合 */
th.rate-header {
  text-align: right;
}


tr {
  border-bottom: 1px solid #eef2f5;
  background: #f6fbff;
}

tr:last-child {
  border-bottom: none;
}

td {
  padding: 16px 20px;
  font-size: 15px;
  color: #333333;
  vertical-align: middle;
}
@media only screen and (max-width: 830px) {
  td {
    padding: 14px 15px;
    font-size: 14px;
  }
}

.th-location {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  width: 25%;
  min-width: 250px;
  padding-left: 60px;
}
@media only screen and (max-width: 830px) {
  .th-location {
    font-size: 14px;
  }
}
.th-location span {
  position: absolute;
  display: grid;
  place-items: center;
  background:#2563eb;
  color: #fff;
  border-radius: 9999px;
  width: 27px;
  height: 27px;
  font-size: 14px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.th-location img {
  position: absolute;
  display: block;
  width: 42px;
  left: 14px;
  top: 42%;
  transform: translateY(-50%);
}

tr.rank td {
  font-size: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media only screen and (max-width: 830px) {
  tr.rank td {
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
tbody tr:nth-child(1) {
  background-color: #fbf9e9;
}
tbody tr:nth-child(2) {
  background-color: #f8f8f8;
}

tbody tr:nth-child(3) {
  background-color: #fcf6ed;
}


.th-price-m2 {
  font-weight: bold;
  width: 15%;
  min-width: 190px;
}

.th-price-tsubo {
  width: 15%;
  min-width: 190px;
  font-weight: bold;
  white-space: nowrap;
}


/* 価格 */
.th-change-rate {
  text-align: right;
  font-weight: bold;
  width: 10%;
  min-width: 150px;
  color: #198c41;
}



/* special content
---------------------------------------------------*/

.special_contents {
  padding-bottom: 100px;
}


@media only screen and (max-width: 830px) {
  .special_contents {
    padding-bottom: 50px;
  }

}

.special_contents a.bnr_img {
    margin: 30px auto 0;
    display: block;
    width: 800px;
    max-width: 90%;
    transition: 0.3s;
    padding: 0;
}


/* bnr
---------------------------------------------------*/

.btn_reqres {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 100px;
}

@media only screen and (max-width: 830px) {
  .btn_reqres {
    margin-top: 50px;
  }
}

.btn_reqres a {
  width: 300px;
  max-width: 80%;
  margin: 0 10px 0px;
  display: block;
  font-size: 15px;
  padding: 15px 0;
  text-align: center;
}

.btn_reqres a.reqbtn {
  background: #334439;
  color: #cec0a6;
}

.btn_reqres a.resbtn {
  background: #a84954;
  color: #fff;
}

.btn_reqres .small {
  font-size: 11px;
}

.banner_area {
  margin-top: 80px;
}

@media only screen and (max-width: 830px) {
  .banner_area {
    margin-top: 50px;
  }

}

/* 画面内でスクロール */
.lb-outerContainer {
  width: 100vw !important;
  overflow-x: scroll;
  overflow-y: hidden;
}