@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  a:hover {
    filter: brightness(1.12);
  }
}

button {
  transition: all 0.25s ease-out;
}
@media (hover: hover) {
  button:hover {
    filter: brightness(1.12);
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_rock {
  overflow: hidden;
}

a[target=_blank]:not([data-platform])::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

:root {
  --color-green-bg: #9AD2CF;
  --color-orange: #D16F4C;
  --color-orange-light: #F74F31;
  --color-dark: #121212;
  --color-black: black;
  --color-white: white;
  --color-gray-darker: #EDEDED;
  --color-gray-bg: #F7F7F7;
}

body {
  font-family: "Yu Gothic Pr6N D";
}

#header pre,
#footer pre {
  white-space: pre-line;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: drop-shadow(0 4px 13px rgba(0, 0, 0, 0.18));
}
.header.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (min-width: 48rem) {
  .header {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  }
}

.cover {
  position: relative;
  padding-block: 2.5rem 3.2rem;
  background-color: var(--color-gray-bg);
}
.cover .hobonichi {
  position: absolute;
  top: 1.3rem;
  right: 1.9rem;
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 275%;
  letter-spacing: 0.05em;
}
.cover .logo img,
.cover h1 img {
  width: 100%;
  height: auto;
}
.cover .logo {
  width: min(52.2666666667%, 19.6rem);
  margin: 0 0 2.1rem 5.3333333333%;
}
.cover .tile {
  width: 81.3333333333%;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-inline: auto;
}
.cover .tile img {
  display: block;
}
.cover h1 {
  width: min(59.7333333333%, 22.4rem);
  margin: 2.3rem 0 4.6rem 8.5333333333%;
}
.cover .yodogawa {
  width: min(85.6%, 43rem);
  margin-inline: auto;
  color: var(--color-dark);
  font-size: 1.5rem;
  line-height: 186.667%;
  text-align: justify;
}
.cover .yodogawa br {
  display: none;
}
.cover .yodogawa a {
  color: var(--color-orange-light);
}
.cover .yodogawa p + p {
  margin-top: 2em;
}
@media (min-width: 48rem) {
  .cover {
    display: grid;
    grid-template-areas: "tile logo" "tile h1" "tile yodogawa";
    grid-template-columns: 20rem auto;
    grid-template-rows: 1fr auto auto;
    gap: 0 4.6762589928%;
    padding: 9.6rem 0 9.5rem 8.0687830688%;
  }
  .cover .hobonichi {
    grid-area: hobonichi;
  }
  .cover .logo {
    grid-area: logo;
    width: 19rem;
    margin: 0;
  }
  .cover h1 {
    grid-area: h1;
    width: 30.3rem;
    margin: 5.1rem 0;
  }
  .cover .tile {
    grid-area: tile;
    grid-template-columns: 1fr;
    gap: 1.7rem;
    width: 100%;
    margin-inline: unset;
  }
  .cover .yodogawa {
    grid-area: yodogawa;
    margin-inline: unset;
  }
  .cover .yodogawa br {
    display: block;
  }
  .cover .hobonichi {
    top: 6.3rem;
    left: 8.0687830688%;
    right: unset;
  }
}
@media (width > 1000px) {
  .cover {
    grid-template-columns: 50% 50%;
  }
  .cover .tile {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 75rem) {
  .cover {
    grid-template-columns: 56.9784172662% 42.7338129496%;
  }
  .cover .tile {
    grid-template-columns: repeat(2, 1fr);
  }
}

[data-anim=cover] .tile img {
  opacity: 0;
  transition: opacity 1s linear;
}
[data-anim=cover] .tile picture:first-of-type {
  background-color: rgb(from var(--color-gray-darker) r g b/95%);
}
[data-anim=cover] .tile picture:nth-of-type(2) {
  background-color: rgb(from var(--color-gray-darker) r g b/55%);
}
[data-anim=cover] .tile picture:nth-of-type(2) img {
  transition-delay: 0.75s;
}
[data-anim=cover] .tile picture:nth-of-type(3) {
  background-color: rgb(from var(--color-gray-darker) r g b/75%);
}
[data-anim=cover] .tile picture:nth-of-type(3) img {
  transition-delay: 0.5s;
}
[data-anim=cover] .tile picture:last-of-type {
  background-color: rgb(from var(--color-gray-darker) r g b/85%);
}
[data-anim=cover] .tile picture:last-of-type img {
  transition-delay: 0.25s;
}
[data-anim=cover] h1,
[data-anim=cover] .yodogawa p {
  opacity: 0;
  transition: opacity 1s linear;
}
[data-anim=cover] h1 {
  transition-delay: 1s;
}
[data-anim=cover] .yodogawa p:first-of-type {
  transition-delay: 1.25s;
}
[data-anim=cover] .yodogawa p:nth-of-type(2) {
  transition-delay: 1.5s;
}
[data-anim=cover] .yodogawa p:last-of-type {
  transition-delay: 1.75s;
}
[data-anim=cover].in-view .tile img {
  opacity: 1;
}
[data-anim=cover].in-view h1,
[data-anim=cover].in-view .yodogawa p {
  opacity: 1;
}

.main {
  background-color: var(--color-gray-bg);
}

.credit {
  display: block;
  padding-block: 4rem;
  font-family: "Ishii Chu Gothic M";
  font-size: 1.3rem;
  line-height: 1.5384615385;
  text-align: center;
}
@media (min-width: 48rem) {
  .credit {
    padding-block: 5.4rem;
  }
}

.preface {
  padding-block: 4rem;
  color: var(--color-dark);
  background-color: var(--color-green-bg);
}
.preface p {
  width: min(85.3333333333%, 44.5rem);
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 186.667%;
  text-align: justify;
}
.preface small {
  display: block;
  margin-top: 2em;
  font-size: inherit;
}
.preface br {
  display: none;
}
@media (min-width: 48rem) {
  .preface {
    padding-block: 7.3rem 7.2rem;
  }
  .preface small {
    margin-top: 4em;
  }
  .preface br {
    display: block;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-header {
  position: relative;
  container: card-header/inline-size;
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  aspect-ratio: 375/190;
  overflow: hidden;
}
.card-header > * {
  grid-area: stack;
}
.card-header img {
  width: 100%;
  max-width: unset;
  height: auto;
}
.card-header h2 {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  line-height: 131.818%;
  letter-spacing: 0.21em;
}
.card-header svg {
  flex: none;
  width: 1.7rem;
  aspect-ratio: 1;
  height: auto;
  margin-right: 1.4rem;
}
.card-01 .card-header h2 {
  left: 8%;
  bottom: 8.4210526316%;
  letter-spacing: 0.0855555556em;
}
.card-02 .card-header h2 {
  right: 6.4%;
  top: 6.8421052632%;
  align-items: baseline;
}
.card-03 .card-header h2 {
  left: 9.3333333333%;
  bottom: 13.6842105263%;
}
@media (min-width: 48rem) {
  .card-header {
    aspect-ratio: 1512/350;
    margin-bottom: 8rem;
  }
  .card-header h2 {
    font-size: min(2.380952381vw, 3.6rem);
  }
  @supports (font-size: 1cqi) {
    .card-header h2 {
      font-size: min(3cqi, 3.6rem);
    }
  }
  .card-header h2 {
    letter-spacing: 0.14em;
  }
  .card-header svg {
    width: min(8vw, 3rem);
  }
  @supports (width: 1cqi) {
    .card-header svg {
      width: min(2.75cqi, 3rem);
    }
  }
  .card-header svg {
    margin-right: 1.7rem;
  }
  .card-01 .card-header h2 {
    left: 8.0687830688%;
    bottom: 18.5714285714%;
    letter-spacing: 0.14em;
  }
  .card-02 .card-header h2 {
    right: 3.3068783069%;
    top: 11.4285714286%;
    align-items: center;
  }
  .card-02 .card-header h2 br {
    display: none;
  }
  .card-03 .card-header h2 {
    left: 8.0687830688%;
    bottom: 6.8571428571%;
  }
}
@container card-header (width > 1420px) {
  .card-02 .card-header h2 {
    right: 8.0026455026%;
    top: 20.8571428571%;
  }
}

.card-video {
  --video-play: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33 49" fill="none"><path d="M0 49V0L33 26.0638L0 49Z" fill="currentColor"/></svg>');
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem 0;
  width: min(100%, 60rem);
}
.card-video:has(img) .wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.7rem;
  height: 4.1rem;
  background-color: var(--color-white);
  mask-image: var(--video-play);
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
.card-video .wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 560/315;
}
.card-video .wrap video,
.card-video .wrap iframe,
.card-video .wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-video .para {
  width: min(85.3333333333%, 48rem);
}
.card-video p {
  font-size: 1.6rem;
  line-height: 166%;
}
.card-video br {
  display: none;
}
@media (min-width: 48rem) {
  .card-video {
    gap: 4rem 0;
  }
  .card-video::after {
    width: 3.3rem;
    height: 4.9rem;
  }
  .card-video p {
    line-height: 162%;
  }
  .card-video br {
    display: block;
  }
}

.card-fig {
  position: relative;
  width: min(100%, 60rem);
  margin-block: 3.3rem 3.2rem;
}
.card-fig img {
  width: 100%;
  height: auto;
}
.card-fig figcaption {
  position: absolute;
  left: 7.2%;
  right: 9.3333333333%;
  bottom: 19.3548387097%;
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  font-size: 2.4rem;
}
@media (min-width: 48rem) {
  .card-fig {
    margin-block: 5.7rem -2.6rem;
  }
  .card-fig figcaption {
    left: 9%;
    right: 8.8333333333%;
    bottom: 18.3431952663%;
    font-size: 3.4rem;
  }
}

.card-point {
  container: card-point/inline-size;
  display: grid;
  gap: 2.4rem 1.6rem;
  width: min(86.1333333333%, 101.3rem);
  margin-block: 3.2rem 4.5rem;
  padding: 3.05rem 2.4rem;
  border-radius: 4rem;
  border: 2.5px dashed var(--color-black);
}
.card-point h3 {
  text-align: center;
}
.card-point h3 img {
  display: inline-block;
}
.card-point picture {
  width: 100%;
}
.card-point picture img {
  width: 100%;
  height: auto;
}
.card-point p {
  font-size: 1.6rem;
  line-height: 162%;
}
.card-point .para-block img + p {
  margin-top: 2.4rem;
}
.card-point .para-block p + img {
  margin-top: 2.4rem;
}
.card-point .picture-block {
  display: none;
}
.card-point br {
  display: none;
}
@media (min-width: 48rem) {
  .card-point {
    grid-template-columns: auto 50.747986191%;
    margin-block: 9.6rem;
    padding: 5.35rem min(4.5965608466vw, 6.95rem);
  }
  @supports (padding: 1cqi) {
    .card-point {
      padding: 5.35rem min(5cqi, 6.95rem);
    }
  }
  .card-point h3 {
    grid-column: 1/3;
    margin-bottom: 0.4rem;
    text-align: left;
  }
  .card-point br {
    display: block;
  }
  .card-point .para-block img + p {
    margin-top: 2em;
  }
  .card-point .para-block img {
    display: none;
  }
  .card-point .picture-block {
    display: grid;
    gap: 2.4rem 0;
  }
}

.thoughts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem 0;
  padding-block: 5.6rem 4.8rem;
  background-color: var(--color-gray-darker);
}
.thoughts-header {
  display: flex;
  gap: 0 1.1rem;
  width: min(85.3333333333%, 101.3rem);
  padding: 0 0 1.6rem 0.8rem;
  border-bottom: 1px solid currentColor;
}
.thoughts img {
  width: 8rem;
  height: auto;
  aspect-ratio: 1;
}
.thoughts h3 {
  align-self: end;
  font-size: 1.6rem;
  line-height: 162%;
  white-space: nowrap;
}
.thoughts p {
  width: min(85.3333333333%, 43.4rem);
  font-size: 1.6rem;
  line-height: 162%;
  text-align: justify;
}
.thoughts p br {
  display: none;
}
@media (min-width: 48rem) {
  .thoughts {
    gap: 3.6rem 0;
    padding-block: 8.3rem;
  }
  .thoughts-header {
    gap: 0 2.4rem;
    padding: 0 0 1.4rem;
  }
  .thoughts-header::before {
    content: "";
    display: block;
    width: 14.6100691017%;
    height: 100%;
  }
  .thoughts img {
    width: 10rem;
  }
  .thoughts h3 {
    align-self: center;
    font-size: 2rem;
  }
  .thoughts h3 br {
    display: none;
  }
  .thoughts p br {
    display: block;
  }
}

[data-anim=card-header] img {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.1);
  transition: opacity 0.75s ease, filter 1.5s ease, transform 1s ease;
}
[data-anim=card-header] h2 {
  opacity: 0;
  transition: opacity 1s 0.5s ease;
}
[data-anim=card-header].in-view img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
[data-anim=card-header].in-view h2 {
  opacity: 1;
}

[data-anim=fade] {
  opacity: 0;
  transition: opacity 1s linear;
}
[data-anim=fade].in-view {
  opacity: 1;
}

.event {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(86.9333333333%, 81rem);
  margin: 4rem auto 0;
  padding-block: 2.7rem 3.5rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  background-color: var(--color-green-light, #93CDCA);
  border: 3px solid var(--color-dark);
}
.event h2 {
  align-self: start;
  padding-left: 7.5%;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.event-poster {
  margin-block: 2.5rem 2.4rem;
}
.event-poster img {
  width: 100%;
  height: auto;
}
.event-logo {
  width: min(41.5625%, 16.7rem);
  height: auto;
}
.event .date-location {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  width: min(81.875%, 35rem);
  margin-block: 2.4rem 3rem;
}
.event .date-location .date img {
  display: block;
  width: 100%;
  height: auto;
}
.event .date-location p {
  font-size: 2rem;
  line-height: 197.5%;
}
.event .para {
  width: min(85.625%, 38rem);
  font-size: 1.5rem;
  line-height: 186.6666666667%;
}
.event .para br {
  display: none;
}
.event a {
  color: var(--color-orange-light);
}
@media (min-width: 48rem) {
  .event {
    margin: 9.6rem auto 0;
  }
  .event h2 {
    font-size: 2.88rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .event h2 .s-only {
    display: none;
  }
}
@media (min-width: 75rem) {
  .event {
    padding-block: 4.3rem 4.7rem;
  }
  .event h2 {
    font-size: 3.6rem;
    letter-spacing: 0.04em;
  }
  .event-poster {
    margin-block: 4.3rem 4.6rem;
  }
  .event .date-location {
    align-items: center;
    gap: 1.7rem 0;
    margin-block: 2.4rem 6.6rem;
  }
  .event .date-location p {
    font-size: 2.2rem;
    line-height: 179.545%;
  }
  .event .para {
    font-size: 1.8rem;
    line-height: 155.556%;
  }
  .event .para p + p {
    margin-block: 1.5em;
  }
}

.aside {
  --aside-bg: #B7C0C1;
  padding-block: 5.3rem 4.5rem;
  background-color: var(--aside-bg);
}
.aside .related-contents-section {
  margin-bottom: 6.9rem;
}
.aside .related-product-section {
  padding-block: 0;
}
.aside .related-contents-section:not(:has(li:nth-child(2))) .swiper-button-next {
  display: none;
}
@media (min-width: 48rem) {
  .aside {
    padding-block: 9.6rem 12.3rem;
  }
  .aside .related-contents-section {
    margin-bottom: 6rem;
  }
}

.swiper-wrapper {
  height: fit-content;
  padding: 0;
}
.swiper .swiper-button-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
  margin-top: 1.5rem;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  position: relative;
  width: 3.2rem;
  height: 2rem;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="21" height="10" viewBox="0 0 21 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.0076 8.5592H0" stroke="black" stroke-width="1.5"/%3E%3Cpath d="M19.5277 8.87402L12.5986 1" stroke="black" stroke-width="1.5"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}
.swiper .swiper-button-next {
  --swiper-navigation-sides-offset: 2.8rem;
}
.swiper .swiper-button-prev {
  --swiper-navigation-sides-offset: calc(3.2rem * 0.32);
}
.swiper .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.swiper .swiper-button-disabled {
  opacity: 0;
}
@media (min-width: 67rem) {
  .swiper .swiper-button-next {
    --swiper-navigation-sides-offset: calc(3.2rem * 0.32);
  }
}

.related-contents-section {
  --color-black: black;
  width: 100%;
  padding-left: 2.8rem;
  background-color: var(--color-rcs-bg, #B7C0C1);
}
.related-contents-section h3 {
  margin-bottom: 3rem;
  padding-bottom: 0.4rem;
  font-size: 2.4rem;
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.03em;
  border-bottom: 1.5px solid var(--color-black);
}
@media (min-width: 67rem) {
  .related-contents-section {
    padding-inline: calc((100% - 102rem) / 2);
  }
}

.related-contents {
  margin-inline: auto;
}
.related-contents a {
  color: var(--color-black);
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  .related-contents a:hover {
    opacity: 1;
    filter: brightness(1.12);
  }
}
.related-contents .swiper-wrapper {
  height: auto;
}

.related-content {
  display: block;
}
.related-content img {
  border: var(--border, 1.5px solid var(--color-black));
}
.related-content h4 {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 142.857%;
}
@media (min-width: 600px) {
  .related-content h4 {
    margin-top: 1.6rem;
  }
}

.related-product-section {
  --color-black: black;
  --color-white: white;
  width: 100%;
  padding-block: var(--rps-padding-block, 0 min(14.9333333333vw, 9.6rem));
  padding-left: 2.8rem;
  background-color: var(--color-rps-bg, #B7C0C1);
}
.related-product-section h3 {
  margin-bottom: 3rem;
  padding-bottom: 0.4rem;
  font-size: 2.4rem;
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.03em;
  border-bottom: 1.5px solid #000;
}
@media (min-width: 67rem) {
  .related-product-section {
    padding-inline: calc((100% - 102rem) / 2);
  }
}

.related-product {
  margin-inline: auto;
}
.related-product a {
  color: var(--color-black);
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  .related-product a:hover {
    opacity: 1;
    filter: brightness(1.12);
  }
}
.related-product .swiper .brand,
.related-product .swiper .name,
.related-product .swiper .price small {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  letter-spacing: 0.02em;
}
.related-product .swiper .brand {
  font-size: 1rem;
  line-height: 160%;
}
.related-product .swiper .name {
  font-size: 1.2rem;
  line-height: 133.3333333333%;
}
.related-product .swiper .price {
  font-family: "bebas-neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 200%;
  letter-spacing: 0.03em;
}
.related-product .swiper .price:last-child {
  margin-top: 0.8rem;
}
@media (min-width: 67rem) {
  .related-product .swiper .price {
    font-size: 1.2rem;
  }
}
.related-product figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0.8rem;
  border: var(--border, 1px solid var(--color-black));
}
.related-product figure figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 8.5333333333vw;
  background-color: rgba(0, 0, 0, 0.4);
}
.related-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-product .price-wrap {
  margin-top: 0.8rem;
}
.related-product .price-wrap small {
  font-size: 1rem;
}
@media (min-width: 37.5rem) {
  .related-product figure figcaption {
    font-size: min(3vw, 2rem);
  }
}

@keyframes arrow-tap-next {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  68% {
    transform: translateX(32%);
  }
  76% {
    transform: translateX(0);
  }
  84% {
    transform: translateX(24%);
  }
  92% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrow-tap-prev {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  68% {
    transform: translateX(-32%);
  }
  76% {
    transform: translateX(0);
  }
  84% {
    transform: translateX(-24%);
  }
  92% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}