@charset "UTF-8";
/*---------------------------------------------
00. reset
01. common
02. layout
---------------------------------------------*/

:root {
  --color-purple: #cbc9e8;
  --color-beige: #a87f65;
  --color-red: #d15b5a;
  --thumbnail-size: calc(37 / 375 * 100vw);
}
@media (min-width: 1061px) {
  :root {
    --thumbnail-size: 95px;
  }
}

/*---------------------------------------------
00. reset
---------------------------------------------*/
/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

address,
blockquote,
dl,
figure,
form,
iframe,
ol,
p,
pre,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled],
button[disabled] {
  cursor: default;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset,
option {
  padding: 0;
}

fieldset {
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden],
template {
  display: none;
}

/*---------------------------------------------
01. common
---------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

picture {
  display: block;
}

em {
  font-style: normal;
}

button {
  font-family: inherit;
}

img {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a:hover {
  color: currentColor;
  text-decoration: none;
}

.fade {
  transition: opacity 0.25s ease-out;
}
.fade:hover {
  opacity: 0.5;
}

.text-border {
  position: relative;
  padding-bottom: 0;
  line-height: 1.5;
}
.text-border::before {
  background: currentColor;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 3px;
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.3s;
}
@media (max-width: 1060px) {
  .text-border::before {
    bottom: 2px;
  }
}
.text-border:hover::before,
.text-borderwrap:hover .text-border::before {
  transform-origin: right top;
  transform: scale(0, 1);
}

.ffs {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.object-fit {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.object-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object-fit-contain img {
  object-fit: contain;
}

.bg-color {
  padding: 2px;
  background: linear-gradient(transparent 0%, rgba(153, 123, 137, 0.4) 0%);
}

/* animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* 表示(メディアクエリによる分岐) */
@media (min-width: 1061px) {
  .display_pc {
    display: block !important;
  }
  .display_sp {
    display: none !important;
  }
}
@media (max-width: 1060px) {
  .display_pc {
    display: none !important;
  }
  .display_sp {
    display: block !important;
  }
}
/* フォント */
.font-bold {
  font-weight: 700;
}
.dm-sans-regular {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* keen-slider */
.fader__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
}

/* has-shade */
.has-shade {
  position: relative;
}
.has-shade::after {
  content: "";
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 14px;
  background: linear-gradient(#d7d5ef 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1061px) {
  .has-shade::after {
    height: 57px;
  }
}
.has-shade.long::after {
  bottom: 20px;
  height: 40px;
}
@media (min-width: 1061px) {
  .has-shade.long::after {
    bottom: 33px;
    height: 85px;
  }
}

/*---------------------------------------------
02. layout
---------------------------------------------*/
html {
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0px;
  padding: 0px;
  color: var(--color-beige);
  font-size: 12px;
}
@media (min-width: 1061px) {
  body {
    display: grid;
    grid-template-columns: var(--thumbnail-size) 1fr var(--thumbnail-size);
    grid-template-rows: repeat(2, auto);
    font-size: 16px;
  }
}

body::before {
  pointer-events: none;
  content: "";
  position: fixed;
  z-index: 10000;
  display: block;
  width: 100%;
  height: 100vh;
  border: 1px solid var(--color-purple);
}
body.is-loaded .blur-layer {
  backdrop-filter: blur(0);
}

.blur-layer {
  pointer-events: none;
  transition: backdrop-filter 2s ease-out;
  position: fixed;
  z-index: 10000;
  display: block;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(50px);
}

@media (min-width: 1061px) {
  .body-center {
    grid-area: 1 / 1 / 2 / 3;
    overflow: hidden;
  }
  .body-right {
    grid-area: 2 / 1 / 3 / 3;
  }
  .footer {
    grid-area: 2 / 1 / 3 / 3;
  }
}

/* 共通パーツ */
.com-layout01 {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (min-width: 1061px) {
  .com-layout01 {
    width: calc(900 / 1920 * 100vw);
    margin-inline: auto;
  }
  .com-layout01 .layout__img {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1061px) {
  .com-layout02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 66px;
  }
}
.com-layout02 .layout__img > picture {
  width: 100%;
}

@media (min-width: 1061px) {
  .com-layout-sub {
    display: flex;
    justify-content: flex-end;
    gap: 61px;
    padding: 453px calc(117 / 1825 * 100%) 106px 0;
  }
}
.com-layout-sub .layout__img {
  position: relative;
}
.com-layout-sub .layout__img > picture {
  max-width: 210px;
  height: auto;
}
@media (min-width: 1061px) {
  .com-layout-sub .layout__img > picture {
    max-width: 368px;
  }
}

.com-layout-sub2 {
  display: flex;
  justify-content: center;
  gap: 68px;
  padding: 390px 0 200px;
}
.com-layout-sub2 .layout__img > picture {
  max-width: 416px;
  height: auto;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 16px 17px;
}
@media (max-width: 1060px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1061px) {
  .header {
    padding: 27px 40px;
  }
}
.header__title {
  font-size: 11px;
  line-height: calc(15 / 11);
}
@media (min-width: 1061px) {
  .header__title {
    font-size: 16px;
    line-height: calc(23 / 16);
  }
}
.header__links {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  font-size: 11px;
  line-height: calc(15 / 11);
}
.header__links .logo-raybeams {
  width: 57px;
  margin-top: 20px;
}

/* nav */
.nav {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 38px;
  background: linear-gradient(#cbc9e8 0%, rgba(255, 255, 255, 0) 100%);
  padding: 0 17px;
}
@media (max-width: 1060px) {
  .nav {
    justify-content: space-between;
  }
  .nav__copyright {
    font-size: 9px;
  }
  .nav__btn-instagram {
    width: 12px;
  }
}
@media (min-width: 1061px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 97px;
    width: calc(100% - var(--thumbnail-size));
    height: 80px;
    padding: 30px 40px;
  }
}
@media (min-width: 1061px) {
  .nav__btn-shoplist {
    margin: 0 46px 0 auto;
  }
}

/* footer */
.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
}
@media (min-width: 1061px) {
  .footer {
    grid-template-columns: 1fr calc(900 / 1920 * 100%) 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
    padding-top: 170px;
  }
}
@media (max-width: 1060px) {
  .footer {
    position: relative;
    z-index: 101;
    padding-bottom: 100px;
  }
}
@media (min-width: 1061px) {
  .footer__head {
    display: grid;
    place-content: center;
  }
}
@media (max-width: 1060px) {
  .footer__head {
    grid-area: 2 / 1 / 3 / 2;
    position: relative;
    padding-top: 112px;
    padding-left: 19px;
  }
}
.footer__logo-raybeams {
  width: 102px;
  margin-inline: auto;
}
@media (max-width: 1060px) {
  .footer__logo-raybeams {
    position: absolute;
    top: -8px;
    left: 50%;
    z-index: 1;
    width: 89px;
  }
}
.footer__logo {
  width: 183px;
  margin: 25px 0 0 -10px;
}
@media (max-width: 1060px) {
  .footer__logo {
    width: 244px;
    margin: 0 0 0 -13px;
  }
}
.footer__term {
  margin-top: 19px;
  font-size: 15px;
  line-height: calc(20 / 15);
}
@media (max-width: 1060px) {
  .footer__term {
    margin-top: 5px;
    font-size: 11px;
    line-height: calc(14 / 11);
  }
}
.footer__season {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 15px;
  margin-top: 30px;
}
@media (max-width: 1060px) {
  .footer__season {
    grid-row-gap: 15px;
    margin-top: 15px;
  }
}
.footer__season > li {
  display: grid;
  grid-template-columns: 4em auto;
  align-items: center;
  font-size: 16px;
  line-height: calc(20 / 16);
}
@media (max-width: 1060px) {
  .footer__season > li {
    display: grid;
    grid-template-columns: 4em auto;
    align-items: center;
    font-size: 12px;
    line-height: calc(15 / 12);
  }
}
.footer__season-body:not(.notyet) .name {
  display: grid;
  place-items: center;
  width: 100px;
  height: 50px;
  background: url("../images/btn_bg.png") no-repeat center center;
  background-size: contain;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  color: #a09e9e;
}
.footer__season-body.notyet .name {
  display: grid;
  place-items: center;
  width: 100px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--color-beige);
  text-decoration: line-through;
}
.footer__season-body.notyet .text {
  margin-top: 5px;
  font-size: 12px;
}
@media (max-width: 1060px) {
  .footer__season-body {
    width: 100px;
  }
  .footer__season-body.notyet .text {
    font-size: 10px;
    text-align: center;
  }
}
.footer__credit {
  margin-top: 31px;
  font-size: 10px;
  line-height: 1.5;
}
@media (max-width: 1060px) {
  .footer__credit {
    position: absolute;
    top: -135px;
    left: 19px;
    z-index: 1;
    margin-top: 0;
    font-size: 9px;
    line-height: calc(15 / 9);
  }
}

.footer__body {
  position: relative;
}
@media (max-width: 1060px) {
  .footer__body {
    grid-area: 1 / 1 / 2 / 3;
  }
}
.footer__body-logo {
  position: absolute;
  bottom: 79px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(697 / 1146 * 100%);
}

@media (min-width: 1061px) {
  .footer__foot {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 160px;
    place-items: center;
  }
}
@media (max-width: 1060px) {
  .footer__foot {
    grid-area: 2 / 2 / 3 / 3;
    padding-right: 20px;
  }
}
.footer__sns {
  grid-area: 2 / 1 / 3 / 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 25px;
  place-items: center;
}
@media (max-width: 1060px) {
  .footer__sns {
    grid-area: 2 / 1 / 3 / 2;
    grid-row-gap: 18px;
    padding-top: 164px;
  }
}
.footer__pagetop {
  grid-area: 3 / 1 / 4 / 2;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 1060px) {
  .footer__pagetop {
    margin-top: 30px;
    font-size: 10px;
  }
  .footer__pagetop svg {
    width: 15px;
  }
}

/* body-right */
.body-right {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  width: var(--thumbnail-size);
  height: calc(100% - 205px);
  background-color: #fff;
}
@media (min-width: 1061px) {
  .body-right {
    height: 100vh;
  }
}

.body-right__thumbnail {
  cursor: pointer;
  flex: 1;
  position: relative;
  transition: opacity 0.25s ease-out;
  opacity: 0.24;
}
.body-right__thumbnail:hover {
  opacity: 0.7;
}
.body-right__thumbnail.is-active {
  opacity: 1;
}
.body-right__thumbnail.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 16px;
  background: linear-gradient(#d7d5ef 0%, rgba(255, 255, 255, 0) 100%);
}

/* fv */
.fv-slider-wrap {
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 205px);
  padding-right: calc(78 / 375 * 100vw);
}
@media (min-width: 1061px) {
  .fv-slider-wrap {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding-right: var(--thumbnail-size);
  }
}
.fv-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
@media (min-width: 1061px) {
  .fv-slider {
    width: calc(900 / 1920 * 100vw);
  }
}
.fv-slider picture {
  height: 100%;
}

