@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@0;1&family=Shippori+Mincho&display=swap');
/* reset */
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, img, ins, kbd, q, s, samp, small, strike, 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;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
* {
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", "Shippori Mincho", serif;
  font-weight: 400;
  background: #121212;
}
#wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}
/*-------------------------------------------

=cards

-------------------------------------------*/
.cards {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100vh;
  padding: 2vw;
}
.card {
  flex: 1;
  aspect-ratio: 5 / 8;
  position: relative;
  overflow: hidden;
}
.card .main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .thumb {
  position: absolute;
  width: 9vw;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  top: 0;
  left: 0;
  transform: translate(0px, 0px) translate(-50%, -50%) scale(0);
  will-change: transform;
}
@media (hover: none) {
  .card .thumb {
    top: auto;
    left: auto;
    right: 10px;
    bottom: 10px;
    transform: scale(1);
  }
}
@media (max-width: 1024px) {
  .card .thumb {
    width: 24%;
  }
}
@media (max-width: 599px) {
  .cards {
    flex-direction: column;
    height: auto;
  }
  .card {
    width: 100%;
  }
}