@charset "UTF-8";
/* *
 *
 *  2026_spring_summer.css
 *
 *
 * */
html, #page {
  background: #ffffff;
}

#main .back-archives {
  margin-top: 100px;
}

.lookbook-list--2026ss {
  padding: 0 55px;
}
.lookbook-list--2026ss ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1016px;
  margin-inline: auto;
}
.lookbook-list--2026ss li {
  width: calc(50% - 5px);
}
.lookbook-list--2026ss li.half {
  width: calc(50% - 5px);
}
.lookbook-list--2026ss li.full {
  width: 100%;
}
.lookbook-list--2026ss li img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .lookbook-list--2026ss {
    padding: 0 36px;
  }
  .lookbook-list--2026ss li {
    width: calc(50% - 5px);
  }
  .lookbook-list--2026ss li.half {
    width: calc(50% - 5px);
  }
  .lookbook-list--2026ss li.full {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .lookbook-list--2026ss {
    padding: 0 20px;
  }
  .lookbook-list--2026ss ul {
    gap: 8px;
  }
  .lookbook-list--2026ss li {
    width: calc(50% - 4px);
  }
  .lookbook-list--2026ss li.half {
    width: calc(50% - 4px);
  }
  .lookbook-list--2026ss li.full {
    width: 100%;
  }
  #main .back-archives {
    margin-top: 60px;
  }
}
.cursor {
  display: none;
}

.dev-pc body {
  cursor: none !important;
}
.dev-pc body a {
  cursor: none !important;
}
.dev-pc .cursor {
  display: block;
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  cursor: none;
  pointer-events: none;
  z-index: 100005;
  opacity: 1;
}
.dev-pc .cursor .icon {
  display: block;
  width: 20px;
  height: 27px;
  background: url("/assets/images/lookbook/common/icon_cursor.svg") no-repeat 50% 50%;
  background-size: 20px 27px;
}
.dev-pc .cursor .txt {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 4px;
  transform: translateX(-50%);
  display: none;
  font-size: 10px;
}
.dev-pc .cursor .y,
.dev-pc .cursor .x {
  display: flex;
  justify-content: flex-start;
}
.dev-pc .cursor .y .num,
.dev-pc .cursor .x .num {
  padding-left: 5px;
}
.dev-pc .cursor._load {
  opacity: 0;
}
.dev-pc .cursor._on .txt {
  display: block;
}


.youtube-player{
  position: relative;
  max-width: 1600px;
  margin-block-end: 80px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.youtube-player__main {
  width: 100%;
  height: 100%;
}
.youtube-player__main iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-player-container{
  padding-inline: 55px;
}

.youtube-player__thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in;
}

.youtube-player__thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .youtube-player__thumb img{
    transition: transform 0.3s ease-out;
  }
  .youtube-player__thumb:hover img {
    transform: scale(1.02);
  }
}