/*---------------------------------------------
main-contents
---------------------------------------------*/
.section-kv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin-inline: auto;
}
@media (min-width: 1061px) {
  .section-kv {
    width: calc(900 / 1920 * 100vw);
  }
}
.kv__logo {
  position: absolute;
  /* bottom: 68vh; */
  top: 150px;
  left: 8px;
  z-index: 1000;
  width: calc(358 / 375 * 100vw);
  margin: 0;
}
@media (min-width: 1061px) {
  .kv__logo {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    width: calc(1109 / 1920 * 100vw);
    margin: 0 calc(-80 / 1920 * 100vw) 0 calc(-129 / 1920 * 100vw);
  }
}
.kv__logo-raybeams {
  position: absolute;
  bottom: calc(270 / 1730 * 100vh);
  right: calc(-120 / 1920 * 100vw);
  width: calc(144 / 1920 * 100vw);
}

.section-look {
  background-color: #fff;
  border-top: 1px solid var(--color-purple);
}
@media (max-width: 1060px) {
  .section-look {
    padding-right: calc(78 / 375 * 100vw);
    padding-bottom: 50px;
  }
}

.layout__img > picture {
  position: relative;
}
@media (min-width: 1061px) {
  .layout__img > picture {
    width: calc(900 / 1920 * 100vw);
  }
}
.layout__img .has-border {
  border: 1px solid var(--color-red);
}
.look__credit {
  line-height: calc(20 / 12);
  letter-spacing: 0.03em;
}
@media (max-width: 1060px) {
  .look__credit {
    margin: 20px 0 0 19px;
  }
}
@media (min-width: 1061px) {
  .look__credit {
    position: absolute;
    z-index: 1;
    line-height: calc(30 / 16);
  }
}
.look__number {
  position: absolute;
  z-index: 1;
  color: var(--color-red);
}

