@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;
  }
}

@-webkit-keyframes hover {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hover {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.js-fade-3d {
  overflow: hidden;
  -webkit-transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translate3d(0, 5%, 0);
  transform: translate3d(0, 5%, 0);
  opacity: 0;
}

.js-fade-3d.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: all 2.5s;
  transition: all 2.5s;
}

.js-fade-scale {
  -webkit-transition: -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.js-fade-scale.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 2s;
  transition: all 2s;
}

html {
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: calc(10* (100vw / 1200));
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10* (100vw / 750));
  }
}

body {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .main-area .main-inner {
    width: 100%;
  }
}

#main-container img,
#main-container video {
  width: 100%;
  height: auto;
}

#main-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  #main-container .sp_component {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  #main-container #breadcrumb .cateList {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: justify;
  }

  #main-container .pc_component {
    display: none;
  }

  #main-container .order_1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  #main-container .order_2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

/*//////////////////////////////////////////////////

Title : _layout.css
For   : "2021 AW1st COLLECTION PRE ORDER" styles of the site

Created       : 2021-07-06
Last Modified : 2021-07-06

==========================================

Content

    common

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            common
============================================================================================== */
body.active {
  overflow: hidden;
}

.main-container {
  margin: 0 auto;
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #595757;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .main-container {
    width: 120rem;
    padding: 4rem 0 18rem;
  }
}

.main-container a {
  display: block;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container {
    width: 100%;
    padding: 0 0 calc(100* (100vw / 750));
  }
}

/*//////////////////////////////////////////////////

Title : _swiperreset.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    swiper

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            swiper
============================================================================================== */
.main-container.__landingpage .swiper-button-prev.swiper-custom-button,
.main-container.__landingpage .swiper-button-next.swiper-custom-button {
  width: inherit;
  height: inherit;
  left: inherit;
  right: inherit;
  margin-top: inherit;
  display: inherit;
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
  color: inherit;
}

