/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
.mv {
  position: relative;
  z-index: 0;
}

.mvMovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 100;
}

.mvMovie.hidden {
  opacity: 0;
  visibility: hidden;
}

.mvMovie::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0);
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-transition: 2s ease-out;
  transition: 2s ease-out;
  z-index: 1;
}

.mvMovie.hidden::after {
  background-color: rgb(255, 255, 255);
  -webkit-filter: brightness(1.5);
          filter: brightness(1.5);
}

.mvMovie .movieWrap {
  padding-bottom: 47.8%;
}
.mvMovie .movieWrap video {
  width: 100%;
  height: auto;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .mvMovie .movieWrap video {
    width: 135%;
    margin-left: -34%;
  }
}

.mvImg {
  position: relative;
  overflow: hidden;
  margin-top: 102px;
  height: 55.8vw;
}
@media screen and (max-width: 1000px) {
  .mvImg {
    height: 76vw;
    margin-top: 38px;
  }
}
.mvImg .mv-copy01 {
  position: absolute;
  width: 25%;
  top: 37%;
  left: 8%;
}
.mvImg .mv-copy01 img {
  aspect-ratio: unset;
}

.mvImg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.1) translateY(4%);
          transform: scale(1.1) translateY(4%);
}

.mvWrap.active .mvImg img {
  -webkit-animation: mvImg 5s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: mvImg 5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

/* .loaded .mvImg img {
  filter: blur(0);
  transform: scale(1) translateY(0);
} */
.skip,
.replay {
  background-color: var(--color-navy);
  border: 0.5px solid #e3dbcb;
  color: #e3dbcb;
  border-radius: 0;
  cursor: pointer;
  font-size: 20px;
  padding: 1em;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.3647058824);
  width: min(9.3333333333%, 140px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 150;
}

.skip.hidden,
.replay.hidden {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes mvImg {
  0% {
    -webkit-filter: blur(10px) brightness(0.5);
            filter: blur(10px) brightness(0.5);
    -webkit-transform: scale(1.05) translateY(2%);
            transform: scale(1.05) translateY(2%);
  }
  100% {
    -webkit-filter: blur(0) brightness(1);
            filter: blur(0) brightness(1);
    -webkit-transform: scale(1.05) translateY(0);
            transform: scale(1.05) translateY(0);
  }
}

@keyframes mvImg {
  0% {
    -webkit-filter: blur(10px) brightness(0.5);
            filter: blur(10px) brightness(0.5);
    -webkit-transform: scale(1.05) translateY(2%);
            transform: scale(1.05) translateY(2%);
  }
  100% {
    -webkit-filter: blur(0) brightness(1);
            filter: blur(0) brightness(1);
    -webkit-transform: scale(1.05) translateY(0);
            transform: scale(1.05) translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .mvMovie .movieWrap {
    /* padding-bottom: calc(540 / 380 * 100%); */
    /* padding-bottom: 177.778%; */
    padding-bottom: 125%;
  }
  .mvImg img {
    aspect-ratio: 700/530;
  }
  .skip,
  .replay {
    left: 10px;
    width: 82px;
    font-size: 16px;
  }
}
.main {
  background-image: url(../img/location/bg.webp);
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 200px;
}
@media print, screen and (max-width: 1023.9px) {
  .main {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.point {
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .point {
    margin-bottom: 20px;
  }
}

.info {
  padding-block: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .info {
    padding-block: 40px;
  }
}

.en-copy {
  font-size: 18px;
  color: #3e4658;
  text-align: center;
  letter-spacing: 0.1em;
}
.en-copy.-concept {
  color: #937865;
}

.info__copy {
  font-size: 30px;
  margin-top: 30px;
  line-height: 2;
  font-weight: 500;
  color: #937865;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .info__copy {
    font-size: 20px;
    margin-top: 18px;
  }
}
.info__copy span {
  font-size: 45px;
}
@media print, screen and (max-width: 1023.9px) {
  .info__copy span {
    font-size: 30px;
  }
}

.info__text {
  text-align: center;
  line-height: 1.8;
  margin-top: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .info__text {
    font-size: 12px;
    margin-top: 10px;
  }
}

.info__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .info__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    position: relative;
    z-index: 20;
  }
}

.concept {
  margin-top: 80px;
}

.concept__copy {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1rem;
  padding: 0.8em 0 0 1.5em;
}
@media print, screen and (max-width: 1023.9px) {
  .concept__copy {
    font-size: 26px;
    letter-spacing: 0.2rem;
    padding: 0;
    text-indent: 1em;
  }
}
.concept__copy span {
  color: #a88973;
}

.concept__logo {
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  width: 176px;
  margin-top: 30px;
}

.concept__img {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  margin-bottom: 50px;
}

.child {
  position: relative;
  margin-top: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .child {
    margin-top: 40px;
  }
}
.child::before, .child::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
@media print, screen and (max-width: 1023.9px) {
  .child::before, .child::after {
    top: 15px;
    left: 15px;
  }
}
.child::before {
  width: calc(100% - 30px);
  height: 1px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s ease-out 0.9s;
  transition: -webkit-transform 0.4s ease-out 0.9s;
  transition: transform 0.4s ease-out 0.9s;
  transition: transform 0.4s ease-out 0.9s, -webkit-transform 0.4s ease-out 0.9s;
}
@media print, screen and (max-width: 1023.9px) {
  .child::before {
    width: calc(100% - 15px);
  }
}
.child::after {
  width: 1px;
  height: calc(100% - 30px);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: -webkit-transform 0.4s ease-out 0.9s;
  transition: -webkit-transform 0.4s ease-out 0.9s;
  transition: transform 0.4s ease-out 0.9s;
  transition: transform 0.4s ease-out 0.9s, -webkit-transform 0.4s ease-out 0.9s;
}
@media print, screen and (max-width: 1023.9px) {
  .child::after {
    height: calc(100% - 15px);
  }
}
.child.-inview::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.child.-inview::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.child__more {
  padding: 1em;
  background-color: #a88973;
  left: 0;
  bottom: 4%;
  width: 21%;
  padding-right: 1em;
  z-index: 3 !important;
  display: block;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: background-color 0.3s ease, clip-path 0.6s cubic-bezier(0.7, 0, 0.3, 1) 2.4s;
  transition: background-color 0.3s ease, clip-path 0.6s cubic-bezier(0.7, 0, 0.3, 1) 2.4s;
}
@media print, screen and (max-width: 1023.9px) {
  .child__more {
    width: 180px;
    padding: 8px;
    padding-right: 20px;
    bottom: 15px;
  }
}
.child__more:hover {
  background-color: #fff;
}
.child__more:hover .child__more__icon {
  background-color: #a88973;
}

.child__more__icon {
  display: block;
  width: 31%;
  aspect-ratio: 82.31/10.7;
  margin-left: auto;
  background-color: #fff;
  -webkit-mask: url(../img/top/more.svg) no-repeat center/contain;
  mask: url(../img/top/more.svg) no-repeat center/contain;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media print, screen and (max-width: 1023.9px) {
  .child__more__icon {
    width: 60px;
  }
}

.child__img {
  width: 100%;
  opacity: 0;
  -webkit-filter: blur(18px);
          filter: blur(18px);
  -webkit-transition: opacity 1s ease, -webkit-filter 1s ease;
  transition: opacity 1s ease, -webkit-filter 1s ease;
  transition: opacity 1s ease, filter 1s ease;
  transition: opacity 1s ease, filter 1s ease, -webkit-filter 1s ease;
  -webkit-box-shadow: 0 0 13px #333;
          box-shadow: 0 0 13px #333;
}
.child__img img {
  width: 100%;
}

.child.-inview .child__img {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.child [class*=__ttl],
.child [class*=__desc],
.child [class*=__2min] {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.9s ease 1.3s, -webkit-transform 0.9s ease 1.3s;
  transition: opacity 0.9s ease 1.3s, -webkit-transform 0.9s ease 1.3s;
  transition: opacity 0.9s ease 1.3s, transform 0.9s ease 1.3s;
  transition: opacity 0.9s ease 1.3s, transform 0.9s ease 1.3s, -webkit-transform 0.9s ease 1.3s;
}

.child [class*=__text] {
  opacity: 0;
  -webkit-transition: opacity 0.9s ease 1.9s;
  transition: opacity 0.9s ease 1.9s;
}

.child.-inview [class*=__ttl],
.child.-inview [class*=__desc],
.child.-inview [class*=__2min] {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.child.-inview [class*=__text] {
  opacity: 1;
}

.child.-inview .child__more {
  clip-path: inset(0 0 0 0);
}

.abs {
  position: absolute;
  z-index: 1;
}

.yoyogi__ttl {
  width: 17%;
  top: 5em;
  left: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .yoyogi__ttl {
    width: 32%;
    top: 15%;
    left: 8%;
  }
}

.access__ttl {
  width: 35%;
  top: 59.6%;
  left: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .access__ttl {
    width: 61%;
    top: 15%;
    left: 8%;
    -webkit-filter: drop-shadow(0 0 2px #000);
            filter: drop-shadow(0 0 2px #000);
  }
}

.yoyogi__desc {
  width: 29%;
  top: 18%;
  left: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .yoyogi__desc {
    width: 70%;
    top: 30%;
    left: 8%;
  }
}

.access__desc {
  width: 24%;
  top: 73%;
  left: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .access__desc {
    width: 70%;
    top: 30%;
    left: 8%;
  }
}

.yoyogi__text {
  width: 2%;
  top: 8em;
  right: 30%;
}
@media print, screen and (max-width: 1023.9px) {
  .yoyogi__text {
    width: 3%;
    top: 12%;
    right: 10%;
    -webkit-filter: drop-shadow(0 0 2px #000);
            filter: drop-shadow(0 0 2px #000);
  }
}

.yoyogi__2min {
  width: 16%;
  bottom: 15%;
  left: 5.5%;
}
@media print, screen and (max-width: 1023.9px) {
  .yoyogi__2min {
    width: 13%;
    bottom: 24%;
    left: 10%;
  }
}

.access__text {
  width: 2%;
  top: 22%;
  right: 51.7%;
}
@media print, screen and (max-width: 1023.9px) {
  .access__text {
    width: 3%;
    top: 13%;
    right: 12%;
    -webkit-filter: drop-shadow(0 0 2px #000);
            filter: drop-shadow(0 0 2px #000);
  }
}

.location__ttl {
  width: 24%;
  top: 8.5%;
  right: 4%;
}
.location__ttl img {
  width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .location__ttl {
    width: 35%;
    top: 14%;
    right: 30%;
    -webkit-filter: drop-shadow(0 0 2px #000);
            filter: drop-shadow(0 0 2px #000);
  }
}

.location__desc {
  width: 24%;
  top: 19%;
  right: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .location__desc {
    width: 60%;
    top: 28%;
    right: 5%;
  }
}

.location__text {
  width: 2%;
  top: 16%;
  left: 10%;
}
@media print, screen and (max-width: 1023.9px) {
  .location__text {
    width: 4%;
    top: 12%;
    left: 14%;
  }
}

.residence__ttl {
  width: 25%;
  bottom: 28%;
  left: 5%;
}
@media print, screen and (max-width: 1023.9px) {
  .residence__ttl {
    width: 42%;
    bottom: 50%;
    left: 7%;
  }
}

.residence__desc {
  width: 24%;
  bottom: 18%;
  left: 5%;
}
@media print, screen and (max-width: 1023.9px) {
  .residence__desc {
    width: 60%;
    bottom: 27%;
    left: 7%;
  }
}

.residence__text {
  width: 2%;
  top: 14%;
  left: 26%;
}
@media print, screen and (max-width: 1023.9px) {
  .residence__text {
    width: 3.5%;
    top: 14%;
    left: 78%;
    -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
            filter: drop-shadow(0 0 5px rgb(0, 0, 0));
  }
}

.plan__ttl {
  width: 28%;
  bottom: 6%;
  right: 4%;
}
@media print, screen and (max-width: 1023.9px) {
  .plan__ttl {
    width: 42%;
    bottom: 24%;
    right: 5%;
  }
}

.plan__desc {
  width: 24%;
  bottom: 17%;
  right: 3%;
}
@media print, screen and (max-width: 1023.9px) {
  .plan__desc {
    width: 60%;
    bottom: 42%;
    right: 5%;
    -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
            filter: drop-shadow(0 0 5px rgb(0, 0, 0));
  }
}

.plan__text {
  width: 2.5%;
  top: 16%;
  right: 18%;
}
@media print, screen and (max-width: 1023.9px) {
  .plan__text {
    width: 3.5%;
    top: 14%;
    right: 85%;
    -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
            filter: drop-shadow(0 0 5px rgb(0, 0, 0));
  }
}

.brand__ttl {
  width: 16%;
  bottom: 28%;
  left: 5%;
}
@media print, screen and (max-width: 1023.9px) {
  .brand__ttl {
    width: 24%;
    bottom: 50%;
    left: 7%;
  }
}

.brand__desc {
  width: 16%;
  bottom: 17%;
  left: 5%;
}
@media print, screen and (max-width: 1023.9px) {
  .brand__desc {
    width: 41%;
    bottom: 27%;
    left: 7%;
  }
}

.brand__text {
  width: 2%;
  top: 14%;
  left: 12%;
}
@media print, screen and (max-width: 1023.9px) {
  .brand__text {
    width: 3.7%;
    top: 14%;
    left: 78%;
    -webkit-filter: drop-shadow(0 0 5px rgb(0, 0, 0));
            filter: drop-shadow(0 0 5px rgb(0, 0, 0));
  }
}

.card-area-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 600px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .card-area-col {
    margin-top: 40px;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .card-area-col a:first-of-type {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .card-area-col a .card__more {
    padding-top: 15px;
    padding-bottom: 5px;
  }
}

.card-area {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .card-area {
    display: block;
    padding-inline: 1em;
    overflow: hidden;
  }
  .card-area .slick-list {
    overflow: visible;
  }
  .card-area .card {
    width: calc(100% - 20px) !important;
    margin-inline: 20px;
  }
}

.card-area__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.card-area__dots li {
  width: 12px;
  height: 12px;
}
.card-area__dots li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid #777;
  border-radius: 50%;
  background-color: #fff;
  font-size: 0;
  cursor: pointer;
}
.card-area__dots li.slick-active button {
  background-color: #777;
}

.card {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 10px;
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
@media print, screen and (max-width: 1023.9px) {
  .card:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.card:hover .card__img img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
@media print, screen and (max-width: 1023.9px) {
  .card:hover .card__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.card:hover .card__more img {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
@media print, screen and (max-width: 1023.9px) {
  .card:hover .card__more img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.card.-soon {
  opacity: 0.4;
  pointer-events: none;
}

.card__img {
  overflow: hidden;
}
.card__img img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.card__more {
  padding-top: 30px;
  padding-bottom: 20px;
}
.card__more img {
  width: 74px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}