/* look01 */
.look01 {
  position: relative;
}
@media (max-width: 1060px) {
  .look01 {
    padding-bottom: 100px;
  }
}
.look01__catch-en {
  position: absolute;
  top: calc(707 / 375 * 100vw);
  right: calc(98 / 375 * 100vw);
  z-index: 1;
  width: 180px;
}
@media (min-width: 1061px) {
  .look01__catch-en {
    position: absolute;
    top: 0;
    right: calc(285 / 1920 * 100%);
    width: calc(462 / 1920 * 100vw);
  }
}
.look01__catch-jp {
  position: absolute;
  top: calc(620 / 375 * 100vw);
  right: calc(79 / 375 * 100vw);
  z-index: 1;
  width: 200px;
}
@media (min-width: 1061px) {
  .look01__catch-jp {
    position: absolute;
    top: 165px;
    right: calc(178 / 1920 * 100vw);
    width: calc(234 / 1920 * 100vw);
  }
}
.look01__img01 {
  position: relative;
}
.look01__credit {
  bottom: 129px;
  left: calc(263 / 1730 * 100%);
}
@media (min-width: 1061px) {
  .look01__credit {
    bottom: 129px;
    left: 0;
    transform: translateX(-110%);
  }
}
.look01__number {
  right: 30px;
}
@media (max-width: 1060px) {
  .look01__number {
    bottom: 0;
    right: 58px;
  }
}
@media (min-width: 1061px) {
  .look01__number {
    top: -78px;
    right: 0;
  }
}
@media (max-width: 1060px) {
  .look01__img02 {
    position: relative;
    margin: 277px 0 0 20px;
  }
}