.main-container.__landingpage .swiper-button-prev.swiper-custom-button::before,
.main-container.__landingpage .swiper-button-prev.swiper-custom-button::after,
.main-container.__landingpage .swiper-button-next.swiper-custom-button::before,
.main-container.__landingpage .swiper-button-next.swiper-custom-button::after {
  content: "";
  display: none;
  position: inherit;
  width: inherit;
  height: inherit;
  background: inherit;
  left: inherit;
  -webkit-transform: inherit;
  transform: inherit;
  top: inherit;
  bottom: inherit;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
/*//////////////////////////////////////////////////

Title : _first view.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    first view

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            first view
============================================================================================== */
.main-container.__landingpage .firstview__video {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview__video {
    width: 120rem;
    height: 67.5rem;
  }
}

.main-container.__landingpage .firstview__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-container.__landingpage .firstview .content__video {
  position: absolute;
  left: 50%;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.main-container.__landingpage .firstview .navigation {
  position: absolute;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation {
    right: 1rem;
    bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation__button {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.main-container.__landingpage .firstview .navigation__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation__icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 0.5px solid #fff;
  }
}

.main-container.__landingpage .firstview .navigation__icon--triangle {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation__icon--triangle {
    border-width: 0.4rem 0 0.4rem 0.8rem;
    margin-left: 0.2rem;
    -webkit-transition: 1s;
    transition: 1s;
  }
}

.main-container.__landingpage .firstview .navigation__icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation__icon::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.main-container.__landingpage .firstview .navigation__icon:hover::after {
  -webkit-animation: ripple 1s ease;
  animation: ripple 1s ease;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .navigation__text {
    margin-left: 0.8rem;
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #fff;
  }
}

.main-container.__landingpage .firstview .heading {
  font-family: le-monde-livre-std, serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .firstview .heading {
    margin-top: 12rem;
    font-size: 2.05rem;
    line-height: 1.77659;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landingpage .firstview__video {
    width: 100%;
    height: calc(1000* (100vw / 750));
  }

  .main-container.__landingpage .firstview .navigation {
    right: calc(40* (100vw / 750));
    bottom: calc(40* (100vw / 750));
  }

  .main-container.__landingpage .firstview .navigation__button {
    width: calc(52* (100vw / 750));
    height: calc(52* (100vw / 750));
  }

  .main-container.__landingpage .firstview .navigation__icon {
    width: calc(50* (100vw / 750));
    height: calc(50* (100vw / 750));
    border: 1px solid #fff;
  }

  .main-container.__landingpage .firstview .navigation__icon--triangle {
    border-width: calc(8* (100vw / 750)) 0 calc(8* (100vw / 750)) calc(16* (100vw / 750));
    margin-left: calc(2* (100vw / 750));
    -webkit-transition: 1s;
    transition: 1s;
  }

  .main-container.__landingpage .firstview .navigation__icon::after {
    width: calc(52* (100vw / 750));
    height: calc(52* (100vw / 750));
  }

  .main-container.__landingpage .firstview .heading {
    margin-top: calc(80* (100vw / 750));
    font-size: calc(23* (100vw / 750));
    line-height: 1.58348;
  }
}

/*//////////////////////////////////////////////////

Title : _content.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    content

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            content
============================================================================================== */
.main-container.__landingpage .container-inner .content__wrapper {
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__wrapper--sec01 {
    margin-top: 9rem;
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec02 {
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec03 {
    margin-top: 12rem;
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec04 {
    margin-top: 21rem;
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec05 {
    margin-top: 18rem;
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec06 {
    margin-top: 12rem;
  }
}

.main-container.__landingpage .container-inner .content__movie {
  width: 100%;
}

.main-container.__landingpage .container-inner .content__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main-container.__landingpage .container-inner .content__block--sec02 {
    margin-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__unit {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .main-container.__landingpage .container-inner .content__unit:hover {
    position: relative;
    z-index: 3;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-01 {
    width: 100%;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-02 {
    width: 55rem;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-03 {
    width: 55rem;
    margin-top: 31.5rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-04 {
    width: 100%;
    margin-top: 20rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-01 {
    width: 46.8rem;
    margin-top: 32.2rem;
    z-index: 10;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-01:hover {
    z-index: 10;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-02 {
    width: 56.8rem;
    margin-left: -4rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-03 {
    width: 50rem;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-04 {
    width: 100%;
    margin-top: 10.5rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-05 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-06 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-01 {
    width: 100%;
    margin-top: 12rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-02 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-03 {
    width: 100%;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-04 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-05 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-06 {
    width: 100%;
    margin-top: 12rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-07 {
    width: 100%;
    margin-top: 14.5rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-08 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-09 {
    width: 100%;
    margin-top: 9rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-01 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-02 {
    width: 100%;
    margin-top: 23rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-03 {
    width: 100%;
    margin-top: 20rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-04 {
    width: 100%;
    margin-top: 10rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-05 {
    width: 100%;
    margin-top: 13rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec05-01 {
    width: 53.5rem;
    margin-top: 10rem;
    z-index: 2;
  }

  .main-container.__landingpage .container-inner .content__unit--sec05-02 {
    width: 54.4rem;
    margin-top: 64.2rem;
    margin-left: -22rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec05-03 {
    width: 100%;
    margin-top: 12rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec06-01 {
    width: 100%;
    margin-top: 12rem;
  }

  .main-container.__landingpage .container-inner .content__unit--sec06-02 {
    width: 100%;
    margin-top: 21rem;
  }
}

.main-container.__landingpage .container-inner .content__image {
  position: relative;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__image--sec01-01 {
    width: 52.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec01-04 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec02-05 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec02-06 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-01 {
    width: 50rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-02 {
    width: 53.5rem;
    margin-left: 14.5rem;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-03 {
    width: 53.5rem;
    margin-left: 51.8rem;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-05 {
    width: 46.7rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-06 {
    width: 57rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-07 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-08 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec03-09 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec04-01 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec04-02 {
    width: 70rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec04-03 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec04-04 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec05-03 {
    width: 53.5rem;
    margin: 0 auto;
  }

  .main-container.__landingpage .container-inner .content__image--sec06-01 {
    width: 62rem;
    margin: 0 auto;
  }
}

.main-container.__landingpage .container-inner .content__text {
  font-family: ltc-bodoni-175, serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.main-container.__landingpage .container-inner .content__text--upper,
.main-container.__landingpage .container-inner .content__text--lower {
  display: block;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__text--sec02 .content__text--upper {
    font-size: 4.221rem;
    line-height: 1.2;
  }

  .main-container.__landingpage .container-inner .content__text--sec02 .content__text--lower {
    margin-top: 2.6rem;
    font-size: 3.118rem;
    line-height: 1.2;
  }

  .main-container.__landingpage .container-inner .content__text--sec04 .content__text--upper {
    font-size: 3.6rem;
    line-height: 1.2;
  }

  .main-container.__landingpage .container-inner .content__text--sec04 .content__text--lower {
    margin-top: 5.8rem;
    font-size: 2.2rem;
    line-height: 1.75;
  }
}

.main-container.__landingpage .container-inner .content__credit {
  font-family: le-monde-livre-std, serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .container-inner .content__credit {
    font-size: 1.3rem;
    line-height: 2.30769;
    letter-spacing: 0.02em;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landingpage .container-inner .content__wrapper--sec01 {
    margin-top: calc(90* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec02 {
    margin-top: calc(140* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec03 {
    margin-top: calc(165* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec04 {
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec05 {
    margin-top: calc(145* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__wrapper--sec06 {
    margin-top: calc(75* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-01 {
    width: 100%;
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-02 {
    width: 100%;
    margin-top: calc(80* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec01-04 {
    width: 100%;
    margin-top: calc(155* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-01 {
    width: calc(668* (100vw / 750));
    margin: calc(75* (100vw / 750)) auto 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-02 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-03 {
    width: calc(668* (100vw / 750));
    margin: calc(75* (100vw / 750)) auto 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-04 {
    width: 100%;
    margin-top: calc(100* (100vw / 750));
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-05 {
    width: 100%;
    margin-top: calc(100* (100vw / 750));
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .main-container.__landingpage .container-inner .content__unit--sec02-06 {
    width: 100%;
    margin-top: calc(70* (100vw / 750));
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-01 {
    width: 100%;
    margin-top: calc(70* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-04 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-05 {
    width: 100%;
    margin-top: calc(75* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-06 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-07 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec03-08 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-01 {
    width: calc(668* (100vw / 750));
    margin: calc(75* (100vw / 750)) auto 0;
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-02 {
    width: 100%;
    margin-top: calc(160* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-03 {
    width: 100%;
    margin-top: calc(145* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-04 {
    width: 100%;
    margin-top: calc(75* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec04-05 {
    width: 100%;
    margin-top: calc(160* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec05-01 {
    width: calc(668* (100vw / 750));
    margin: calc(75* (100vw / 750)) auto 0;
  }

  .main-container.__landingpage .container-inner .content__unit--sec05-03 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec06-01 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__unit--sec06-02 {
    width: 100%;
    margin-top: calc(150* (100vw / 750));
  }

  .main-container.__landingpage .container-inner .content__image .image a {
    pointer-events: none;
  }

  .main-container.__landingpage .container-inner .content__text--sec02 .content__text--upper {
    font-size: calc(42.21* (100vw / 750));
    line-height: 1;
  }

  .main-container.__landingpage .container-inner .content__text--sec02 .content__text--lower {
    margin-top: calc(20* (100vw / 750));
    font-size: calc(22* (100vw / 750));
    line-height: 1;
  }

  .main-container.__landingpage .container-inner .content__text--sec04 .content__text--upper {
    font-size: calc(36* (100vw / 750));
    line-height: 1;
  }

  .main-container.__landingpage .container-inner .content__text--sec04 .content__text--lower {
    margin-top: calc(60* (100vw / 750));
    font-size: calc(22* (100vw / 750));
    line-height: 1.75;
  }

  .main-container.__landingpage .container-inner .content__credit {
    font-size: calc(20* (100vw / 750));
    line-height: 2.416;
    letter-spacing: 0.02em;
  }
}

/*//////////////////////////////////////////////////

Title : _caption.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    caption

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            caption
============================================================================================== */
.main-container.__landingpage .content__caption .price span {
  display: inline-block;
  padding-bottom: 1px;
}

@media screen and (min-width: 768px) {
  .main-container.__landingpage .content__caption {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 900;
  }

  .main-container.__landingpage .content__caption:hover {
    opacity: 1;
  }

  .main-container.__landingpage .content__caption .link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }

  .main-container.__landingpage .content__caption .link a {
    width: 100%;
    height: 100%;
  }

  .main-container.__landingpage .content__caption .price {
    position: absolute;
    font-size: 1.3rem;
    color: #fff;
  }

  .main-container.__landingpage .content__caption .price span {
    border-bottom: 1px solid #fff;
  }

  .main-container.__landingpage .content__caption .price span:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landingpage .container-inner .content__caption {
    display: none;
  }

  .main-container.__landingpage .content__modal .content__caption .price {
    font-size: calc(23* (100vw / 750));
    margin-top: calc(100* (100vw / 750));
  }

  .main-container.__landingpage .content__modal .content__caption .price span {
    border-bottom: 1px solid #595757;
  }

  .main-container.__landingpage .content__modal .content__caption .price span:not(:first-of-type) {
    margin-top: calc(30* (100vw / 750));
  }
}

/*//////////////////////////////////////////////////

Title : _button.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    button

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            button
============================================================================================== */
.content__button {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .content__button {
    width: 60rem;
    margin-top: 19.5rem;
  }
}

.content__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border: 1px solid #595757;
  letter-spacing: 0.002em;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .content__button a {
    width: 60rem;
    height: 6.4rem;
    font-size: 1.1rem;
    line-height: 1.54545;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .content__button {
    width: calc(616* (100vw / 750));
    margin-top: calc(145* (100vw / 750));
  }

  .content__button a {
    height: calc(125* (100vw / 750));
    font-size: calc(22* (100vw / 750));
    line-height: 1.54545;
  }
}

/*//////////////////////////////////////////////////

Title : _modal.css
For   : "2021 AW1st COLLECTION" styles of the site

Created       : 2021-07-26
Last Modified : 2021-07-26

==========================================

Content

    modal

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            modal
============================================================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////
                                        for smart phone
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container.__landingpage .content__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    z-index: 998;
    display: none;
  }

  .main-container.__landingpage .content__modal .modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
  }

  .main-container.__landingpage .content__modal .modal__inner {
    padding: calc(140* (100vw / 750)) calc(50* (100vw / 750));
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }

  .main-container.__landingpage .content__modal .modal__wrapper {
    position: relative;
  }

  .main-container.__landingpage .content__modal .modal__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: calc(26* (100vw / 750));
  }

  .main-container.__landingpage .content__modal .modal__block {
    position: relative;
    width: calc(650* (100vw / 750));
    margin-top: calc(105* (100vw / 750));
  }

  .main-container.__landingpage .content__modal .swiper-custom-button {
    top: calc(397* (100vw / 750));
    width: calc(18* (100vw / 750));
    height: calc(50* (100vw / 750));
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(/Page/CATALOG/210802/assets/img/svg/arrow.svg);
  }

  .main-container.__landingpage .content__modal .swiper-button-prev {
    left: calc(-40* (100vw / 750));
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .main-container.__landingpage .content__modal .swiper-button-next {
    right: calc(-40* (100vw / 750));
  }
}

/*# sourceMappingURL=layout.css.map */