@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  display: block;
}

legend, hr {
  display: none;
}

th {
  font-style: inherit;
  font-weight: inherit;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  outline: none;
  hlbr: expression(this.onFocus=this.blur());
  text-decoration: none;
  cursor: pointer;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

* {
  box-sizing: border-box;
}

/* main.css ==============================================*/
@font-face {
  font-family: "nbk";
  font-weight: normal;
  src: url("../font/nobk-webfont.woff") format("woff"), url("../font/nobk-webfont.ttf") format("truetype");
}
@font-face {
  font-family: "nbk";
  font-weight: bold;
  src: url("../font/Nobel-Bold.woff") format("woff"), url("../font/Nobel-Bold.woff2") format("woff2"), url("../font/Nobel-Bold.eot"), url("../font/Nobel-Bold.eot?#iefix") format("embedded-opentype"), url("../font/Nobel-Bold.otf") format("truetype");
}
/*Variable*/
/*Mixin*/
/*Reset*/
.hide {
  display: none;
}

[class^=g-bt-] {
  width: 50%;
  display: block;
  margin: 1rem auto;
  text-align: center;
  padding: 0.8rem 0;
  background: #000;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: 0.2s;
}
[class^=g-bt-]:hover {
  opacity: 0.5;
  text-decoration: none;
}
[class^=g-bt-] p {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
[class^=g-bt-] small {
  font-size: 1.1rem;
  display: block;
}
[class^=g-bt-].is-disabled {
  background: #eee;
  border: 1px solid #ccc;
  color: #999 !important;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
[class^=g-bt-].is-disabled:hover {
  opacity: 1;
}

.g-bt-3 {
  border: 1px solid #000;
  background: transparent;
  color: #000 !important;
}

.bt-shine {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
}
.bt-shine:before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 8%, white 49%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 1s;
  animation: bt_shine 2s ease infinite;
}
@keyframes bt_shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.msg-box {
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 0;
  transform: scale(1);
  perspective: 10rem;
  pointer-events: none;
}
.msg-box.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 102;
  pointer-events: auto;
}
.msg-box > .close {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.msg-box .msg-wrap {
  background: #fff;
  width: 45%;
  height: 100%;
  max-width: 90%;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  top: 50%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  padding: 2rem;
  transform: scale(1) translate3d(0, -50%, 0);
  transform-style: preserve-3d;
  transition-delay: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.msg-box .msg-wrap > .close {
  cursor: pointer;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  transition: 0.2s;
  background: url(../img/icon-close.svg) no-repeat center;
  background-size: 100%;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0.5s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.msg-box.is-active .msg-wrap {
  transform: scale(1) translate3d(0, -50%, 0);
  opacity: 1;
  visibility: visible;
}
.msg-box.is-active .msg-wrap > .close {
  transform: scale(1);
  opacity: 1;
}
.msg-box.is-active .msg-wrap > .close:hover {
  transform: rotate(90deg);
}
.msg-box .msg-content {
  height: 95%;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.msg-box .msg-content header {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}
.msg-box .msg-content header:after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #b6a171;
  display: block;
  margin-top: 0.5rem;
}
.msg-box .msg-content .detail {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  padding-top: 1rem;
  font-size: 1rem;
}
.msg-box .msg-content h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.msg-box .msg-content p {
  margin: 1.5rem 0;
}
.msg-box .msg-content a {
  width: 86%;
  color: #333;
  text-decoration: underline;
}
.msg-box .msg-content a:hover {
  color: #1166f5;
}
.msg-box .msg-content small {
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  display: block;
  margin-top: 1rem;
}
.msg-box .msg-content img {
  max-width: 100%;
}
.msg-box .msg-content .bt {
  background: linear-gradient(to right, #b6a171, #e6d9bb);
  width: auto;
  display: block;
  margin: 1rem auto 0;
  font-size: 1rem;
  padding: 0.5rem 2rem;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  position: relative;
}
.msg-box .msg-content .bt:hover {
  background: #000;
  transition: 0.2s;
}

#msg-alert .msg-wrap {
  width: 30%;
  height: auto;
}
#msg-alert .msg-content header {
  text-align: center;
}
#msg-alert .msg-content header::after {
  display: none;
}
#msg-alert .msg-content .detail {
  text-align: center;
}
#msg-alert .msg-content .bt {
  width: 50%;
  text-align: center;
}

