@charset "UTF-8";
/* --------------------
		setting
-------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap");
@media screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp-only {
    display: none !important;
  }
}

:root {
  --c-txt: #4E4E4E;
  --c-wh: #fff;
  --c-bg_main: #F1F1F1;
  --c-bg_odd: #F7F7F7;
  --c-bg_even: #fff;
  --c-1: #4E4E4E;
  --c-2: #DC9260;
  --c-3: #A96665;
  --c-4: #3A62AB;
  --c-5: #303030;
  --c-6: #936E61;
}

/* --------------------
	contents
-------------------- */
#contents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  background-color: var(--c-bg_main);
  color: var(--c-txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#contents img {
  width: 100%;
  height: auto;
}
#contents a {
  transition: 0.2s;
}

.--pc-flex__reverse {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1000px) {
  .--pc-flex__reverse {
    display: flex;
    flex-direction: row;
  }
}

@media screen and (min-width: 1000px) {
  .--pc-flex {
    display: flex;
  }
}
header {
  position: relative;
  animation: fadeIn 1.5s ease 0s forwards;
  opacity: 0;
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  header {
    height: 100vh;
    background: url(../img/mv_img_pc.webp) no-repeat center top/cover;
  }
}
header h1 {
  position: absolute;
  width: 72.8vw;
  bottom: 18.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  header h1 {
    width: 32.734375vw;
    position: absolute;
    top: auto;
    bottom: 4.6875vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
header .label-logo {
  width: 14.9333333333vw;
  position: absolute;
  bottom: 5.3333333333vw;
  right: 50%;
  transform: translateX(50%);
  z-index: 10;
}
@media screen and (min-width: 1000px) {
  header .label-logo {
    width: 6.484375vw;
    top: 2.34375vw;
    right: 2.34375vw;
    transform: none;
  }
}

.header__p {
  width: 80vw;
  font-size: 3.2vw;
  margin: 13.3333333333vw auto;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1000px) {
  .header__p {
    width: 100%;
    font-size: 13px;
    margin: 70px auto;
    text-align: center;
  }
}

.nav {
  display: flex;
  overflow-x: scroll;
  padding-left: 10.1333333333vw;
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .nav {
    margin: 0 auto 100px;
    overflow-x: visible;
    padding: 0;
    justify-content: center;
  }
}
.nav li {
  position: relative;
  width: 28vw;
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .nav li {
    width: 105px;
  }
}
.nav li:nth-child(n+2) {
  margin-left: 4vw;
}
@media screen and (min-width: 1000px) {
  .nav li:nth-child(n+2) {
    margin-left: 15px;
  }
}
.nav__number {
  position: absolute;
  top: 1.8666666667vw;
  left: 1.8666666667vw;
  z-index: 10;
  font-size: 3.2vw;
  margin-bottom: 2.6666666667vw;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1000px) {
  .nav__number {
    top: 0.546875vw;
    left: 0.546875vw;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
.nav__img {
  width: 28vw;
}
@media screen and (min-width: 1000px) {
  .nav__img {
    width: 105px;
  }
}
.nav li a {
  display: block;
}
@media screen and (min-width: 1000px) {
  .nav li a:hover {
    transform: translateY(5px);
  }
}

/*-------- section共通 --------*/
#sec-01, #sec-03, #sec-05 {
  background-color: var(--c-bg_odd);
}
#sec-01 .credit__item-list li, #sec-03 .credit__item-list li, #sec-05 .credit__item-list li {
  border-bottom: var(--c-item_border_odd) 1px solid;
}

#sec-02, #sec-04, #sec-06 {
  background-color: var(--c-bg_even);
}
#sec-02 .credit__item-list li, #sec-04 .credit__item-list li, #sec-06 .credit__item-list li {
  border-bottom: var(--c-item_border_even) 1px solid;
}

.sec__inner {
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .sec__inner {
    width: 985px;
    margin: 0 auto;
    padding: 100px 0;
  }
}

@media screen and (min-width: 1000px) {
  .txt__inner__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57.03125vw;
    margin: 0 auto;
  }
}

.txt__inner__img {
  width: 78.6666666667vw;
  margin: 0 auto 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .txt__inner__img {
    width: 335px;
    margin: 0 0 0 100px;
  }
}

.txt__inner {
  width: 78.6666666667vw;
  margin: 0 auto;
  font-family: "aw-conqueror-didot", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1000px) {
  .txt__inner {
    width: 295px;
    margin: 0;
  }
}
.txt__inner__name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  .txt__inner__name {
    margin-bottom: 30px;
  }
}
.txt__inner__name-top {
  position: relative;
  font-size: 5.8666666667vw;
}
.txt__inner__name-top:after {
  content: "";
  display: inline-block;
  width: 2.6666666667vw;
  height: 1px;
  margin: 2.6666666667vw 0 1.8666666667vw 3.4666666667vw;
  background-color: var(--c-txt);
}
@media screen and (min-width: 1000px) {
  .txt__inner__name-top:after {
    width: 10px;
    margin: 10px 0 7px 13px;
  }
}
@media screen and (min-width: 1000px) {
  .txt__inner__name-top {
    font-size: 22px;
  }
}
.txt__inner__name-nb {
  font-family: "linotype-didot", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5.8666666667vw;
  margin-left: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .txt__inner__name-nb {
    font-size: 22px;
    margin-left: 13px;
  }
}