/* look02 */
.look02__credit {
  margin: 20px 0 0 20px;
}
@media (min-width: 1061px) {
  .look02__credit {
    margin: 58px 0 0 100px;
  }
}
.look02__number {
  top: -65px;
}
@media (max-width: 1060px) {
  .look02__number {
    right: 0;
  }
}
@media (min-width: 1061px) {
  .look02__number {
    top: 50px;
    left: -82px;
  }
}
.look02__img01 > picture {
  max-width: 100%;
}
@media (max-width: 1060px) {
  .look02__img02 {
    position: relative;
    width: 210px;
    margin-top: 50px;
    margin-left: auto;
  }
}

/* look03 */
.look03__credit {
  margin: 58px 0 0 0;
}
@media (max-width: 1060px) {
  .look03__credit {
    margin: 20px 0 0 20px;
  }
}
.look03__number {
  top: -123px;
  right: 0;
}
@media (min-width: 1061px) {
  .look03__number {
    top: -78px;
    right: 50px;
  }
}
@media (max-width: 1060px) {
  .look03__img01 {
    position: relative;
    margin-top: 50px;
    padding-top: 50px;
  }
  .look03__img01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: var(--color-purple);
  }
}
@media (max-width: 1060px) {
  .look03__img02 {
    position: relative;
    width: 210px;
    margin-top: 50px;
    margin-left: auto;
  }
}

/* look04 */
@media (max-width: 1060px) {
  .look04 {
    padding-bottom: 185px;
  }
}
.look04__img01,
.look04__img02 {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 1061px) {
  .look04__credit {
    bottom: 120px;
    left: 0;
    transform: translateX(-110%);
  }
}
@media (max-width: 1060px) {
  .look04__credit {
    position: absolute;
    bottom: calc(-520 / 375 * 100vw);
    left: 0;
  }
}
@media (min-width: 1061px) {
  .look04__number {
    top: 50px;
    left: -80px;
  }
}
@media (max-width: 1060px) {
  .look04__number {
    bottom: calc(-460 / 375 * 100vw);
    right: 0;
  }
}