#msg-success .msg-wrap {
  width: 55%;
  height: auto;
}
#msg-success .msg-content .flex {
  display: flex;
  align-items: center;
}
#msg-success .msg-content .detail {
  position: relative;
}
#msg-success #show-success-calendar {
  width: 30%;
  position: absolute;
  top: 0;
  right: 0;
}
#msg-success #show-success-txt {
  width: 25rem;
  display: flex;
  flex-wrap: wrap;
}
#msg-success #show-success-txt dt, #msg-success #show-success-txt dd {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
#msg-success #show-success-txt dt {
  width: 7rem;
  font-weight: bold;
}
#msg-success #show-success-txt dt::after {
  content: " /";
}
#msg-success #show-success-txt dd {
  width: calc(100% - 7rem);
}
#msg-success #show-success-txt small {
  margin-top: 0;
}
#msg-success .map-wrap {
  width: calc(100% - 25rem);
}
#msg-success #show-success-map {
  width: 100%;
  height: 17rem;
}
#msg-success #show-success-map-link {
  text-align: right;
  display: block;
  width: 100%;
  font-size: 0.8rem;
  text-decoration: underline;
  margin-top: 1rem;
}

.video {
  position: relative;
}
.video video {
  width: 100%;
  height: 39.22rem;
  display: block;
  background: #ccc;
}
.video .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
}
.video.active .cover {
  display: none;
}

.video-btn-play {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 3rem);
  left: calc(50% - 3rem);
  cursor: pointer;
  text-indent: -9999px;
}
.video-btn-play:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 3rem solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  transition: 0.2s;
}
.video-btn-play:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}
.video-btn-play:hover:before {
  border: 4rem solid #000;
}
.video-btn-play:hover:after {
  border-color: transparent transparent transparent #fff;
}

.tns-wrap {
  position: relative;
}

.tns-outer {
  position: relative;
}

.tns-item {
  float: left;
}

.tns-controls button, .tns-controls div, .tns-cus-controls button, .tns-cus-controls div {
  position: absolute;
  top: 45%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-color: transparent;
  z-index: 3;
  text-indent: -9999px;
  border: 0;
  cursor: pointer;
  mix-blend-mode: difference;
}
.tns-controls button:nth-of-type(1), .tns-controls div:nth-of-type(1), .tns-cus-controls button:nth-of-type(1), .tns-cus-controls div:nth-of-type(1) {
  left: 9.7%;
  background-image: url(../img/icon-right-fff.svg);
  transform: scale(-1, 1);
}
.tns-controls button:nth-of-type(2), .tns-controls div:nth-of-type(2), .tns-cus-controls button:nth-of-type(2), .tns-cus-controls div:nth-of-type(2) {
  right: 9.7%;
  background-image: url(../img/icon-right-fff.svg);
}
.tns-controls button[disabled], .tns-controls div[disabled], .tns-cus-controls button[disabled], .tns-cus-controls div[disabled] {
  opacity: 0;
}

.tns-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  text-align: center;
}
.tns-nav button {
  width: 2rem;
  height: 2rem;
  border: 0;
  margin: 2px;
  position: relative;
  background-color: transparent;
}
.tns-nav button:before, .tns-nav button:after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background-color: #fff;
  border-radius: 0.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.tns-nav button:after {
  transform: translate(-50%, -50%) scale(0);
}
.tns-nav button:hover:before, .tns-nav button:hover:after {
  background-color: #ae8457;
}
.tns-nav button.tns-nav-active:after {
  background-color: #ae8457;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.tns-controls {
  text-align: center;
}

html {
  font-size: 17px;
}

body.pageBody {
  background: #fff;
}

#g-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  transition: 0.6s;
  z-index: 1001;
}
#g-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
}
#g-loader .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
}
#g-loader .circular {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}
#g-loader .path {
  stroke: #000;
  stroke-width: 1.5;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 4.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

