@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-family: inter-18pt, sans-serif;
  font-style: normal;
  font-weight: 300;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.eg {
  font-family: "inter-18pt", sans-serif;
  font-style: normal;
}

/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative;
}
.fv .fv_img {
  width: 100%;
  height: auto;
}
.fv .fv_logo {
  position: absolute;
  width: 20%;
  z-index: 5;
  top: 34%;
  left: 12%;
  opacity: 0;
  -webkit-animation: fvLogoFade 0.8s ease-out 0.3s forwards;
          animation: fvLogoFade 0.8s ease-out 0.3s forwards;
}
@media screen and (min-width: 769px) {
  .fv .fv_logo {
    width: 16%;
    top: 14vw;
    left: 15vw;
  }
}

@-webkit-keyframes fvLogoFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fvLogoFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ── Pinned section wrapper ── */
/* This is the element GSAP pins — it must have overflow:hidden */
.pin_section {
  overflow: clip;
  position: relative;
  height: 100dvh;
}
@media screen and (min-width: 769px) {
  .pin_section {
    height: 100vh;
    overflow: hidden;
  }
}
.pin_section.has_single {
  overflow: clip;
}
@media screen and (min-width: 769px) {
  .pin_section.has_single {
    height: 150vh;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single .credit {
    left: auto;
    right: calc(50% + 0px);
    width: 300px;
  }
}
.pin_section {
  /* ── Block label overlay ── */
}
.pin_section .block_label {
  position: absolute;
  top: 2.5rem;
  left: 5vw;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .pin_section .block_label {
    left: calc(300px + 2vw);
  }
}
/* The horizontal track — width set by JS */
.h_track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100dvh;
  gap: 5px;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .h_track {
    position: absolute;
    top: 0;
    left: 300px;
    padding: 0;
    height: 150vh;
  }
  .h_track.right {
    left: 0;
  }
}
.h_track.free {
  display: block;
}