.credit {
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4666666667vw;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .credit {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.credit span {
  font-size: 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .credit span {
    font-size: 8px;
  }
}
.credit a {
  display: block;
}

#sec-02 .btn a {
  border: 1px solid var(--c-2);
  background-color: var(--c-2);
}
#sec-02 .btn a:hover {
  border: 1px solid var(--c-2);
  color: var(--c-2);
  background-color: transparent;
}
#sec-02 .btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-2);
  border-right: 1px solid var(--c-2);
}

#sec-03 .btn a {
  border: 1px solid var(--c-3);
  background-color: var(--c-3);
}
#sec-03 .btn a:hover {
  border: 1px solid var(--c-3);
  color: var(--c-3);
  background-color: transparent;
}
#sec-03 .btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-3);
  border-right: 1px solid var(--c-3);
}

#sec-04 .btn a {
  border: 1px solid var(--c-4);
  background-color: var(--c-4);
}
#sec-04 .btn a:hover {
  border: 1px solid var(--c-4);
  color: var(--c-4);
  background-color: transparent;
}
#sec-04 .btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-4);
  border-right: 1px solid var(--c-4);
}

#sec-05 .btn a {
  border: 1px solid var(--c-5);
  background-color: var(--c-5);
}
#sec-05 .btn a:hover {
  border: 1px solid var(--c-5);
  color: var(--c-5);
  background-color: transparent;
}
#sec-05 .btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-5);
  border-right: 1px solid var(--c-5);
}

#sec-06 .btn a {
  border: 1px solid var(--c-6);
  background-color: var(--c-6);
}
#sec-06 .btn a:hover {
  border: 1px solid var(--c-6);
  color: var(--c-6);
  background-color: transparent;
}
#sec-06 .btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-6);
  border-right: 1px solid var(--c-6);
}

/*-------- block-1 --------*/
.block-1-1__wrap {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .block-1-1__wrap {
    margin-bottom: 100px;
  }
}
.block-1-1__wrap figure:first-child {
  width: 67.2vw;
}
@media screen and (min-width: 1000px) {
  .block-1-1__wrap figure:first-child {
    width: 434px;
  }
}
.block-1-1__wrap figure:nth-child(2) {
  width: 32.8vw;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1000px) {
  .block-1-1__wrap figure:nth-child(2) {
    width: 211px;
    margin: 0;
    margin-top: 609px;
  }
}
.block-1-1__wrap figure:nth-child(3) {
  width: 56.5333333333vw;
  margin-left: 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .block-1-1__wrap figure:nth-child(3) {
    width: 340px;
    margin: 0;
    margin-top: 132px;
  }
}
@media screen and (min-width: 1000px) {
  .block-1-1__wrap {
    display: flex;
  }
}

/*-------- block-2 --------*/
.block-2 .slider {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .block-2 .slider {
    width: 487px;
  }
}
.block-2-1__wrap {
  margin-bottom: 18.6666666667vw;
  position: relative;
}
.block-2-1__wrap figure:nth-child(2) {
  width: 78.6666666667vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 1000px) {
  .block-2-1__wrap figure:nth-child(2) {
    width: 383px;
  }
}
@media screen and (min-width: 1000px) {
  .block-2-1__wrap {
    width: 487px;
    margin-left: 11px;
    margin-bottom: 150px;
  }
}

/*-------- block-3 --------*/
.block-3__img {
  width: 100%;
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .block-3__img {
    width: 750px;
    margin: 0 0 70px auto;
  }
}
.block-3__wrap {
  margin-bottom: 18.6666666667vw;
  justify-content: center;
  display: flex;
}
@media screen and (min-width: 1000px) {
  .block-3__wrap {
    margin-bottom: 70px;
    justify-content: left;
  }
}
.block-3__wrap figure {
  width: 37.8666666667vw;
}
@media screen and (min-width: 1000px) {
  .block-3__wrap figure {
    width: 220px;
  }
}
.block-3__wrap figure:first-child {
  margin-right: 1.3333333333vw;
  margin-top: 18.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .block-3__wrap figure:first-child {
    margin: 0 10px 0 0;
  }
}
.block-3__wrap__img {
  width: 100%;
  margin-bottom: 18.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .block-3__wrap__img {
    width: 383px;
    margin: 0 0 0 -435px;
  }
}