.g-wrap {
  width: 100%;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #434343;
  font-family: "nbk", sans-serif;
  background: linear-gradient(to bottom, #fff 70%, #eee);
}
.g-wrap img {
  max-width: 100%;
}

.g-section {
  position: relative;
}
.g-hr {
  width: 5rem;
  height: 0.2rem;
  background: linear-gradient(to right, #e2bc48 30%, #beae9c);
  display: block;
  margin: 2.8rem auto;
}

.list-star > li {
  padding-left: 1rem;
  position: relative;
}
.list-star > li:before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0.35rem;
}

.list-square li {
  padding-left: 1rem;
  position: relative;
}
.list-square li:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.tns-wrap {
  overflow: hidden;
}
.tns-wrap li {
  padding: 0 1.7rem;
}
.tns-wrap li img {
  width: 100%;
}

.list-diamond li {
  position: relative;
  padding-left: 1rem;
}
.list-diamond li:before {
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
}

.list-dot > li {
  position: relative;
  margin-left: 1rem;
}
.list-dot > li:before {
  content: "．";
  position: absolute;
  top: 0;
  right: 100%;
}

.list-no > li {
  position: relative;
  list-style-type: decimal;
  margin-left: 1.5rem;
}

.list-upper-alpha li {
  position: relative;
  list-style-type: upper-alpha;
  margin-left: 1rem;
}

.btns {
  display: flex;
  justify-content: center;
  margin: 5rem auto 0;
}
.btns a {
  width: 48%;
  color: #fff;
  text-decoration: none;
}
.btns a:nth-child(2) {
  margin-left: 4%;
}

#sale-list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 6rem;
  text-align: center;
  font-size: 0;
  overflow: hidden;
}
#sale-list li {
  width: 22%;
  display: inline-block;
  position: relative;
  opacity: 0;
  margin: 1.5%;
  text-align: left;
  border: 1px solid #a4a4a4;
  float: left;
}
#sale-list li:nth-child(1), #sale-list li:nth-child(2), #sale-list li:nth-child(3), #sale-list li:nth-child(4) {
  float: none;
}
#sale-list .renarks {
  background: #000;
  color: #fff;
  letter-spacing: 0.1rem;
  position: absolute;
  top: 0.9rem;
  left: -0.8rem;
  padding: 0 0.5rem;
  z-index: 1;
  display: none;
}
#sale-list .img {
  background: #aea8b3;
  aspect-ratio: 1/1.15;
  overflow: hidden;
}
#sale-list .img img {
  width: 110%;
  max-width: 110%;
  margin-left: -5%;
}
#sale-list .txt {
  padding: 2rem 0 1.4rem 1.4rem;
  position: relative;
  background: #fff;
  color: #000;
}
#sale-list h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
}
#sale-list p {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}
#sale-list .contact {
  position: absolute;
  bottom: 1.5rem;
  right: 1.2rem;
}
#sale-list .contact a {
  position: relative;
}
#sale-list .contact a::before {
  content: attr(data-tip);
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: -4rem;
  left: -0.3rem;
  font-size: 1rem;
  white-space: nowrap;
  color: #fff;
  padding: 0 0.5rem;
  border-radius: 0.2rem;
  transform-origin: 50% 150%;
  transform: scale(0);
  transition: 0.2s;
}
#sale-list .contact a:hover::before {
  transform: scale(1);
}
#sale-list .contact [class^=icon-contact-] {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  text-indent: -9999rem;
  background: url(../img/icon-contact.svg) no-repeat;
  background-size: 300%;
  margin-left: 0.2rem;
  filter: brightness(0);
  transition: 0.2s;
}
#sale-list .contact [class^=icon-contact-]:hover {
  filter: brightness(100%);
  transform: scale(1.2);
}
#sale-list .contact .icon-contact-2 {
  background-position: 50% 0;
}
#sale-list .contact .icon-contact-3 {
  background-position: 100% 0;
}
#sale-list.active li {
  animation: sale_list_li_in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes sale_list_li_in {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#sale-list.active li:nth-child(1) {
  animation-delay: 0.05s;
}
#sale-list.active li:nth-child(2) {
  animation-delay: 0.1s;
}
#sale-list.active li:nth-child(3) {
  animation-delay: 0.15s;
}
#sale-list.active li:nth-child(4) {
  animation-delay: 0.2s;
}
#sale-list.active li:nth-child(5) {
  animation-delay: 0.25s;
}
#sale-list.active li:nth-child(6) {
  animation-delay: 0.3s;
}
#sale-list.active li:nth-child(7) {
  animation-delay: 0.35s;
}
#sale-list.active li:nth-child(8) {
  animation-delay: 0.4s;
}
#sale-list.active li:nth-child(9) {
  animation-delay: 0.45s;
}
#sale-list.active li:nth-child(10) {
  animation-delay: 0.5s;
}
#sale-list.active li:nth-child(11) {
  animation-delay: 0.55s;
}
#sale-list.active li:nth-child(12) {
  animation-delay: 0.6s;
}
#sale-list.active li:nth-child(13) {
  animation-delay: 0.65s;
}
#sale-list.active li:nth-child(14) {
  animation-delay: 0.7s;
}
#sale-list.active li:nth-child(15) {
  animation-delay: 0.75s;
}

