@charset "UTF-8";
@import url("https://use.typekit.net/vxl5ope.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
html,
body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  color: #551125;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  background-color: #D6DAD8;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
}
body.loaded {
  position: static;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease 0s;
}

a:hover,
a:active,
a.active {
  opacity: 0.55;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form,
section,
p,
div,
ul,
li,
dl,
dt,
dd,
a,
span,
input,
textarea {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

#loader {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in 0s;
}
#loader .logo {
  width: 359px;
  height: 26px;
  background-image: url(../images/logo_city.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}
#loader .bar span {
  width: 0;
  height: 100%;
  background-color: #551125;
  display: block;
}
#loader.complete {
  opacity: 0;
}

@supports (height: 100dvh) {
  #loader {
    height: 100dvh;
  }
}
main {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.city-look {
  width: 100%;
  margin: 0 auto;
  background-color: #D6DAD8;
  overflow: hidden;
  position: relative;
}

.look-photo {
  background-color: #FFF;
  position: relative;
  overflow: hidden;
}
.look-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.look-photo--fade img + img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.look-photo--fade.is-alt img + img {
  opacity: 1;
}

.look-lead__photo .slick-list,
.look-lead__photo .slick-track,
.look-lead__photo .slick-slide,
.look-lead__photo .slick-slide > div,
.look-lead__photo .look-lead__slide {
  height: 100%;
}

.look-hero {
  width: 100vw;
  height: auto;
  margin-left: calc(50% - 50vw);
  position: relative;
  background-color: #FFF;
  overflow: hidden;
}
.look-hero__visual {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.look-hero__visual img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.look-hero__title, .look-hero__subtitle {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.look-hero__title img, .look-hero__subtitle img {
  width: 100%;
  height: auto;
  display: block;
}
.look-hero__title {
  width: 38.359375vw;
  max-width: 491px;
  left: calc(50% - 246px);
  top: 20px;
  transition-delay: 0.2s;
}
.look-hero__subtitle--left {
  width: 36.71875vw;
  max-width: 470px;
  left: 20px;
  top: 50%;
  bottom: auto;
  transform: translate3d(0, -50%, 0);
  transition-delay: 0.36s;
}
.look-hero__subtitle--right {
  width: 15.46875vw;
  max-width: 198px;
  right: 20px;
  bottom: 20px;
  transition-delay: 0.52s;
}
.look-hero.is-show .look-hero__title,
.look-hero.is-show .look-hero__subtitle--right {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.look-hero.is-show .look-hero__subtitle--left {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.look-lead {
  width: 100%;
  padding: 48px;
  background-color: #D6DAD8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 545px;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.look-lead__text {
  min-height: 818px;
  padding: 84px 2px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.look-lead__text p {
  color: #551125;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  white-space: nowrap;
}
.look-lead__text p:last-child {
  margin-top: 0.6em;
}
.look-lead__photo {
  width: 545px;
  height: 818px;
}

.look-month {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.look-month__title {
  width: 42.578125vw;
  max-width: 545px;
  padding: 56px 0 0 30px;
  position: relative;
  z-index: 2;
}
.look-month__title img {
  width: 100%;
  height: auto;
  display: block;
}

.look-month--sep {
  background-color: #D6DAD8;
  padding-bottom: 125px;
}

.look-month--oct {
  background-color: #1D2339;
  padding-bottom: 100px;
}
.look-month--oct .look-month__title {
  width: 35.78125vw;
  max-width: 458px;
}

.look-scene {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.look-scene.is-reveal-ready {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.look-scene.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.look-num {
  height: 60px;
}
.look-num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  display: block;
}

.look-num--vertical {
  height: auto;
}
.look-num--vertical img {
  height: auto;
}

.look-credit {
  color: #551125;
  text-align: left;
}
.look-credit > div {
  color: inherit;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.look-credit > div > div {
  display: inline;
}
.look-credit > div a {
  color: inherit;
  text-decoration: none;
}
.look-credit .item-d-none {
  display: none !important;
}

.look-month--oct .look-credit {
  color: #D6DAD8;
}

.brand-card {
  position: relative;
}
.brand-card__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-card__box {
  min-height: 150px;
  padding: 22px 10px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}
.brand-card__box p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-card--light .brand-card__box {
  background-color: #D6DAD8;
  border: 1px solid #551125;
  box-shadow: 4px 4px 0 0 #551125;
}
.brand-card--light .brand-card__box p {
  color: #551125;
}

.brand-card--dark .brand-card__box {
  background-color: #551125;
  border: 1px solid #FFF;
  box-shadow: 4px 4px 0 0 #FFF;
}
.brand-card--dark .brand-card__box p {
  color: #FFF;
}

.look-scene--sep-01,
.look-scene--oct-01 {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 50% minmax(0, 1fr);
  align-items: start;
}
.look-scene--sep-01 .look-scene__photo--main,
.look-scene--oct-01 .look-scene__photo--main {
  height: 75vw;
  max-height: 960px;
}
.look-scene--sep-01 .look-scene__group,
.look-scene--oct-01 .look-scene__group {
  min-height: 753px;
  padding: 60px 0 0 32px;
  position: relative;
}
.look-scene--sep-01 .look-scene__photo--sub,
.look-scene--oct-01 .look-scene__photo--sub {
  width: 402px;
  height: 603px;
}
.look-scene--sep-01 .look-scene__caption,
.look-scene--oct-01 .look-scene__caption {
  width: 345px;
  margin-top: 16px;
}
.look-scene--sep-01 .look-num,
.look-scene--oct-01 .look-num {
  width: 345px;
}
.look-scene--sep-01 .look-credit,
.look-scene--oct-01 .look-credit {
  margin-top: 16px;
}
.look-scene--sep-01 .look-scene__photo--detail,
.look-scene--oct-01 .look-scene__photo--detail {
  width: 224px;
  height: 336px;
  position: absolute;
  right: 22px;
  top: 431px;
}

.look-scene--sep-brand01,
.look-scene--oct-brand01 {
  margin-top: 99px;
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: end;
  gap: 32px;
  padding: 0 32px;
}
.look-scene--sep-brand01 .look-scene__photo--main,
.look-scene--oct-brand01 .look-scene__photo--main {
  width: 480px;
  height: 721px;
  justify-self: center;
}
.look-scene--sep-brand01 .brand-card,
.look-scene--oct-brand01 .brand-card {
  display: grid;
  grid-template-columns: 507px minmax(0, 666px);
  gap: 32px;
  align-items: center;
}
.look-scene--sep-brand01 .brand-card__logo,
.look-scene--oct-brand01 .brand-card__logo {
  width: 507px;
}
.look-scene--sep-brand01 .brand-card__box,
.look-scene--oct-brand01 .brand-card__box {
  width: 666px;
}

.look-scene--sep-pair01,
.look-scene--oct-pair01 {
  width: 794px;
  margin-top: 128px;
  display: grid;
  grid-template-columns: 348px 326px;
  justify-content: space-between;
  align-items: end;
}
.look-scene--sep-pair01 .look-scene__photo--a,
.look-scene--oct-pair01 .look-scene__photo--a {
  width: 348px;
  height: 522px;
}
.look-scene--sep-pair01 .look-scene__photo--b,
.look-scene--oct-pair01 .look-scene__photo--b {
  width: 326px;
  height: 489px;
  margin-bottom: 181px;
}

.look-scene--sep-02,
.look-scene--oct-02 {
  width: 640px;
  margin-top: 120px;
  padding-right: 110px;
}
.look-scene--sep-02 .look-num,
.look-scene--oct-02 .look-num {
  width: 310px;
  position: absolute;
  right: 0;
  top: 242px;
  transform-origin: center;
}
.look-scene--sep-02 .look-scene__photo--main,
.look-scene--oct-02 .look-scene__photo--main {
  width: 530px;
  aspect-ratio: 200/300;
}
.look-scene--sep-02 .look-credit,
.look-scene--oct-02 .look-credit {
  width: 530px;
  margin-top: 12px;
}

.look-scene--oct-02 .look-num {
  transform: none;
}
.look-scene--oct-02 .look-num img {
  height: auto;
}

.look-scene--sep-brand02,
.look-scene--oct-brand02 {
  margin-top: 112px;
}
.look-scene--sep-brand02 .look-scene__photo--a,
.look-scene--sep-brand02 .look-scene__photo--b,
.look-scene--oct-brand02 .look-scene__photo--a,
.look-scene--oct-brand02 .look-scene__photo--b {
  width: 500px;
  height: 750px;
  display: inline-block;
  vertical-align: top;
}
.look-scene--sep-brand02 .look-scene__photo--b,
.look-scene--oct-brand02 .look-scene__photo--b {
  margin-left: 8px;
}
.look-scene--sep-brand02 .look-num,
.look-scene--oct-brand02 .look-num {
  width: 500px;
  margin-top: 16px;
}
.look-scene--sep-brand02 .look-credit,
.look-scene--oct-brand02 .look-credit {
  width: 323px;
  margin: -60px 0 0 508px;
}
.look-scene--sep-brand02 .brand-card,
.look-scene--oct-brand02 .brand-card {
  margin-top: 91px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 507px 666px;
  gap: 32px;
  align-items: center;
}
.look-scene--sep-brand02 .brand-card__logo,
.look-scene--oct-brand02 .brand-card__logo {
  width: 507px;
}
.look-scene--sep-brand02 .brand-card__box,
.look-scene--oct-brand02 .brand-card__box {
  width: 666px;
}
.look-scene--oct-brand02 .brand-card {
  margin-top: 32px;
}

.brand-card--kuro .brand-card__logo {
  width: 380px;
}

.look-scene--sep-solo01 {
  margin-top: 131px;
}
.look-scene--sep-solo01 .look-scene__photo--main {
  width: 570px;
  height: 855px;
  margin: 0 auto;
}

.look-scene--sep-03 {
  margin-top: 128px;
  display: grid;
  grid-template-columns: 416px 416px 416px;
  gap: 16px;
  align-items: center;
}
.look-scene--sep-03 .look-num {
  width: 416px;
  grid-column: 1;
}
.look-scene--sep-03 .look-credit {
  width: 416px;
  grid-column: 1;
  margin-top: -216px;
  padding: 0 24px;
}
.look-scene--sep-03 .look-scene__photo--main,
.look-scene--sep-03 .look-scene__photo--a,
.look-scene--sep-03 .look-scene__photo--b {
  width: 416px;
  height: 624px;
}
.look-scene--sep-03 .look-scene__photo--main {
  grid-column: 2;
}
.look-scene--sep-03 .look-scene__photo--a {
  grid-column: 3;
}
.look-scene--sep-03 .look-scene__photo--b {
  display: none;
}

.look-scene--sep-04 {
  margin-top: 130px;
}
.look-scene--sep-04 .look-scene__photo--main {
  width: 100vw;
  height: auto;
  max-height: none;
  margin-left: calc(50% - 50vw);
}
.look-scene--sep-04 .look-scene__photo--main img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.look-scene--sep-04 .look-num {
  width: 490px;
  margin: 16px 0 0 16px;
}
.look-scene--sep-04 .look-credit {
  width: 323px;
  margin: -74px 0 0 auto;
  padding-right: 16px;
}

.look-scene--sep-brand03 {
  margin-top: 87px;
  display: grid;
  grid-template-columns: 642px 640px;
  align-items: center;
  padding-left: 72px;
}
.look-scene--sep-brand03 .look-scene__photo--main {
  width: 570px;
  height: 855px;
}
.look-scene--sep-brand03 .brand-card {
  width: 640px;
  padding: 0 41px;
}
.look-scene--sep-brand03 .brand-card__logo {
  width: 463px;
  margin: 0 auto 64px;
}
.look-scene--sep-brand03 .brand-card__box {
  width: 557px;
}

.look-scene--sep-05 {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 416px 416px 416px;
  gap: 16px;
  align-items: center;
}
.look-scene--sep-05 .look-scene__caption {
  width: 416px;
  padding: 0 24px;
  grid-column: 1;
  align-self: center;
}
.look-scene--sep-05 .look-num {
  width: 368px;
}
.look-scene--sep-05 .look-credit {
  width: 323px;
  margin-top: 16px;
}
.look-scene--sep-05 .look-scene__photo--a,
.look-scene--sep-05 .look-scene__photo--b {
  width: 416px;
  height: 624px;
}
.look-scene--sep-05 .look-scene__photo--a {
  grid-column: 2;
}
.look-scene--sep-05 .look-scene__photo--b {
  grid-column: 3;
}

.look-scene--sep-brand04 {
  margin-top: 131px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 56px;
}
.look-scene--sep-brand04 .look-scene__photo--main {
  width: 570px;
  height: 855px;
}
.look-scene--sep-brand04 .brand-card {
  display: grid;
  grid-template-columns: 507px 666px;
  gap: 32px;
  align-items: center;
  padding: 0 32px;
}
.look-scene--sep-brand04 .brand-card__logo {
  width: 507px;
}
.look-scene--sep-brand04 .brand-card__box {
  width: 666px;
}

.brand-card--russel .brand-card__logo {
  width: 430px;
}

.brand-card--fruit .brand-card__logo {
  width: 430px;
}

.look-scene--sep-06 {
  display: none;
  margin-top: 104px;
  grid-template-columns: 490px 280px;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.look-scene--sep-06 .look-scene__photo--a {
  width: 490px;
  height: 735px;
}
.look-scene--sep-06 .look-scene__photo--b {
  width: 280px;
  height: 420px;
  align-self: end;
}
.look-scene--sep-06 .look-num {
  width: 490px;
  margin-top: 16px;
}
.look-scene--sep-06 .look-credit {
  width: 490px;
  grid-column: 1;
}

@media screen and (min-width: 769px) {
  .look-credit[data-credit=sep-06] > div {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}
.look-scene--sep-07 {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 460px 460px 280px;
  align-items: start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.look-scene--sep-07 .look-scene__photo--a {
  width: 460px;
  height: 690px;
  margin-top: 103px;
}
.look-scene--sep-07 .look-scene__right {
  width: 463px;
}
.look-scene--sep-07 .look-scene__photo--b {
  width: 460px;
  height: 690px;
}
.look-scene--sep-07 .look-num {
  width: 460px;
  margin-top: 16px;
}
.look-scene--sep-07 .look-credit {
  width: 460px;
  margin-top: 16px;
}
.look-scene--sep-07 .look-scene__photo--c {
  width: 280px;
  height: 420px;
  margin-top: 460px;
}

.look-movie {
  width: 100vw;
  height: 59.2592592593vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  background-color: #FFF;
}
.look-movie__item {
  width: 33.3333333333%;
  height: 100%;
  background-color: #FFF;
  overflow: hidden;
}
.look-movie__item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.look-movie__item.is-reveal-ready {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.look-movie__item.is-visible {
  opacity: 1;
}

.look-scene--oct-brand01 {
  margin-top: 100px;
  grid-template-columns: 480px 1fr;
}
.look-scene--oct-brand01 .look-scene__photo--main {
  width: 480px;
  margin-left: 361px;
  grid-column: 1/-1;
}
.look-scene--oct-brand01 .brand-card {
  grid-column: 1/-1;
  margin-top: 87px;
}

.look-scene--oct-03 {
  margin-top: 120px;
}
.look-scene--oct-03 .look-scene__photo--main {
  width: 100vw;
  height: 66.484375vw;
  max-height: 851px;
  margin-left: calc(50% - 50vw);
}
.look-scene--oct-03 .look-num {
  width: 490px;
  margin: 16px 0 0 24px;
}
.look-scene--oct-03 .look-credit {
  width: 323px;
  margin: -74px 24px 0 auto;
}

.look-scene--oct-05 .look-num {
  width: 490px;
  margin: 16px 0 0 24px;
}
.look-scene--oct-05 .look-credit {
  width: 323px;
  margin: -74px 24px 0 auto;
}

.look-scene--oct-brand02 .brand-card__box {
  background-color: #551125;
}

.look-scene--oct-brand03 {
  margin-top: 132px;
  display: grid;
  grid-template-columns: 460px 670px;
  -moz-column-gap: 38px;
       column-gap: 38px;
  justify-content: center;
}
.look-scene--oct-brand03 .look-scene__photo--a {
  width: 460px;
  height: 690px;
}
.look-scene--oct-brand03 .look-scene__right {
  width: 670px;
  margin-top: 258px;
}
.look-scene--oct-brand03 .look-scene__photo--b {
  width: 670px;
  height: 500px;
}
.look-scene--oct-brand03 .brand-card {
  width: 660px;
  margin-top: 32px;
}
.look-scene--oct-brand03 .brand-card__logo {
  width: 660px;
  margin-bottom: 32px;
}
.look-scene--oct-brand03 .brand-card__box {
  width: 660px;
}

.look-scene--oct-04 {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 460px 490px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  justify-content: center;
  align-items: start;
}
.look-scene--oct-04 .look-scene__photo--main {
  width: 460px;
  height: 690px;
}
.look-scene--oct-04 .look-num {
  width: 490px;
}
.look-scene--oct-04 .look-credit {
  width: 490px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .look-lead {
    height: 914px;
    padding: 48px 55.5px;
    grid-template-columns: 624px 545px;
  }
  .look-lead__text {
    min-height: 818px;
    padding: 85px 2px;
  }
  .look-month {
    overflow: visible;
  }
  .look-month__title {
    width: 545px;
    padding: 0;
    position: absolute;
    left: calc(50% - 640px + 30px);
    top: 56px;
  }
  .look-month--sep {
    --sep-wide-photo-offset: max(0px, calc(66.7668vw - 854.855px));
    height: calc(12831px + var(--sep-wide-photo-offset));
    padding-bottom: 0;
  }
  .look-month--oct {
    height: 8297px;
    padding-bottom: 0;
  }
  .look-month--oct .look-month__title {
    width: 458px;
  }
  .look-scene {
    margin: 0;
    position: absolute;
  }
  .look-scene--sep-01 {
    width: 1280px;
    height: 960px;
    left: calc(50% - 640px);
    top: 186px;
  }
  .look-scene--sep-brand01 {
    width: 1280px;
    height: 1372px;
    left: calc(50% - 640px);
    top: 1235px;
    display: block;
    padding: 0;
  }
  .look-scene--sep-brand01 .look-scene__photo--main {
    width: 570px;
    height: 855px;
    position: absolute;
    left: 366px;
    top: 517px;
  }
  .look-scene--sep-brand01 .brand-card {
    width: 666px;
    display: block;
    position: absolute;
    left: 318px;
    top: 0;
  }
  .look-scene--sep-brand01 .brand-card__logo {
    width: 463px;
    margin: 0 auto 62px;
  }
  .look-scene--sep-brand01 .brand-card__box {
    width: 666px;
  }
  .look-scene--sep-pair01 {
    width: 781px;
    height: 599px;
    left: calc(50% - 640px + 264px);
    top: 2681px;
    grid-template-columns: none;
    display: block;
  }
  .look-scene--sep-pair01 .look-scene__photo--a,
  .look-scene--sep-pair01 .look-scene__photo--b {
    position: absolute;
    width: 348px;
    height: 522px;
    margin: 0;
  }
  .look-scene--sep-pair01 .look-scene__photo--a {
    left: 0;
    top: 0;
  }
  .look-scene--sep-pair01 .look-scene__photo--b {
    left: 430px;
    top: 77px;
  }
  .look-scene--sep-02 {
    width: 490px;
    height: 814px;
    left: calc(50% - 640px + 397px);
    top: 3354px;
    padding: 0;
  }
  .look-scene--sep-02 .look-scene__photo--main {
    width: 490px;
    height: 735px;
  }
  .look-scene--sep-02 .look-num {
    width: 60px;
    right: auto;
    left: -90px;
    top: 204px;
    transform: none;
  }
  .look-scene--sep-02 .look-credit {
    width: 323px;
    margin: 16px 0 0;
  }
  .look-scene--sep-brand02 {
    width: 1280px;
    height: 1082px;
    left: calc(50% - 640px);
    top: 4301px;
    margin: 0;
    text-align: center;
  }
  .look-scene--sep-brand02 .look-scene__photo--a,
  .look-scene--sep-brand02 .look-scene__photo--b {
    width: 500px;
    height: 750px;
    margin: 0;
  }
  .look-scene--sep-brand02 .look-num {
    width: 500px;
    position: absolute;
    left: 140px;
    top: 766px;
    margin: 0;
  }
  .look-scene--sep-brand02 .look-credit {
    width: 323px;
    position: absolute;
    left: 648px;
    top: 766px;
    margin: 0;
  }
  .look-scene--sep-brand02 .brand-card {
    width: 1280px;
    margin: 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 507px 666px;
    gap: 32px;
    position: absolute;
    left: 0;
    top: 932px;
  }
  .look-scene--sep-solo01 {
    width: 570px;
    height: 855px;
    left: calc(50% - 640px + 361px);
    top: 5514px;
    margin: 0;
  }
  .look-scene--sep-solo01 .look-scene__photo--main {
    width: 570px;
    height: 855px;
  }
  .look-scene--sep-03 {
    width: 794px;
    height: 1246px;
    left: calc(50% - 640px + 237px);
    top: 6427px;
    display: block;
  }
  .look-scene--sep-03 .look-scene__photo--main {
    width: 490px;
    height: 735px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .look-scene--sep-03 .look-num {
    width: 490px;
    position: absolute;
    left: 0;
    top: 751px;
    padding: 0;
  }
  .look-scene--sep-03 .look-credit {
    width: 323px;
    position: absolute;
    left: 0;
    top: 830px;
    margin: 0;
    padding: 0;
  }
  .look-scene--sep-03 .look-scene__photo--a,
  .look-scene--sep-03 .look-scene__photo--b {
    width: 280px;
    height: 420px;
    position: absolute;
    left: 514px;
    display: block;
  }
  .look-scene--sep-03 .look-scene__photo--a {
    top: 383px;
  }
  .look-scene--sep-03 .look-scene__photo--b {
    top: 826px;
  }
  .look-scene--sep-04 {
    width: 1280px;
    height: calc(1011px + var(--sep-wide-photo-offset));
    left: calc(50% - 640px);
    top: 7742px;
    margin: 0;
  }
  .look-scene--sep-04 .look-scene__photo--main {
    width: 100vw;
    height: auto;
    max-height: none;
    margin-left: calc(640px - 50vw);
  }
  .look-scene--sep-04 .look-scene__photo--main img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .look-scene--sep-04 .look-num {
    width: 490px;
    position: absolute;
    left: 16px;
    top: calc(66.7668vw + 12px);
    margin: 0;
  }
  .look-scene--sep-04 .look-credit {
    width: 323px;
    position: absolute;
    right: 16px;
    top: calc(66.7668vw + 12px);
    margin: 0;
    padding: 0;
  }
  .look-scene--sep-brand03 {
    width: 1280px;
    height: 855px;
    left: calc(50% - 640px);
    top: calc(8840px + var(--sep-wide-photo-offset));
    margin: 0;
    padding: 0;
    grid-template-columns: 642px 640px;
  }
  .look-scene--sep-brand03 .look-scene__photo--main {
    width: 570px;
    height: 855px;
    margin-left: 72px;
  }
  .look-scene--sep-brand03 .brand-card {
    width: 640px;
    padding: 0 41px;
    align-self: center;
  }
  .look-scene--sep-05 {
    width: 1280px;
    height: 624px;
    left: calc(50% - 640px);
    top: calc(9796px + var(--sep-wide-photo-offset));
    margin: 0;
    grid-template-columns: 416px 416px 416px;
  }
  .look-scene--sep-05 .look-scene__caption {
    width: 416px;
    padding: 0 24px;
    grid-column: 1;
    align-self: center;
  }
  .look-scene--sep-05 .look-num {
    width: 368px;
    margin: 0;
  }
  .look-scene--sep-05 .look-credit {
    width: 323px;
    margin: 16px 0 0;
  }
  .look-scene--sep-brand04 {
    width: 1280px;
    height: 1061px;
    left: calc(50% - 640px);
    top: calc(10551px + var(--sep-wide-photo-offset));
    margin: 0;
  }
  .look-scene--sep-brand04 .look-scene__photo--main {
    width: 570px;
    height: 855px;
  }
  .look-scene--sep-06 {
    display: none;
  }
  .look-scene--sep-07 {
    width: 1279px;
    height: 940px;
    left: calc(50% - 640px);
    top: calc(11766px + var(--sep-wide-photo-offset));
    margin: 0;
    display: block;
  }
  .look-scene--sep-07 .look-scene__photo--a {
    width: 460px;
    height: 690px;
    position: absolute;
    left: 0;
    top: 103px;
    margin: 0;
  }
  .look-scene--sep-07 .look-scene__right {
    width: 463px;
    position: absolute;
    left: 500px;
    top: 0;
  }
  .look-scene--sep-07 .look-scene__photo--b {
    width: 460px;
    height: 690px;
  }
  .look-scene--sep-07 .look-num {
    width: 460px;
    margin-top: 16px;
  }
  .look-scene--sep-07 .look-credit {
    width: 323px;
    margin-top: 16px;
  }
  .look-scene--sep-07 .look-scene__photo--c {
    width: 280px;
    height: 420px;
    position: absolute;
    left: 999px;
    top: 460px;
    margin: 0;
  }
  .look-scene--oct-01 {
    width: 1233px;
    height: 799px;
    left: calc(50% - 640px + 24px);
    top: 186px;
    display: block;
  }
  .look-scene--oct-01 .look-scene__photo--main {
    width: 532.667px;
    height: 799px;
  }
  .look-scene--oct-01 .look-scene__group {
    width: 649px;
    min-height: 0;
    padding: 0;
    position: absolute;
    left: 584px;
    top: 82px;
  }
  .look-scene--oct-01 .look-scene__photo--sub {
    width: 280px;
    height: 420px;
  }
  .look-scene--oct-01 .look-scene__caption {
    width: 345px;
    position: absolute;
    left: 304px;
    top: 0;
    margin: 0;
  }
  .look-scene--oct-01 .look-scene__photo--detail {
    width: 230px;
    height: 345px;
    right: auto;
    left: 341px;
    top: 271px;
  }
  .look-scene--oct-brand01 {
    width: 1280px;
    height: 958px;
    left: calc(50% - 640px);
    top: 1085px;
    display: block;
    padding: 0;
  }
  .look-scene--oct-brand01 .look-scene__photo--main {
    width: 480px;
    height: 721px;
    margin: 0;
    position: absolute;
    left: 393px;
    top: 0;
  }
  .look-scene--oct-brand01 .brand-card {
    width: 1280px;
    display: grid;
    grid-template-columns: 507px 666px;
    gap: 32px;
    position: absolute;
    left: 0;
    top: 808px;
    margin: 0;
    padding: 0 32px;
  }
  .look-scene--oct-pair01 {
    width: 785px;
    height: 670px;
    left: calc(50% - 640px + 247px);
    top: 3171px;
    display: block;
  }
  .look-scene--oct-pair01 .look-scene__photo--a {
    width: 348px;
    height: 522px;
    position: absolute;
    left: 0;
    top: 148px;
  }
  .look-scene--oct-pair01 .look-scene__photo--b {
    width: 326px;
    height: 489px;
    position: absolute;
    left: 459px;
    top: 0;
    margin: 0;
  }
  .look-scene--oct-02 {
    width: 640px;
    height: 868px;
    left: calc(50% - 640px + 374px);
    top: 3961px;
    padding: 0;
  }
  .look-scene--oct-02 .look-scene__photo--main {
    width: 530px;
    height: 795px;
  }
  .look-scene--oct-02 .look-num {
    width: 60px;
    height: auto;
    right: auto;
    left: 560px;
    top: 275px;
    transform: none;
    z-index: 2;
  }
  .look-scene--oct-02 .look-credit {
    width: 323px;
    margin: 10px 0 0;
  }
  .look-scene--oct-03 {
    width: 1280px;
    height: 1109px;
    left: calc(50% - 640px);
    top: 2169px;
    margin: 0;
  }
  .look-scene--oct-03 .look-scene__photo--main {
    width: 100vw;
    height: 851px;
    max-height: none;
    margin-left: calc(640px - 50vw);
  }
  .look-scene--oct-03 .look-num {
    width: 490px;
    position: absolute;
    left: 16px;
    top: 875px;
    margin: 0;
  }
  .look-scene--oct-03 .look-credit {
    width: 323px;
    position: absolute;
    right: 16px;
    top: 875px;
    margin: 0;
  }
  .look-scene--oct-05 .look-num {
    width: 490px;
    position: absolute;
    left: 16px;
    top: 875px;
    margin: 0;
  }
  .look-scene--oct-05 .look-credit {
    width: 323px;
    position: absolute;
    left: 16px;
    right: auto;
    top: 965px;
    margin: 0;
  }
  .look-scene--oct-brand02 {
    width: 1280px;
    height: 916px;
    left: calc(50% - 640px);
    top: 4997px;
    margin: 0;
    text-align: center;
  }
  .look-scene--oct-brand02 .look-scene__photo--a,
  .look-scene--oct-brand02 .look-scene__photo--b {
    width: 500px;
    height: 750px;
    margin: 0;
  }
  .look-scene--oct-brand02 .brand-card {
    width: 1280px;
    margin: 32px 0 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 507px 666px;
    gap: 32px;
  }
  .look-scene--oct-brand03 {
    width: 1168px;
    height: 1106px;
    left: calc(50% - 640px + 56px);
    top: 6247px;
  }
  .look-scene--oct-04 {
    width: 974px;
    height: 690px;
    left: calc(50% - 640px + 153px);
    top: 7407px;
    grid-template-columns: 460px 490px;
  }
  .look-scene--oct-04 .look-scene__photo--main {
    width: 460px;
    height: 690px;
  }
  .look-scene--oct-04 .look-num {
    width: 490px;
    grid-column: 2;
    grid-row: 1;
  }
  .look-scene--oct-04 .look-credit {
    width: 490px;
    grid-column: 2;
    grid-row: 1;
    margin-top: 90px;
  }
}
.look-staff {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 20px 50px;
  background-color: #551125;
}
.look-staff p {
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}

.city-footer {
  width: 100vw;
  min-height: 288px;
  padding: 80px 20px 48px;
  margin: 0 auto;
  background-color: #551125;
  color: #FFF;
  text-align: center;
  box-sizing: border-box;
}
.city-footer__logo {
  width: 359px;
  height: 26px;
  margin: 0 auto 50px;
  background-image: url(../images/logo_city.svg);
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
.city-footer__nav {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
}
.city-footer__nav a {
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.city-footer__copy {
  color: #FFF;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
  br.brsp {
    display: inline;
  }
  br.brpc {
    display: none;
  }
  html {
    font-size: 62.5%;
    height: -webkit-fill-available;
  }
  body {
    font-size: 1rem;
    overflow-x: hidden;
  }
  #loader .logo {
    width: 68vw;
    height: 5vw;
  }
  .look-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .look-hero__visual {
    display: block;
    height: auto;
  }
  .look-hero__visual img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .look-hero__title {
    width: 71vw;
    left: 12vw;
    top: 5vw;
  }
  .look-hero__subtitle--left {
    width: 73vw;
    left: 3vw;
    bottom: 28vw;
  }
  .look-hero__subtitle--right {
    width: 37vw;
    right: 3vw;
    bottom: 4vw;
  }
  .look-lead {
    padding: 48px 20px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .look-lead__text {
    min-height: 0;
    padding: 0;
    gap: 2.2em;
  }
  .look-lead__text p {
    font-size: 1.2rem;
    line-height: 2;
    white-space: normal;
  }
  .look-lead__photo {
    width: 90vw;
    height: auto;
    aspect-ratio: 545/818;
    margin-top: 42px;
  }
  .look-month__title {
    width: 58vw;
    padding: 48px 0 0 20px;
  }
  .look-month--oct .look-month__title {
    width: 54vw;
  }
  .look-scene {
    width: 100% !important;
    margin: 64px auto 0 !important;
    padding: 0 20px;
    display: block !important;
  }
  .look-scene.is-reveal-ready {
    transform: translate3d(0, 20px, 0);
  }
  .look-scene.is-visible {
    transform: translate3d(0, 0, 0);
  }
  .look-scene--sep-06 {
    display: none !important;
  }
  .look-photo {
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .look-photo img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .look-num,
  .look-credit,
  .look-scene__caption,
  .look-scene__group,
  .look-scene__right,
  .brand-card,
  .brand-card__logo,
  .brand-card__box {
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
  }
  .look-num {
    max-width: 48vw;
    margin-top: 16px;
  }
  .look-num--vertical {
    width: 15vw;
    max-width: 60px;
    height: auto;
    float: left;
    margin: 30vw 4vw 0 0;
    transform: none !important;
  }
  .look-num--vertical img {
    height: auto;
  }
  .look-scene--oct-02 .look-num--vertical {
    width: 15vw;
    max-width: 60px;
    height: auto;
    transform: none !important;
  }
  .look-scene--oct-02 .look-num--vertical img {
    height: auto;
  }
  .look-credit {
    margin-top: 14px;
    text-align: left;
  }
  .look-credit > div {
    font-size: 1.1rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
    white-space: normal;
  }
  .brand-card {
    margin-top: 28px !important;
  }
  .brand-card__logo {
    max-width: 74vw;
    margin-bottom: 24px !important;
  }
  .brand-card__box {
    padding: 16px 14px !important;
  }
  .brand-card__box p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .look-scene--sep-01 .look-scene__group,
  .look-scene--oct-01 .look-scene__group {
    padding-top: 24px !important;
  }
  .look-scene--sep-01 .look-scene__photo--sub,
  .look-scene--oct-01 .look-scene__photo--sub {
    width: 70vw !important;
    margin-left: 0 !important;
  }
  .look-scene--sep-01 .look-scene__photo--detail,
  .look-scene--oct-01 .look-scene__photo--detail {
    width: 38vw !important;
    margin-top: -26vw !important;
    margin-right: 0 !important;
  }
  .look-scene--sep-brand01 .look-scene__photo--main,
  .look-scene--oct-brand01 .look-scene__photo--main,
  .look-scene--sep-brand04 .look-scene__photo--main {
    width: 76vw !important;
  }
  .look-scene--sep-pair01 .look-scene__photo--a,
  .look-scene--oct-pair01 .look-scene__photo--a {
    width: 56vw !important;
    margin-left: 0 !important;
  }
  .look-scene--sep-pair01 .look-scene__photo--b,
  .look-scene--oct-pair01 .look-scene__photo--b {
    width: 52vw !important;
    margin-top: -12vw !important;
    margin-right: 0 !important;
  }
  .look-scene--sep-02 .look-scene__photo--main,
  .look-scene--oct-02 .look-scene__photo--main {
    width: 76vw !important;
    margin-right: 0 !important;
  }
  .look-scene--sep-brand02,
  .look-scene--oct-brand02 {
    font-size: 0;
  }
  .look-scene--sep-brand02 .look-scene__photo--a,
  .look-scene--sep-brand02 .look-scene__photo--b,
  .look-scene--oct-brand02 .look-scene__photo--a,
  .look-scene--oct-brand02 .look-scene__photo--b {
    width: 50% !important;
    display: inline-block;
    vertical-align: top;
    margin: 0 !important;
  }
  .look-scene--sep-brand02 .brand-card,
  .look-scene--oct-brand02 .brand-card {
    font-size: 1rem;
  }
  .look-scene--sep-03 .look-scene__photo--main,
  .look-scene--sep-03 .look-scene__photo--a,
  .look-scene--sep-03 .look-scene__photo--b,
  .look-scene--sep-05 .look-scene__photo--main,
  .look-scene--sep-05 .look-scene__photo--a,
  .look-scene--sep-05 .look-scene__photo--b {
    width: 50% !important;
    display: inline-block !important;
    vertical-align: top;
    margin: 24px 0 0 !important;
  }
  .look-scene--sep-04,
  .look-scene--oct-03 {
    padding-left: 0;
    padding-right: 0;
  }
  .look-scene--sep-04 .look-scene__photo--main,
  .look-scene--oct-03 .look-scene__photo--main {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
  }
  .look-scene--sep-04 .look-num,
  .look-scene--sep-04 .look-credit,
  .look-scene--oct-03 .look-num,
  .look-scene--oct-03 .look-credit {
    width: calc(100% - 40px) !important;
  }
  .look-scene--sep-brand03 .brand-card__logo {
    max-width: 58vw;
  }
  .look-scene--sep-06 .look-scene__photo--a {
    width: 70vw !important;
    margin-left: 0 !important;
  }
  .look-scene--sep-06 .look-scene__photo--b {
    width: 42vw !important;
    margin: -18vw 4vw 0 auto !important;
  }
  .look-scene--sep-07 .look-scene__photo--a,
  .look-scene--oct-brand03 .look-scene__photo--a {
    width: 62vw !important;
    margin-left: 0 !important;
  }
  .look-scene--sep-07 .look-scene__photo--b,
  .look-scene--oct-brand03 .look-scene__photo--b {
    width: 70vw !important;
    margin-top: 28px !important;
    margin-right: 0 !important;
  }
  .look-scene--sep-07 .look-scene__photo--c,
  .look-scene--oct-brand03 .look-scene__photo--c {
    width: 42vw !important;
    margin-top: 24px !important;
    margin-left: 4vw !important;
  }
  .look-scene--oct-04 .look-scene__photo--main {
    width: 62vw !important;
    margin-left: 0 !important;
  }
  .look-movie {
    width: 100%;
    height: auto;
    margin-left: 0;
    display: block;
  }
  .look-movie__item {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
  }
  .look-movie__item:nth-child(n+2) {
    display: none;
  }
  .look-staff {
    padding: 70px 20px 42px;
  }
  .look-staff p {
    font-size: 1.2rem;
  }
  .city-footer {
    min-height: 0;
    padding: 58px 20px 36px;
  }
  .city-footer__logo {
    width: 68vw;
    height: 5vw;
    margin-bottom: 36px;
  }
  .city-footer__nav {
    flex-wrap: wrap;
    gap: 16px 18px;
    margin-bottom: 34px;
  }
  .city-footer__nav a {
    font-size: 1.2rem;
  }
  .city-footer__copy {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .look-hero {
    background-color: #551125;
  }
  .look-hero__visual picture {
    display: block;
  }
  .look-hero__title {
    display: block;
    width: 78vw;
    left: 11vw;
    top: 4.4vw;
  }
  .look-hero__subtitle--left {
    display: block;
    width: 60vw;
    left: 2.5vw;
    top: 50%;
    bottom: auto;
    transform: translate3d(0, -50%, 0);
  }
  .look-hero__subtitle--right {
    display: block;
    width: 28vw;
    right: 4vw;
    bottom: 4vw;
  }
  .look-lead {
    padding: 32px 16px;
    gap: 40px;
  }
  .look-lead__text {
    width: 100%;
    gap: 10px;
    order: 1;
    overflow: hidden;
  }
  .look-lead__text p {
    color: #551125;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: left;
    word-break: break-word;
  }
  .look-lead__text p:last-child {
    margin-top: 30px;
  }
  .look-lead__photo {
    width: 100%;
    margin-top: 0;
    order: 2;
  }
  .look-month {
    padding-bottom: 16vw;
  }
  .look-month__title {
    padding: 3.2vw 0 0 2.8vw;
  }
  .look-month--sep {
    padding-bottom: 19vw;
  }
  .look-month--oct {
    padding-bottom: 0;
  }
  .look-month--oct .look-month__title {
    padding-top: 3.4vw;
  }
  .look-scene {
    margin: 12vw auto 0 !important;
    padding: 0 5.6vw;
  }
  .look-num {
    max-width: 46vw;
    margin-top: 3.4vw;
  }
  .look-num--vertical {
    margin: 29vw 3.4vw 0 0;
  }
  .look-credit {
    margin-top: 2.8vw;
  }
  .look-credit > div {
    font-size: 1.2rem;
  }
  .brand-card {
    margin-top: 7.2vw !important;
  }
  .brand-card__logo {
    margin-bottom: 6.4vw !important;
  }
  .brand-card__box {
    min-height: 0 !important;
    padding: 3.8vw 3vw !important;
  }
  .brand-card__box p {
    font-size: 1.2rem;
    line-height: 1.75;
  }
  .look-scene--sep-01,
  .look-scene--oct-01 {
    margin-top: 6vw !important;
  }
  .look-scene--sep-01 .look-scene__photo--main,
  .look-scene--oct-01 .look-scene__photo--main {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
  }
  .look-scene--sep-01 .look-scene__group,
  .look-scene--oct-01 .look-scene__group {
    padding-top: 0 !important;
  }
  .look-scene--sep-01 .look-scene__photo--sub,
  .look-scene--oct-01 .look-scene__photo--sub {
    width: 41vw !important;
  }
  .look-scene--sep-01 .look-scene__photo--detail,
  .look-scene--oct-01 .look-scene__photo--detail {
    width: 30vw !important;
    margin-top: -18vw !important;
  }
  .look-scene--sep-01 {
    margin-top: 0 !important;
  }
  .look-scene--sep-01 .look-scene__photo--main {
    display: none;
  }
  .look-scene--sep-01 .look-scene__caption {
    width: 47vw !important;
    margin: -5vw 0 0 !important;
    z-index: 2;
  }
  .look-scene--sep-01 .look-scene__photo--sub {
    width: 50vw !important;
    margin-left: 6vw !important;
  }
  .look-scene--sep-01 .look-scene__photo--detail {
    width: 27vw !important;
    margin: -31vw 4vw 0 auto !important;
  }
  .look-scene--oct-01 .look-scene__group {
    margin-top: 4vw !important;
    display: grid !important;
    grid-template-columns: 45vw 1fr;
    gap: 3vw;
  }
  .look-scene--oct-01 .look-scene__caption {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .look-scene--oct-01 .look-scene__photo--sub {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 43vw !important;
  }
  .look-scene--oct-01 .look-scene__photo--detail {
    grid-column: 2;
    grid-row: 2;
    width: 32vw !important;
    margin: 5vw 0 0 auto !important;
  }
  .look-scene--sep-brand01 {
    margin-top: 4vw !important;
  }
  .look-scene--sep-brand01 .look-scene__photo--main {
    width: 58vw !important;
  }
  .look-scene--oct-brand01 {
    margin-top: 15vw !important;
  }
  .look-scene--oct-brand01 .look-scene__photo--main {
    width: 64vw !important;
  }
  .look-scene--sep-brand04 .look-scene__photo--main {
    width: 44vw !important;
  }
  .look-scene--sep-02 .look-scene__photo--main {
    width: 74vw !important;
  }
  .look-scene--sep-02 .look-num--vertical {
    margin-top: 34vw;
  }
  .look-scene--oct-02 .look-scene__photo--main {
    width: 58vw !important;
  }
  .look-scene--oct-02 .look-num--vertical {
    margin-top: 39vw;
    margin-left: auto !important;
    margin-right: 2vw !important;
    float: right;
  }
  .look-scene--sep-brand02 .look-num,
  .look-scene--sep-brand02 .look-credit,
  .look-scene--oct-brand02 .look-num,
  .look-scene--oct-brand02 .look-credit {
    font-size: 1rem;
  }
  .look-scene--sep-03 .look-scene__photo--main {
    width: 64vw !important;
    margin-left: 0 !important;
  }
  .look-scene--sep-03 .look-scene__photo--a,
  .look-scene--sep-03 .look-scene__photo--b {
    margin-left: 50vw !important;
  }
  .look-scene--sep-05 .look-scene__caption {
    width: 50vw !important;
    display: inline-block;
    vertical-align: top;
    margin-top: 10vw !important;
  }
  .look-scene--sep-05 .look-scene__photo--a,
  .look-scene--sep-05 .look-scene__photo--b {
    width: 25vw !important;
    margin-top: 0 !important;
  }
  .look-scene--oct-05 .look-scene__photo--main {
    height: auto !important;
  }
  .look-scene--oct-05 .look-num,
  .look-scene--oct-05 .look-credit {
    width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .look-scene--oct-05 .look-num {
    margin-top: 3.4vw !important;
  }
  .look-scene--oct-05 .look-credit {
    margin-top: 2.8vw !important;
  }
  .look-scene--sep-07 .look-scene__photo--a {
    width: 55vw !important;
  }
  .look-scene--sep-07 .look-scene__right {
    margin-top: -10vw !important;
  }
  .look-scene--sep-07 .look-scene__photo--b {
    width: 55vw !important;
  }
  .look-scene--sep-07 .look-scene__photo--c {
    width: 27vw !important;
    margin: -33vw 5vw 0 auto !important;
  }
  .look-scene--oct-brand03 .look-scene__photo--a {
    width: 48vw !important;
  }
  .look-scene--oct-brand03 .look-scene__right {
    margin-top: 7vw !important;
  }
  .look-scene--oct-brand03 .look-scene__photo--b {
    width: 80vw !important;
  }
  .look-scene--oct-04 {
    display: grid !important;
    grid-template-columns: 50vw 1fr;
    column-gap: 4vw;
    align-items: start;
  }
  .look-scene--oct-04 .look-scene__photo--main {
    width: 50vw !important;
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .look-scene--oct-04 .look-num,
  .look-scene--oct-04 .look-credit {
    grid-column: 2;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .look-month--sep {
    --sp: calc(100vw / 390);
    height: calc(9180 * var(--sp));
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
  }
  .look-month--sep .look-month__title {
    width: calc(312 * var(--sp));
    padding: 0;
    position: absolute;
    left: calc(16 * var(--sp));
    top: calc(32 * var(--sp));
    z-index: 3;
  }
  .look-month--sep .look-scene {
    width: calc(390 * var(--sp)) !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    left: 0 !important;
    display: block !important;
  }
  .look-month--sep .look-photo {
    margin: 0 !important;
    position: absolute !important;
  }
  .look-month--sep .look-num,
  .look-month--sep .look-credit,
  .look-month--sep .look-scene__caption,
  .look-month--sep .look-scene__group,
  .look-month--sep .look-scene__right,
  .look-month--sep .brand-card,
  .look-month--sep .brand-card__logo,
  .look-month--sep .brand-card__box {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .look-month--sep .look-credit > div,
  .look-month--sep .brand-card__box p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .look-month--sep .brand-card__box {
    width: calc(350 * var(--sp)) !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    border-width: 1px;
  }
  .look-month--sep .look-scene--sep-01 {
    top: calc(104 * var(--sp)) !important;
    height: calc(1250 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__photo--main {
    display: block;
    width: calc(390 * var(--sp)) !important;
    height: calc(585 * var(--sp)) !important;
    left: calc(2 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__group {
    width: calc(390 * var(--sp)) !important;
    position: absolute !important;
    left: calc(2 * var(--sp)) !important;
    top: calc(585 * var(--sp)) !important;
    padding: calc(36.5 * var(--sp)) 0 0 !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__photo--sub {
    width: calc(245 * var(--sp)) !important;
    height: calc(367.5 * var(--sp)) !important;
    left: 0 !important;
    top: calc(36.5 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__photo--detail {
    width: calc(193 * var(--sp)) !important;
    height: calc(290 * var(--sp)) !important;
    left: calc(187 * var(--sp)) !important;
    top: calc(260 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__caption {
    width: calc(210 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(566 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-num {
    width: calc(210 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-credit {
    width: calc(323 * var(--sp)) !important;
    margin-top: calc(17 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand01 {
    top: calc(1380 * var(--sp)) !important;
    height: calc(1008 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand01 .brand-card {
    width: calc(355 * var(--sp)) !important;
    position: absolute !important;
    left: calc(19 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand01 .brand-card__logo {
    width: calc(271 * var(--sp)) !important;
    margin: 0 0 calc(24 * var(--sp)) calc(39 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand01 .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(157 * var(--sp)) !important;
    z-index: 5;
  }
  .look-month--sep .look-scene--sep-brand01 .look-scene__photo--main {
    width: calc(390 * var(--sp)) !important;
    height: calc(585 * var(--sp)) !important;
    left: calc(2 * var(--sp)) !important;
    top: calc(423 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-pair01 {
    top: calc(2412 * var(--sp)) !important;
    height: calc(309 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-pair01 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-pair01 .look-scene__photo--b {
    width: calc(178 * var(--sp)) !important;
    height: calc(267 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-pair01 .look-scene__photo--a {
    left: calc(2.5 * var(--sp)) !important;
    top: calc(1 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-pair01 .look-scene__photo--b {
    left: calc(211 * var(--sp)) !important;
    top: calc(40 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 {
    top: calc(2794 * var(--sp)) !important;
    height: calc(565 * var(--sp)) !important;
    left: calc(71 * var(--sp)) !important;
    width: calc(321 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 .look-scene__photo--main {
    width: calc(321 * var(--sp)) !important;
    height: calc(481.5 * var(--sp)) !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-02 .look-num {
    width: calc(30 * var(--sp)) !important;
    left: calc(-47 * var(--sp)) !important;
    top: calc(139 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(497 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand02 {
    top: calc(3367 * var(--sp)) !important;
    height: calc(750 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-brand02 .look-scene__photo--b {
    width: calc(193.5 * var(--sp)) !important;
    height: calc(290 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .look-scene__photo--a {
    left: calc(2 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand02 .look-scene__photo--b {
    left: calc(196.5 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand02 .look-num {
    width: calc(193 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    position: absolute !important;
    left: calc(2 * var(--sp)) !important;
    top: calc(306 * var(--sp)) !important;
    margin: 0 !important;
    z-index: 3;
  }
  .look-month--sep .look-scene--sep-brand02 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: calc(2 * var(--sp)) !important;
    top: calc(350 * var(--sp)) !important;
    margin: 0 !important;
    z-index: 3;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(22 * var(--sp)) !important;
    top: calc(415 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card__logo {
    width: calc(266 * var(--sp)) !important;
    margin: 0 auto calc(17 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    z-index: 5;
  }
  .look-month--sep .look-scene--sep-solo01 {
    top: calc(4092 * var(--sp)) !important;
    height: calc(525 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-solo01 .look-scene__photo--main {
    width: calc(350 * var(--sp)) !important;
    height: calc(525 * var(--sp)) !important;
    left: calc(22 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-03 {
    top: calc(4649 * var(--sp)) !important;
    height: calc(1006 * var(--sp)) !important;
    left: calc(2 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 .look-scene__photo--main {
    width: calc(350 * var(--sp)) !important;
    height: calc(525 * var(--sp)) !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-03 .look-num {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(541 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(587 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-03 .look-scene__photo--b {
    width: calc(187 * var(--sp)) !important;
    height: calc(281 * var(--sp)) !important;
    top: calc(690 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 .look-scene__photo--a {
    left: 0 !important;
  }
  .look-month--sep .look-scene--sep-03 .look-scene__photo--b {
    left: calc(203 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-04 {
    top: calc(5681 * var(--sp)) !important;
    height: calc(384 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-04 .look-scene__photo--main {
    width: calc(390 * var(--sp)) !important;
    height: calc(259 * var(--sp)) !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-04 .look-num {
    width: calc(158 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(275 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-04 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(321 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand03 {
    top: calc(6120 * var(--sp)) !important;
    height: calc(703 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand03 .look-scene__photo--main {
    width: calc(300 * var(--sp)) !important;
    height: calc(450 * var(--sp)) !important;
    left: calc(90 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand03 .brand-card {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(20 * var(--sp)) !important;
    top: calc(482 * var(--sp)) !important;
    padding: 0 calc(22 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand03 .brand-card__logo {
    width: calc(253 * var(--sp)) !important;
    margin: 0 auto calc(13 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 {
    top: calc(6878 * var(--sp)) !important;
    height: calc(420 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 .look-scene__caption {
    width: calc(342 * var(--sp)) !important;
    position: absolute !important;
    left: calc(24 * var(--sp)) !important;
    top: calc(292 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--sep .look-scene--sep-05 .look-num {
    width: calc(159 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--sep .look-scene--sep-05 .look-credit {
    width: calc(323 * var(--sp)) !important;
    margin-top: calc(13 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-05 .look-scene__photo--b {
    width: calc(191.5 * var(--sp)) !important;
    height: calc(287 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 .look-scene__photo--a {
    left: calc(2 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-05 .look-scene__photo--b {
    left: calc(200.5 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand04 {
    top: calc(7356 * var(--sp)) !important;
    height: calc(648 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 .look-scene__photo--main {
    width: calc(300 * var(--sp)) !important;
    height: calc(450 * var(--sp)) !important;
    left: calc(21 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(21 * var(--sp)) !important;
    top: calc(482 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card__logo {
    width: calc(266 * var(--sp)) !important;
    margin: 0 auto calc(17 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    z-index: 5;
  }
  .look-month--sep .look-scene--sep-07 {
    top: calc(8068 * var(--sp)) !important;
    height: calc(1001 * var(--sp)) !important;
    left: 0 !important;
    width: calc(390 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__photo--a {
    width: calc(300 * var(--sp)) !important;
    height: calc(450 * var(--sp)) !important;
    left: calc(45 * var(--sp)) !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__right {
    width: calc(383 * var(--sp)) !important;
    height: calc(541 * var(--sp)) !important;
    position: absolute !important;
    left: calc(3.5 * var(--sp)) !important;
    top: calc(460 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__photo--b {
    width: calc(244 * var(--sp)) !important;
    height: calc(366 * var(--sp)) !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__photo--c {
    width: calc(163 * var(--sp)) !important;
    height: calc(245 * var(--sp)) !important;
    left: calc(223.5 * var(--sp)) !important;
    top: calc(633 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-num {
    width: calc(186 * var(--sp)) !important;
    position: absolute !important;
    left: calc(16 * var(--sp)) !important;
    top: calc(572 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: calc(16 * var(--sp)) !important;
    top: calc(618 * var(--sp)) !important;
  }
}

@media screen and (max-width: 768px) {
  .look-movie {
    display: block;
  }
  .look-movie__item {
    width: 100%;
    aspect-ratio: 9/16;
  }
  .look-movie__item:nth-child(n+2) {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .look-month--sep {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    overflow: hidden;
  }
  .look-month--sep .look-scene--sep-01,
  .look-month--sep .look-scene--sep-01 .look-scene__photo--main,
  .look-month--sep .look-scene--sep-01 .look-scene__group,
  .look-month--sep .look-scene--sep-brand01,
  .look-month--sep .look-scene--sep-brand01 .look-scene__photo--main,
  .look-month--sep .look-scene--sep-pair01,
  .look-month--sep .look-scene--sep-pair01 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-brand02,
  .look-month--sep .look-scene--sep-brand02 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-brand02 .look-num,
  .look-month--sep .look-scene--sep-brand02 .look-credit,
  .look-month--sep .look-scene--sep-03,
  .look-month--sep .look-scene--sep-05,
  .look-month--sep .look-scene--sep-05 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-07 {
    left: 0 !important;
  }
  .look-month--sep .look-scene--sep-03 {
    width: calc(390 * var(--sp)) !important;
    left: 0 !important;
  }
  .look-month--sep .look-scene--sep-03 .look-num {
    width: calc(350 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(541 * var(--sp)) !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4;
  }
  .look-month--sep .look-scene--sep-03 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(587 * var(--sp)) !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4;
  }
  .look-month--sep .look-scene--sep-04 {
    width: calc(390 * var(--sp)) !important;
    height: calc(384 * var(--sp)) !important;
    left: 0 !important;
  }
  .look-month--sep .look-scene--sep-04 .look-scene__photo--main {
    width: calc(390 * var(--sp)) !important;
    height: calc(259 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    bottom: auto !important;
    margin: 0 !important;
    transform: none !important;
  }
  .look-month--sep .look-scene--sep-04 .look-num {
    width: calc(158 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(275 * var(--sp)) !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4;
  }
  .look-month--sep .look-scene--sep-04 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: calc(321 * var(--sp)) !important;
    bottom: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 4;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(50% - (175 * var(--sp))) !important;
    top: calc(415 * var(--sp)) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    z-index: 6;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__logo {
    width: calc(266 * var(--sp)) !important;
    margin: 0 auto calc(17 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    margin: 0 auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 7;
  }
  .look-month--sep .look-scene--sep-brand03 .brand-card--oneil {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(20 * var(--sp)) !important;
    top: calc(482 * var(--sp)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center;
    z-index: 6;
  }
  .look-month--sep .look-scene--sep-brand03 .brand-card--oneil .brand-card__logo {
    width: calc(253 * var(--sp)) !important;
    margin: 0 auto calc(13 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand03 .brand-card--oneil .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    margin: 0 auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 7;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(50% - (175 * var(--sp))) !important;
    top: calc(482 * var(--sp)) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
    z-index: 6;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__logo {
    width: calc(266 * var(--sp)) !important;
    margin: 0 auto calc(17 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(177 * var(--sp)) !important;
    margin: 0 auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 7;
  }
  .look-month--sep .look-scene--sep-brand02 {
    height: calc(765 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 {
    height: calc(780 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel {
    left: calc(50% - (175 * var(--sp))) !important;
    right: auto !important;
    margin: 0 !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__box,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__box {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__box p,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__box p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
@media screen and (max-width: 768px) {
  .look-month--oct {
    --sp: calc(100vw / 390);
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    background-color: #1D2339;
    overflow: hidden;
  }
  .look-month--oct .look-month__title {
    width: calc(328 * var(--sp)) !important;
    padding: 0 !important;
    margin: calc(30 * var(--sp)) 0 calc(45 * var(--sp)) !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--oct .look-scene {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .look-month--oct .look-num {
    height: calc(30 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--oct .look-num img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .look-month--oct .look-num--vertical {
    width: calc(60 * var(--sp)) !important;
    height: auto !important;
  }
  .look-month--oct .look-num--vertical img {
    height: auto;
    object-fit: contain;
  }
  .look-month--oct .look-credit {
    color: #D6DAD8;
    margin: 0 !important;
  }
  .look-month--oct .look-credit > div {
    font-size: 1.2rem !important;
    line-height: 1.55 !important;
    letter-spacing: 0;
    white-space: normal;
  }
  .look-month--oct .brand-card {
    text-align: center;
  }
  .look-month--oct .brand-card__logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .look-month--oct .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    min-height: calc(112 * var(--sp)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
  }
  .look-month--oct .brand-card__box p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    letter-spacing: 0;
    text-align: center;
  }
  .look-month--oct .look-scene--oct-brand01 .brand-card,
  .look-month--oct .look-scene--oct-brand02 .brand-card,
  .look-month--oct .look-scene--oct-brand03 .brand-card {
    width: calc(390 * var(--sp)) !important;
    display: block !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .look-month--oct .look-scene--oct-brand01 .brand-card__logo,
  .look-month--oct .look-scene--oct-brand02 .brand-card__logo,
  .look-month--oct .look-scene--oct-brand03 .brand-card__logo {
    width: calc(300 * var(--sp)) !important;
    max-width: none !important;
    margin-bottom: calc(18 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-01 .look-credit,
  .look-month--oct .look-scene--oct-02 .look-credit,
  .look-month--oct .look-scene--oct-05 .look-credit,
  .look-month--oct .look-scene--oct-04 .look-credit {
    width: calc(323 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-05 {
    width: 100vw !important;
    padding: 0 !important;
    margin: calc(40 * var(--sp)) 0 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-05 .look-scene__photo--main {
    width: 100vw !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-05 .look-num {
    width: calc(210 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    position: relative !important;
    left: calc(10 * var(--sp)) !important;
    top: auto !important;
    margin: calc(13 * var(--sp)) 0 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-05 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: relative !important;
    left: calc(10 * var(--sp)) !important;
    right: auto !important;
    top: auto !important;
    margin: calc(13 * var(--sp)) 0 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-pair01 {
    width: 100vw !important;
    height: calc(360 * var(--sp)) !important;
    padding: 0 !important;
    margin: calc(38 * var(--sp)) 0 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-pair01 .look-scene__photo--a {
    width: calc(186 * var(--sp)) !important;
    height: auto !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(76 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-pair01 .look-scene__photo--b {
    width: calc(146 * var(--sp)) !important;
    height: auto !important;
    position: absolute !important;
    left: calc(244 * var(--sp)) !important;
    top: 0 !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-02 {
    width: 100vw !important;
    padding: 0 !important;
    margin: calc(54 * var(--sp)) 0 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-02 .look-scene__photo--main {
    width: calc(260 * var(--sp)) !important;
    height: auto !important;
    position: relative !important;
    left: calc(73 * var(--sp)) !important;
    top: auto !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical {
    width: calc(60 * var(--sp)) !important;
    height: auto !important;
    position: absolute !important;
    left: calc(334 * var(--sp)) !important;
    top: calc(89 * var(--sp)) !important;
    margin: 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical img {
    width: 100% !important;
    height: auto !important;
  }
  .look-month--oct .look-scene--oct-02 .look-credit {
    width: calc(323 * var(--sp)) !important;
    position: relative !important;
    left: calc(73 * var(--sp)) !important;
    right: auto !important;
    top: auto !important;
    margin: calc(12 * var(--sp)) 0 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-04 {
    width: 100vw !important;
    padding: 0 !important;
    margin: calc(62 * var(--sp)) 0 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-04 .look-scene__photo--main {
    width: calc(292 * var(--sp)) !important;
    height: auto !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-04 .look-num {
    width: calc(210 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    position: relative !important;
    left: calc(16 * var(--sp)) !important;
    top: auto !important;
    margin: calc(22 * var(--sp)) 0 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-04 .look-credit {
    width: calc(260 * var(--sp)) !important;
    position: relative !important;
    left: calc(16 * var(--sp)) !important;
    right: auto !important;
    top: auto !important;
    margin: calc(22 * var(--sp)) 0 calc(92 * var(--sp)) !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-01 {
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__photo--main {
    width: calc(315 * var(--sp)) !important;
    height: auto !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin: 0 auto !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__group {
    width: 100vw !important;
    height: calc(540 * var(--sp)) !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    display: block !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__caption {
    width: calc(323 * var(--sp)) !important;
    position: relative !important;
    left: calc(39 * var(--sp)) !important;
    top: auto !important;
    margin: calc(22 * var(--sp)) 0 0 !important;
    z-index: 4;
  }
  .look-month--oct .look-scene--oct-01 .look-num {
    width: calc(210 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-01 .look-credit {
    width: calc(323 * var(--sp)) !important;
    margin: calc(14 * var(--sp)) 0 0 !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__photo--sub {
    width: calc(214 * var(--sp)) !important;
    height: auto !important;
    position: absolute !important;
    left: 0 !important;
    top: calc(186 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__photo--detail {
    width: calc(140 * var(--sp)) !important;
    height: auto !important;
    position: absolute !important;
    left: calc(250 * var(--sp)) !important;
    right: auto !important;
    top: calc(300 * var(--sp)) !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .look-month .look-num:not(.look-num--vertical) {
    width: calc(210 * var(--sp)) !important;
    height: calc(30 * var(--sp)) !important;
  }
  .look-month .look-num:not(.look-num--vertical) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .look-month .look-num--vertical {
    width: calc(60 * var(--sp)) !important;
    height: calc(245 * var(--sp)) !important;
  }
  .look-month .look-num--vertical img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical {
    height: auto !important;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical img {
    width: 100% !important;
    height: auto !important;
  }
}
@media screen and (min-width: 769px) {
  .look-scene--oct-05 {
    width: 1280px;
    height: 1109px;
    left: calc(50% - 640px);
    top: 2169px;
    margin: 0;
    position: absolute;
  }
  .look-scene--oct-05 .look-scene__photo--main {
    width: 100vw;
    height: 851px;
    max-height: none;
    margin-left: calc(640px - 50vw);
  }
  .look-scene--oct-05 .look-num {
    width: 490px;
    position: absolute;
    left: 16px;
    top: 875px;
    margin: 0;
  }
  .look-scene--oct-05 .look-credit {
    width: 323px;
    position: absolute;
    left: 16px;
    right: auto;
    top: 965px;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .look-month--sep {
    height: calc(10000 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 {
    height: calc(730 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 {
    top: calc(3548 * var(--sp)) !important;
    height: calc(790 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card {
    top: calc(490 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-solo01 {
    top: calc(4380 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 {
    top: calc(4940 * var(--sp)) !important;
    height: calc(1130 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-03 .look-scene__photo--a,
  .look-month--sep .look-scene--sep-03 .look-scene__photo--b {
    top: calc(820 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-04 {
    top: calc(6125 * var(--sp)) !important;
    height: calc(410 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand03 {
    top: calc(6595 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 {
    top: calc(7375 * var(--sp)) !important;
    height: calc(500 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand04 {
    top: calc(7935 * var(--sp)) !important;
    height: calc(780 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 {
    top: calc(8785 * var(--sp)) !important;
    height: calc(1080 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel {
    width: calc(350 * var(--sp)) !important;
    position: absolute !important;
    left: calc(20 * var(--sp)) !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    text-align: center !important;
    z-index: 20 !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__logo,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__logo {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__box,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__box {
    display: flex !important;
    width: calc(350 * var(--sp)) !important;
    height: auto !important;
    min-height: calc(177 * var(--sp)) !important;
    max-height: none !important;
    margin: 0 auto !important;
    padding: calc(14 * var(--sp)) calc(6 * var(--sp)) !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    z-index: 21 !important;
  }
  .look-month--sep .look-scene--sep-brand02 .brand-card--wrangler .brand-card__box p,
  .look-month--sep .look-scene--sep-brand04 .brand-card--russel .brand-card__box p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #551125 !important;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical {
    width: 40px !important;
    max-width: 40px !important;
    height: auto !important;
    left: calc(342 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-02 .look-num--vertical img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__group {
    height: calc(510 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-brand01 {
    margin-top: calc(24 * var(--sp)) !important;
  }
}
@media screen and (max-width: 768px) {
  .look-lead__text,
  .look-lead__text p {
    text-align: center !important;
  }
  .look-month--sep .look-scene--sep-01 {
    height: calc(1340 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-brand01 {
    top: calc(1460 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-pair01 {
    top: calc(2550 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 {
    top: calc(2950 * var(--sp)) !important;
    height: calc(690 * var(--sp)) !important;
    width: calc(321 * var(--sp)) !important;
    left: calc(71 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 .look-scene__photo--main {
    width: calc(271 * var(--sp)) !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
  }
  .look-month--sep .look-scene--sep-02 .look-scene__photo--main img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .look-month--sep .look-scene--sep-02 .look-num {
    left: calc(-47 * var(--sp)) !important;
    top: calc(81 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-02 .look-credit {
    left: 0 !important;
    top: calc(429 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 {
    height: calc(540 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-05 .look-scene__caption {
    top: calc(303 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 {
    height: calc(1280 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__right {
    width: 100vw !important;
    height: calc(700 * var(--sp)) !important;
    left: 0 !important;
    top: calc(500 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-scene__photo--c {
    left: calc(216 * var(--sp)) !important;
    top: calc(835 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-num {
    top: calc(572 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-07 .look-credit {
    top: calc(618 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-01 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__group {
    height: calc(440 * var(--sp)) !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__photo--detail {
    width: calc(140 * var(--sp)) !important;
    height: auto !important;
    left: calc(250 * var(--sp)) !important;
    top: calc(260 * var(--sp)) !important;
    margin: 0 !important;
  }
  .look-month--oct .look-scene--oct-01 .look-scene__photo--detail img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .look-month--oct .look-scene--oct-brand01 {
    margin-top: calc(10 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-brand02 .look-scene__photo--a,
  .look-month--oct .look-scene--oct-brand02 .look-scene__photo--b {
    width: calc(187 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-brand02 .look-scene__photo--b {
    margin-left: calc(16 * var(--sp)) !important;
  }
  .look-month--oct .look-scene--oct-brand03 .brand-card--marge .brand-card__logo {
    width: calc(350 * var(--sp)) !important;
    max-width: none !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__caption,
  .look-month--sep .look-scene--sep-brand02 .look-num,
  .look-month--sep .look-scene--sep-brand02 .look-credit,
  .look-month--sep .look-scene--sep-03 .look-num,
  .look-month--sep .look-scene--sep-03 .look-credit,
  .look-month--sep .look-scene--sep-04 .look-num,
  .look-month--sep .look-scene--sep-04 .look-credit {
    left: calc(16 * var(--sp)) !important;
  }
  .look-month--sep .look-scene--sep-01 .look-scene__photo--detail {
    left: auto !important;
    right: 0 !important;
  }
}

/*# sourceMappingURL=style.css.map */