/* look05 */
@media (max-width: 1060px) {
  .look05 {
    border-top: none;
  }
}
.look05__img01 {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.look05__credit {
  bottom: -231px;
  left: 0;
}
.look05__number {
  top: 51px;
  left: -83px;
}
@media (max-width: 1060px) {
  .look05__number {
    top: -33px;
    left: 19px;
  }
  .look05__img02 {
    margin: 100px 0 0 calc(87 / 375 * 100vw);
  }
}

/* look06 */
@media (max-width: 1060px) {
  .look06 {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.look06__img02 {
  position: relative;
}
@media (min-width: 1061px) {
  .look06__credit {
    margin: 58px 0 0 100px;
  }
}
.look06__number {
  top: -69px;
  left: 0;
}
@media (max-width: 1060px) {
  .look06__number {
    position: absolute;
    top: -33px;
    left: auto;
    right: 0;
  }
  .look06__img02 {
    position: relative;
    width: 210px;
    margin-top: 100px;
    margin-left: auto;
  }
}

/* look07 */
.look07__img02 {
  position: relative;
}
@media (min-width: 1061px) {
  .look07__credit {
    margin: 58px 0 0 0;
  }
}
.look07__number {
  top: 0;
  right: -70px;
}
@media (max-width: 1060px) {
  .look07__number {
    position: absolute;
    top: -213px;
    left: auto;
    right: 0;
  }
  .look07__img01 {
    position: relative;
    margin-top: 100px;
  }
  .look07__img01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: var(--color-purple);
  }
  .look07__img02 {
    position: relative;
    width: 210px;
    margin-top: 100px;
    margin-left: auto;
  }
}

/* look08 */
@media (max-width: 1060px) {
  .look08 {
    padding-bottom: 100px;
  }
}
.look08__img01 {
  position: relative;
}
@media (min-width: 1061px) {
  .look08__credit {
    bottom: 130px;
    left: 0;
    transform: translateX(-110%);
  }
}
@media (max-width: 1060px) {
  .look08__credit {
    position: absolute;
    bottom: calc(-520 / 375 * 100vw);
    left: 0;
  }
}
@media (min-width: 1061px) {
  .look08__number {
    top: 60px;
    right: -80px;
  }
}
@media (max-width: 1060px) {
  .look08__number {
    bottom: calc(-460 / 375 * 100vw);
    right: 0;
  }
}

/* allitems */
.allitems {
  display: grid;
  place-items: center;
  background-color: #fff;
  padding: 204px var(--thumbnail-size) 174px;
}
@media (max-width: 1060px) {
  .allitems {
    position: relative;
    z-index: 102;
    padding: 120px 0 200px;
  }
}
.allitems__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.allitems__link:hover .allitems__imgs > picture:first-child {
  transform: rotate(-3deg);
}
.allitems__link:hover .allitems__title::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
.allitems__imgs {
  position: relative;
  width: 361px;
  aspect-ratio: 361 / 515;
}
@media (max-width: 1060px) {
  .allitems__imgs {
    width: 150px;
  }
}
.allitems__imgs > picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.allitems__imgs > picture:first-child {
  transition: transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 2;
  transform: rotate(-6deg);
}
.allitems__title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 1060px) {
  .allitems__title {
    gap: 10px;
    width: 138px;
    margin-top: 24px;
  }
}
.allitems__title::after {
  content: "";
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.3s;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.allitems__text {
  margin-top: 21px;
  font-size: 15px;
  letter-spacing: -0.1em;
}
@media (max-width: 1060px) {
  .allitems__text {
    margin-top: 10px;
    font-size: 10px;
  }
}

/* modal */
.modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
}
.modal__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.modal__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 80px;
}
@media (max-width: 1060px) {
  .modal__content {
    padding-bottom: 58px;
  }
}
.modal__slider-container {
  flex: 1;
  position: relative;
  height: calc(100% - 236px);
}
.modal__title {
  padding: 90px 40px 30px;
}
.modal-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
  overflow: hidden;
}
[data-modal] img {
  transition: transform 0.25s ease-out;
}
[data-modal]:hover img {
  transform: scale(1.05);
}
.modal-slide {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  overflow: visible !important;
}
.modal-slide picture {
  display: flex;
  justify-content: center;
  width: auto;
  height: 100%;
}
.modal-slide__body {
  position: relative;
  width: fit-content;
  height: 100%;
}
@media (max-width: 1060px) {
  .modal-slide__body {
    display: flex;
    flex-direction: column;
    gap: 10vh;
  }
  .modal-slide__body picture {
    height: 60vh;
  }
}
.modal-slide__credit {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.is-active .modal-slide__credit {
  opacity: 1;
}
@media (min-width: 1061px) {
  .modal-slide__credit {
    position: absolute;
    bottom: 0;
    right: -20px;
    transform: translateX(100%);
    line-height: calc(30 / 16);
  }
}
@media (max-width: 1060px) {
  .modal-slide__credit {
    font-size: 11px;
    line-height: calc(20 / 11);
  }
  .modal-slide__credit a {
    font-size: 12px;
  }
}

.modal__close {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 100%;
  height: 80px;
  background: linear-gradient(#d7d5ef 0%, rgba(255, 255, 255, 0) 100%);
  font-size: 16px;
}
@media (max-width: 1060px) {
  .modal__close {
    height: 38px;
    font-size: 10px;
  }
}

.modal__prev,
.modal__next {
  position: absolute;
  z-index: 10;
  width: 100px;
  color: var(--color-red);
  font-size: 14px;
}
@media (min-width: 1061px) {
  .modal__prev,
  .modal__next {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1060px) {
  .modal__prev,
  .modal__next {
    bottom: 26%;
    width: 55px;
    font-size: 11px;
  }
}
.modal__prev::before,
.modal__next::before {
  bottom: auto;
  top: -8px;
}
.modal__prev {
  left: 16%;
}
@media (max-width: 1060px) {
  .modal__prev {
    left: 9%;
  }
}
.modal__next {
  right: 16%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1060px) {
  .modal__next {
    right: 9%;
  }
}

[data-item-display="1"] > span {
  display: none;
}
