/*************************************************

header

*************************************************/
@media screen and (max-width: 767px) {
  .wrapper:not(.menu-open) .header {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .wrapper:not(.menu-open) .header.is-bg {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

/*************************************************

container

*************************************************/
@media screen and (max-width: 767px) {
  .container {
    padding-top: 0;
  }
}

/*************************************************

top-com

*************************************************/
/* top-com-title
---------------------------------------*/
.top-com-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .top-com-title {
    margin-bottom: 3rem;
  }
}
.top-com-title .in-en {
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .top-com-title .in-en img {
    width: auto;
    height: 2.5rem;
  }
}
.top-com-title .in-ja {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

/* top-com-btn
---------------------------------------*/
.top-com-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(21rem, 100% - 4rem);
  height: 5rem;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 10rem;
  background-color: #231815;
  border: #231815 solid 2px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media (any-hover: hover) {
  .top-com-btn:hover {
    color: #231815;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .top-com-btn {
    width: calc(100% - 4rem);
    font-size: 1.6rem;
  }
}
.top-com-btn.is-orange {
  background-color: #ed6c00;
  border-color: #ed6c00;
}
@media (any-hover: hover) {
  .top-com-btn.is-orange:hover {
    color: #231815;
    background-color: transparent;
  }
}
.top-com-btn.is-orange2 {
  background-color: #ed6c00;
  border-color: #ed6c00;
}
@media (any-hover: hover) {
  .top-com-btn.is-orange2:hover {
    color: #ed6c00;
    background-color: #fff;
  }
}
.top-com-btn.is-orange3 {
  color: #000;
  background-color: #ed6c00;
  border-color: #ed6c00;
}
@media (any-hover: hover) {
  .top-com-btn.is-orange3:hover {
    color: #ed6c00;
    background-color: #fff;
  }
}

/*************************************************

top-mv

*************************************************/
.top-mv {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1920/1080;
}
@media screen and (max-width: 767px) {
  .top-mv {
    aspect-ratio: 920/1380;
  }
}
.top-mv::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #fff;
  opacity: 0;
  z-index: 10;
}
.top-mv iframe,
.top-mv video {
  position: relative;
  display: block;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/*************************************************

top-lead

*************************************************/
.top-lead {
  overflow: hidden;
  position: relative;
  padding: 10rem 2rem 17rem;
  color: #fff;
  text-align: center;
  background-color: #121212;
}
@media screen and (max-width: 767px) {
  .top-lead {
    padding: 2rem 0 6rem;
  }
}
.top-lead > * {
  position: relative;
  z-index: 5;
}

.top-lead-logo {
  position: absolute;
  left: 0;
  top: 6.5rem;
  width: 100%;
  text-align: center;
  line-height: 0;
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-lead-logo {
    position: static;
    width: min(28rem, 90%);
    margin: 0 auto 4rem;
    opacity: 1;
  }
}
.top-lead-logo img {
  width: 100%;
}

.top-lead-logo-slide {
  position: absolute;
  left: 0;
  top: 6.5rem;
  width: 100%;
  text-align: center;
  line-height: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-lead-logo-slide {
    display: none;
  }
}

.top-lead-logo-slide__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-lead-logo-slide__wrap img {
  width: 100%;
}

.top-lead-logo-slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-animation: infinity-scroll-left 80s infinite linear both;
          animation: infinity-scroll-left 80s infinite linear both;
}
.top-lead-logo-slide__inner figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 190rem;
  padding: 0 7rem;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.top-lead-title {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-lead-title {
    font-size: min(2.4rem, 5.8666666667vw);
  }
}

.top-lead-texts {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top-lead-texts {
    margin: 0 min(2rem, 5.3333333333vw);
    font-size: min(1.6rem, 3.7333333333vw);
  }
}
.top-lead-texts p {
  margin-bottom: 2.4em;
  font-weight: 600;
}
.top-lead-texts p:last-child {
  margin-bottom: 0;
}

.top-lead-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 27rem;
  margin: 0 auto 7rem;
  gap: 2rem 4rem;
}

.top-lead-btns__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #c79f62;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}
.top-lead-btns__anchor .in-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 5px;
  min-height: 40px;
  line-height: 0;
}
.top-lead-btns__anchor .in-logo img {
  min-height: 0%;
}
.top-lead-btns__anchor.is-01 .in-logo {
  width: 40px;
}
.top-lead-btns__anchor.is-02 .in-logo {
  width: 43px;
}
.top-lead-btns__anchor.is-03 .in-logo {
  width: 40px;
}
.top-lead-btns__anchor.is-04 .in-logo {
  width: 40px;
}
.top-lead-btns__anchor.is-05 .in-logo {
  width: 38px;
}
.top-lead-btns__anchor.is-06 .in-logo {
  width: 27px;
}
.top-lead-btns__anchor .in-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