@media screen and (min-width: 769px) {
  .pin_section.has_single {
    height: 150vh;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single .h_track {
    height: 150vh;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single .credit {
    left: auto;
    right: calc(50% + 0px);
    width: 300px;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single_left {
    height: 150vh;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single_left .h_track {
    height: 150vh;
    left: 0;
  }
}
@media screen and (min-width: 769px) {
  .pin_section.has_single_left .credit {
    left: 50%;
    right: auto;
    width: 300px;
  }
}

/* ── Image cards ── */
.img_card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
.img_card.portrait {
  height: auto;
  width: 375px;
}
@media screen and (min-width: 769px) {
  .img_card.portrait {
    width: auto;
  }
}
.img_card.portrait img {
  -o-object-position: center center;
     object-position: center center;
}
.img_card.landscape {
  height: calc(100dvh - 55px);
  width: auto;
  aspect-ratio: 1000/580;
}
@media screen and (min-width: 769px) {
  .img_card.landscape {
    height: 100vh;
  }
}
.img_card.landscape img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_card.single {
  height: 92dvh;
  width: 100vw;
  aspect-ratio: auto;
}
.img_card.single img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .img_card.single {
    height: 150vh;
    margin-left: auto;
    width: auto;
  }
}
.img_card img {
  width: 100%;
  height: 92dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
@media screen and (min-width: 769px) {
  .img_card img {
    height: 100vh;
  }
}

.fade_container {
  position: relative;
  width: 100%;
  height: 92dvh;
}
@media screen and (min-width: 769px) {
  .fade_container {
    height: 150vh;
  }
}
.fade_container img {
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: fadeCycle 6s infinite;
          animation: fadeCycle 6s infinite;
}
@media screen and (min-width: 769px) {
  .fade_container img {
    height: 150vh;
    width: auto;
  }
}
.fade_container img:nth-child(2) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes fadeCycle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeCycle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.movie {
  height: 100dvh;
  width: 375px;
  max-width: none;
}
@media screen and (min-width: 769px) {
  .movie {
    width: auto;
  }
}
.movie > * {
  height: 92dvh !important;
}
@media screen and (min-width: 769px) {
  .movie > * {
    width: auto;
    height: 100% !important;
  }
}

.LeeepSingleVideoPlayer {
  height: 92dvh !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: bottom center !important;
     object-position: bottom center !important;
}
@media screen and (min-width: 769px) {
  .LeeepSingleVideoPlayer {
    height: 100vh !important;
    width: auto !important;
  }
}

/* ── Credit ── */
.credit {
  font-size: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px;
  position: absolute;
  z-index: 20;
  line-height: 1.5;
  padding: 10px;
  background: #fff;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 769px) {
  .credit {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px; /* 横幅を 228px に指定 */
    z-index: 20; /* 前面に配置 */
    margin: 0;
    /* ul内の配置を縦並びに整える */
    text-align: right;
    display: block;
    padding: 20px 20px 20px 0;
  }
  .credit.right {
    left: auto;
    right: 0;
    width: 300px;
    text-align: left;
    padding: 20px;
  }
  .credit ul a {
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .credit .number {
    margin-bottom: 50px;
  }
}
.credit ul a {
  display: block;
  color: #000;
  text-decoration: none;
}
.credit ul a span {
  display: inline-block;
  margin-left: 5px;
  line-height: 1.7;
}
.credit ul a .item_name {
  font-weight: bold;
}
.credit ul a .price {
  color: #7290E9;
  text-decoration: underline;
}

#block11 .credit {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#block11 .credit ul {
  text-align: right;
  margin-top: -20px;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  #block11 .credit ul {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 769px) {
  #block11 .credit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 769px) {
  #block11 .credit .number {
    margin-bottom: 30px;
  }
}

.h_track.collage {
  width: 100vw;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 769px) {
  .h_track.collage {
    left: 300px;
    width: calc(100vw - 300px);
    height: 100vh;
  }
}

.collage_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage_img {
  position: absolute;
  width: 39%;
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .collage_img {
    width: 30%;
    width: 25%;
  }
}
.collage_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.collage_img._top_right {
  top: 2%;
  right: 19%;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .collage_img._top_right {
    right: 4%;
  }
}
.collage_img._bottom_left {
  top: 25%;
  left: 8%;
}
@media screen and (min-width: 769px) {
  .collage_img._bottom_left {
    top: 13%;
    left: 5%;
  }
}
.collage_img._bottom_right {
  top: 37%;
  right: 5%;
  bottom: -80px;
}
@media screen and (min-width: 769px) {
  .collage_img._bottom_right {
    right: 48%;
    top: auto;
    bottom: 5%;
  }
}

.looks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 96%;
  margin: 100px auto 0;
}
@media screen and (min-width: 769px) {
  .looks {
    max-width: 1000px;
    margin: 200px auto 0;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .looks .look_wrap {
    MB: 20px;
  }
}
.looks .look_wrap .look_number {
  font-style: italic;
  font-weight: bold;
  font-size: 13px;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: -5px;
}
@media screen and (min-width: 769px) {
  .looks .look_wrap .look_number {
    margin-top: 15px;
  }
}
.looks .look_wrap .look_credit {
  font-size: 11px;
  line-height: 1.5;
  padding: 10px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.looks .look_wrap .look_credit li {
  display: inline;
  word-break: break-all;
}
.looks .look_wrap .look_credit li span {
  line-height: 1.9;
}
.looks .look_wrap .look_credit .item_name {
  font-weight: bold;
}
.looks .look_wrap .look_credit .price {
  color: #000;
  text-decoration: underline;
}

.all_btn {
  font-size: 14px;
  text-align: center;
  margin: 50px auto 60px;
  padding: 14px 50px;
  background-color: #360C0A;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 54%;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .all_btn {
    width: 20%;
    max-width: 300px;
  }
}

.staff {
  font-size: 10px;
  font-weight: 300;
  display: block;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .staff {
    font-size: 12px;
  }
}
.staff li {
  line-height: 2;
}

.brand_link {
  display: block;
  width: 24%;
  margin: 75px auto;
}
@media screen and (min-width: 769px) {
  .brand_link {
    width: 100px;
  }
}

.copy {
  font-size: 10px;
  text-align: center;
  margin: 65px auto 25px;
}

[data-aos][data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}
[data-aos][data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}
[data-aos][data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}

.flexslider {
  border: none;
  margin: 0;
}
.flexslider .flex-control-nav li {
  width: 8px;
}
.flexslider .flex-control-paging li a {
  width: 8px;
  height: 8px;
}/*# sourceMappingURL=style.css.map */