.all {
  width: 78.6666666667vw;
  margin: 26.6666666667vw auto;
}
@media screen and (min-width: 1000px) {
  .all {
    width: 100%;
    margin: 100px auto;
  }
}
.all__top {
  display: block;
  text-align: center;
  font-size: 5.8666666667vw;
  margin-bottom: 13.3333333333vw;
  font-family: "aw-conqueror-didot", serif;
  font-weight: 400;
  font-style: normal;
}
.all__top span {
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .all__top span {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .all__top {
    font-size: 22px;
    margin-bottom: 50px;
  }
}
.all__wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 13.3333333333vw;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  .all__wrap {
    margin-bottom: 50px;
  }
}
.all__wrap li {
  width: 25.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .all__wrap li {
    width: 118px;
  }
}
.all__wrap li a {
  display: block;
  overflow: hidden;
}
.all__wrap li a img {
  transition: all 0.5s ease;
}
.all__wrap li a:hover {
  opacity: 0.8;
}
.all__wrap li a:hover img {
  transform: scale(1.1);
}
.all__wrap li:nth-child(n+2) {
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .all__wrap li:nth-child(n+2) {
    margin-left: 5px;
  }
}
.all__wrap li:nth-child(4) {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .all__wrap li:nth-child(4) {
    margin-left: 5px;
  }
}
.all__wrap li:nth-child(-n+3) {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .all__wrap li:nth-child(-n+3) {
    margin-bottom: 0;
  }
}
.all__btn a {
  border: 1px solid var(--c-2) !important;
  background-color: var(--c-2) !important;
}
.all__btn a:hover {
  border: 1px solid var(--c-2) !important;
  background-color: transparent !important;
  color: var(--c-2) !important;
  opacity: 1;
}
.all__btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-2) !important;
  border-right: 1px solid var(--c-2) !important;
}

.btn a {
  position: relative;
  color: #fff;
  display: block;
  width: 78.6666666667vw;
  padding: 4vw;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--c-txt);
  background-color: var(--c-txt);
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .btn a {
    width: 295px;
    padding: 15px;
    font-size: 13px;
  }
}
.btn a:after {
  content: "";
  display: block;
  position: absolute;
  right: 5.3333333333vw;
  top: 4.8vw;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 0.2666666667vw solid var(--c-wh);
  border-right: 0.2666666667vw solid var(--c-wh);
  transform: rotate(45deg);
}
@media screen and (min-width: 1000px) {
  .btn a:after {
    border-top: 1px solid var(--c-wh);
    border-right: 1px solid var(--c-wh);
    right: 20px;
    top: 18px;
    width: 6px;
    height: 6px;
  }
}
.btn a:hover {
  border: 1px solid var(--c-txt);
  background-color: transparent;
  color: var(--c-txt);
  opacity: 1;
}
.btn a:hover:after {
  content: "";
  border-top: 1px solid var(--c-txt);
  border-right: 1px solid var(--c-txt);
}

.aside {
  position: relative;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
}
.aside__inner {
  width: 80vw;
  font-size: 3.2vw;
  letter-spacing: 0.05em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1000px) {
  .aside__inner {
    font-size: 12px;
  }
}
.aside__inner__head {
  width: 62.4vw;
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .aside__inner__head {
    width: 234px;
    margin: 0 auto 40px;
  }
}
.aside__inner__btn a {
  position: relative;
  display: block;
  width: 80vw;
  border: 1px solid var(--c-bg_main);
  color: var(--c-txt);
  padding: 5.3333333333vw;
  text-align: center;
  color: var(--c-bg_main);
}
@media screen and (min-width: 1000px) {
  .aside__inner__btn a {
    width: 23.4375vw;
    padding: 20px;
    margin: 0 auto;
  }
}
.aside__inner__btn a:hover {
  background-color: var(--c-bg_main);
  color: var(--c-txt);
}

.aside__inner__btn-top {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .aside__inner__btn-top {
    margin-bottom: 20px;
  }
}

/* --------------------
	move
-------------------- */
h1 {
  animation: fadeIn 1.5s ease 0.8s forwards;
  opacity: 0;
  z-index: 10;
}

.top_logo {
  animation: fadeIn 1.5s ease 0.8s forwards;
  opacity: 0;
  z-index: 10;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
}

.fadein-active {
  opacity: 1;
  visibility: visible;
}

.fadeinup {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
  transform: translateY(20px);
}

.fadeinup-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fadeinright {
  opacity: 0;
  visibility: hidden;
  transition: all 2s ease 0.3s;
  transform: translateX(-20px);
}

.fadeinright-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scale {
  overflow: hidden;
}
.scale img {
  transform: scale(1.1);
  transition: all 1s ease;
}

.scale-active {
  overflow: hidden;
}
.scale-active img {
  transform: scale(1);
}

.link__none {
  pointer-events: none;
  text-decoration: none !important;
  opacity: 0.5;
}
.link__none .credit__item__btn {
  display: none;
}

/* --------------------
		footer
-------------------- */
.footer {
  padding: 16vw 0;
  background-color: #000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 3.90625vw 0;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 34.6666666667vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo {
    width: 10.15625vw;
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
  width: 34.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__logo a {
    width: 10.15625vw;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 1000px) {
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .footer__copyright {
    font-size: 1.015625vw;
  }
}/*# sourceMappingURL=260526_rosso-w_dress_style.css.map */