/*************************************************

top-pickup

*************************************************/
.top-pickup {
  overflow: hidden;
  padding: 10rem 0;
  background-color: #ed6c00;
}
@media screen and (max-width: 767px) {
  .top-pickup {
    padding: 5.5rem 0 8rem;
  }
}
.top-pickup .top-com-title {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top-pickup-slide {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 768px) {
  .top-pickup-slide .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 768px) {
  .top-pickup-slide .swiper-slide {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: calc(25% - 3rem);
  }
}
@media screen and (max-width: 767px) {
  .top-pickup-slide .parts-postlist01__anchor {
    width: auto;
    padding: 0;
    margin: 0 2rem;
  }
  .top-pickup-slide .parts-postlist01__anchor::before, .top-pickup-slide .parts-postlist01__anchor::after {
    display: none !important;
  }
}
.top-pickup-slide .parts-postlist01__anchor .in-title,
.top-pickup-slide .parts-postlist01__anchor .in-text {
  color: #fff;
}

/*************************************************

top-lead2

*************************************************/
.top-lead2 {
  padding: 10rem 2rem;
}
@media screen and (max-width: 767px) {
  .top-lead2 {
    padding: 5rem 0;
  }
}

.top-lead2-title {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-lead2-title {
    margin-bottom: 3rem;
    font-size: min(2.4rem, 5.8666666667vw);
  }
}

.top-lead2-texts {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-lead2-texts {
    margin: 0 min(2rem, 5.3333333333vw);
    font-size: min(1.6rem, 3.7333333333vw);
  }
}
.top-lead2-texts p {
  margin-bottom: 2.4em;
  font-weight: 600;
}
.top-lead2-texts p:last-child {
  margin-bottom: 0;
}

/*************************************************

top-shop

*************************************************/
.top-shop {
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .top-shop {
    padding: 10rem 0 3rem;
  }
}

/*************************************************

top-shoplist

*************************************************/
.top-shoplist {
  overflow: hidden;
  padding: 5rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .top-shoplist {
    padding: 3rem 0 8rem;
  }
}

@media screen and (max-width: 767px) {
  .top-shoplist-slide {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 768px) {
  .top-shoplist-slide .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8rem 4rem;
    max-width: 112rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 768px) {
  .top-shoplist-slide .swiper-slide {
    -ms-flex-negative: 1;
        flex-shrink: 1;
    width: calc(25% - 3rem);
  }
}
@media screen and (max-width: 767px) {
  .top-shoplist-slide .parts-postlist01__anchor {
    width: auto;
    padding: 0;
    margin: 0 2rem;
  }
  .top-shoplist-slide .parts-postlist01__anchor::before, .top-shoplist-slide .parts-postlist01__anchor::after {
    display: none !important;
  }
}

/*************************************************

top-movie

*************************************************/
.top-movie {
  padding: 10rem 2rem;
  color: #fff;
  background-color: #121212;
}
@media screen and (max-width: 767px) {
  .top-movie {
    padding: 5rem 0;
  }
}

.top-movie-title {
  margin-bottom: 5rem;
  font-size: 2.4rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top-movie-title {
    margin-bottom: 3rem;
    font-size: min(2.4rem, 5.8666666667vw);
  }
}

.top-movie-texts {
  margin-bottom: 9rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top-movie-texts {
    margin: 0 0 6rem;
    font-size: min(1.6rem, 3.7333333333vw);
  }
}
.top-movie-texts p {
  margin-bottom: 2.4em;
  font-weight: 600;
}
.top-movie-texts p:last-child {
  margin-bottom: 0;
}

.top-movie-el {
  width: min(100rem, 100% - 6rem);
  margin: 0 auto;
}
.top-movie-el iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*************************************************

top-about

*************************************************/
.top-about {
  padding: 9rem 0 14rem;
}
@media screen and (max-width: 992px) {
  .top-about {
    padding: 3rem 0 3rem;
  }
}
.top-about .top-com-btn {
  width: 100%;
}

.top-about-tenantbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: min(112rem, 100% - 3rem);
  margin: 0 auto 7rem;
  background-color: #fff;
}
.top-about-tenantbox:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .top-about-tenantbox {
    display: block;
    width: min(60rem, 100% - 3rem);
    margin-bottom: 2.5rem;
  }
}

.top-about-tenantbox__img {
  width: 62.0535714286%;
}
@media screen and (max-width: 992px) {
  .top-about-tenantbox__img {
    width: 100%;
  }
}
.top-about-tenantbox__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-about-tenantbox__letters {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-item-align: center;
      align-self: center;
  width: 37.9464285714%;
  padding: 2rem 7rem;
}
@media screen and (max-width: 992px) {
  .top-about-tenantbox__letters {
    width: 100%;
    padding: 2rem 2.5rem;
  }
}

.top-about-tenantbox__title {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.1em;
  font-size: min(2.4rem, 6.4vw);
  font-weight: 700;
  line-height: 1.3;
}
.top-about-tenantbox__title .in-num {
  position: absolute;
  top: 0;
  left: 0;
}

.top-about-tenantbox__text {
  font-size: 1.4rem;
  line-height: 1.5;
}

.top-about-tenantbox__btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 5rem;
  margin-top: 2.2rem;
  color: #000;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  text-decoration: none;
  background-color: #ed6c00;
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .top-about-tenantbox__btn {
    font-size: 1.6rem;
  }
}

/*************************************************

top-access

*************************************************/
.top-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  min-height: 60rem;
  background-color: #121212;
}
@media screen and (max-width: 767px) {
  .top-access {
    display: block;
    min-height: 0;
  }
}
.top-access .top-com-btn {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .top-access .top-com-btn {
    width: 100%;
  }
}

.top-access-map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-access-map {
    width: auto;
    aspect-ratio: 375/240;
  }
}
.top-access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.top-access-letters {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 992px) {
  .top-access-letters {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  .top-access-letters {
    width: auto;
    padding: 2rem 1.5rem 5.5rem;
  }
}

/*************************************************

top-insta

*************************************************/
.top-insta {
  padding: 10rem 3rem;
}
@media screen and (max-width: 767px) {
  .top-insta {
    padding: 3rem;
  }
}

.top-insta-inner {
  max-width: 120rem;
  margin: 0 auto;
}

/*************************************************

footer

*************************************************/
.footer {
  margin-top: 0;
}