#g-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 1.3rem;
  background: #000;
  margin-top: 2rem;
}
#g-header h1 {
  color: #fff;
  font-size: 1.4rem;
  margin-right: 2rem;
  letter-spacing: 0.1rem;
}
#g-header ul {
  display: flex;
}

#t-city, #t-store {
  background: none;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: url(../img/icon-arrow-down-fff.svg) no-repeat 100% 50%;
  background-size: auto 1rem;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  border-bottom: 1px solid #a4a4a4;
  width: 9.7rem;
  padding: 0.5rem 0;
  margin-right: 1rem;
  cursor: pointer;
  opacity: 0.7;
}
#t-city option, #t-store option {
  background: #fff;
  color: #000;
}
#t-city:disabled, #t-store:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#t-city:focus, #t-store:focus {
  outline: 0;
}
#t-city:hover, #t-store:hover {
  opacity: 1;
}
#t-city:hover:disabled, #t-store:hover:disabled {
  opacity: 0.7;
}

#t-nearby {
  background: #fff;
  display: inline-block;
  padding: 0.1rem 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  border-radius: 0.2rem;
  cursor: pointer;
  margin-left: 3rem;
  transition: 0.2s;
}
#t-nearby::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/icon-nearby.svg) no-repeat center;
  background-size: 100%;
  display: inline-block;
  position: relative;
  top: 0.2rem;
  margin-right: 0.5rem;
  filter: brightness(0);
}
#t-nearby:hover {
  background: #1166f5;
  color: #fff;
}
#t-nearby:hover::before {
  filter: brightness(100%);
}

#advanced-filter {
  background: #eee;
  padding: 1rem;
  margin: 2rem auto;
}
#advanced-filter input {
  width: auto;
}
#advanced-filter hr {
  display: block;
}

#search-recommend {
  font-size: 2rem;
  text-align: center;
}

#search-result-summary {
  text-align: center;
  padding: 2.7rem 0;
  font-size: 1.1rem;
  opacity: 1;
  pointer-events: auto;
}
#search-result-summary.hide {
  display: block;
  opacity: 0;
  pointer-events: none;
}

#t-count {
  color: #1166f5;
  font-size: 110%;
}

#t-reset {
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}
#t-reset:hover {
  color: #1166f5;
}

/*修正 lexus 外框影響 sticky 故障問題*/
#Box {
  overflow: visible;
}

#Menu {
  position: sticky;
  transition: 0.5s;
}
#Menu.is-hide {
  transform: translateY(-100%);
  pointer-events: none;
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 1001px) {
  .is-m {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }

  html {
    font-size: 3vw;
  }

  #g-header {
    flex-wrap: wrap;
    padding-bottom: 2.5rem;
  }
  #g-header h1 {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  #g-header ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #t-nearby {
    margin-left: 0;
  }
  #t-nearby::before {
    top: 0.3rem;
  }

  #search-result-summary {
    padding: 2rem 0;
  }

  #sale-list li {
    width: 47%;
    text-align: center;
  }
  #sale-list li:nth-child(3) {
    float: left;
  }
  #sale-list .txt {
    padding-left: 0;
    padding-right: 0;
  }
  #sale-list .renarks {
    top: 0.6rem;
    left: -0.5rem;
    font-size: 0.85rem;
  }
  #sale-list .contact {
    position: static;
    margin-top: 1rem;
  }
  #sale-list .contact a {
    position: relative;
  }
  #sale-list .contact a::before {
    display: none;
  }
  #sale-list .contact [class^=icon-contact-] {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  #sale-list .contact span {
    font-size: 0.8rem;
    display: inline-block;
    position: absolute;
    top: calc(100% - .5rem);
    left: 0;
    color: #000;
    width: 100%;
  }
}