@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;
}

:root {
  --color-green: #028B6D;
  --color-green-dark: #00514D;
  --color-gray: #EDEDED;
  --color-orange: #F74F31;
  --color-black: black;
}

#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));
  }
}

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

.intro {
  font-family: "Koburina Gothic W3 JIS2004";
}
.intro-wrap {
  display: grid;
  grid-template-columns: 71.4666666667% auto;
  gap: 3.2rem 5.6%;
  padding-block: 2.8rem 5.6rem;
}
.intro-logo {
  width: 19.6rem;
  margin: 0 0 3.2rem 8.2666666667vw;
}
.intro-logo img {
  width: 100%;
  height: auto;
}
.intro-photos {
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}
.intro-photos picture {
  overflow: hidden;
}
.intro-photos img {
  width: 100%;
  height: auto;
}
.intro .hobonichi {
  display: block;
  margin: 0 5.0666666667vw 2.4rem 0;
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: right;
}
.intro h1 {
  writing-mode: tb-rl;
}
.intro h1 .h1-sub {
  display: flex;
  align-items: center;
  font-size: min(4.2666666667vw, 2.1rem);
  letter-spacing: 0.25em;
}
.intro h1 .h1-sub::after {
  content: "";
  display: block;
  width: 1px;
  height: 13.8rem;
  margin-top: 0.9rem;
  background-color: currentColor;
}
.intro h1 .h1-main {
  display: block;
  margin-right: 0.5em;
  font-size: min(6.4vw, 3.4rem);
  letter-spacing: 0.25em;
}
.intro h1 .quotation-marks {
  position: relative;
  padding-inline: 0.5em 0.25em;
}
.intro h1 .quotation-marks span {
  position: absolute;
  writing-mode: initial;
}
.intro h1 .quotation-marks .open {
  right: -0.55em;
  top: 0;
}
.intro h1 .quotation-marks .close {
  left: -0.55em;
  bottom: 0;
  transform: scale(-1);
}
.intro-body {
  grid-column: span 2;
  justify-self: center;
  width: min(88vw, 49.2rem);
}
.intro-body br {
  display: none;
}
.intro-body p {
  font-size: 1.6rem;
  line-height: 175%;
}
.intro-body p + p {
  margin-top: 2em;
}
@media (min-width: 48rem) {
  .intro {
    width: min(100%, 116.3rem);
  }
  .intro-wrap {
    grid-template-columns: 39.8968185727% 42.3043852107% auto;
    gap: unset;
    padding: 7.4rem 2.5795356836% 8.1rem 5.1590713672%;
  }
  .intro-logo {
    width: 19rem;
    margin: 0 0 1.6rem 0;
  }
  .intro .hobonichi {
    margin: 0;
  }
  .intro-heading {
    justify-self: end;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .intro h1 .h1-sub::after {
    margin-top: 1.5rem;
  }
  .intro h1 .h1-main {
    margin-right: 0.8235294118em;
  }
  .intro-body {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: end;
    width: 100%;
    padding-left: 11.3821138211%;
  }
  .intro-body p {
    container: intro-text/inline-size;
  }
  @container intro-text (width > 360px) {
    .intro-body br {
      display: block;
    }
  }
}

.tips {
  --tips-gap: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 48rem) {
  .tips {
    --tips-gap: 7.2rem;
  }
}

.tips-cover {
  position: relative;
  aspect-ratio: 375/190;
  overflow: hidden;
}
.tips-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tips-cover h2 {
  position: absolute;
  font-size: 5.8666666667vw;
  line-height: 159.091%;
  letter-spacing: 0.16em;
}
.tips-01 .tips-cover h2 {
  left: 7.4666666667%;
  bottom: 14.2105263158%;
}
.tips-02 .tips-cover h2 {
  right: 5.0666666667%;
  bottom: 8.4210526316%;
}
@media (min-width: 48rem) {
  .tips-cover {
    aspect-ratio: 1512/315;
  }
  .tips-cover h2 {
    font-size: min(2.7777777778vw, 4.2rem);
    line-height: 100%;
    letter-spacing: 0.16em;
  }
  .tips-01 .tips-cover h2 {
    left: 20.8333333333%;
    bottom: 20.9523809524%;
  }
  .tips-02 .tips-cover h2 {
    right: 15.873015873%;
    bottom: 12.380952381%;
  }
}

.tips-nav {
  width: min(85.3333333333%, 32rem);
  margin-block: var(--tips-gap);
}
.tips-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
}
.tips-nav li {
  display: flex;
  width: fit-content;
}
.tips-nav li:nth-of-type(odd):last-of-type {
  margin-left: 25%;
}
.tips-nav a {
  display: grid;
  justify-items: center;
  gap: 0.8rem 0;
  width: fit-content;
  height: fit-content;
  font-family: "Yu Gothic Pr6N D";
  font-size: 1.8rem;
  line-height: 194.444%;
}
.tips-nav a small {
  display: flex;
  gap: 0 0.25em;
  font-size: 1.5rem;
  line-height: 180%;
  letter-spacing: 0.015em;
}
@media (hover: hover) {
  .tips-nav a:hover {
    color: var(--color-orange);
  }
}
.tips-nav img {
  width: min(36.2666666667vw, 13.6rem);
  height: auto;
}
.tips-nav .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 0.6rem;
}
.tips-nav .arrow::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.4rem;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml,<svg viewBox="0 0 26 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.674255 0.738525L12.1743 11.2385L0.674255 21.7385" stroke="black" stroke-width="2"/><path d="M12.6743 0.738525L24.1743 11.2385L12.6743 21.7385" stroke="black" stroke-width="2"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
}
.tips-nav a:has(small) .arrow {
  flex-direction: column;
}
@media (min-width: 48rem) {
  .tips-nav {
    width: max-content;
  }
  .tips-nav ul {
    gap: 0 min(4.828042328vw, 7.3rem);
  }
  .tips-nav li:nth-of-type(odd):last-of-type {
    margin-left: 0;
  }
  .tips-nav .s-only {
    display: none;
  }
  .tips-nav img {
    width: 16rem;
  }
  .tips-nav a {
    font-size: 2.4rem;
    line-height: 134.615%;
  }
  .tips-nav a small {
    font-size: 1.8rem;
    line-height: 135%;
    letter-spacing: 0.03em;
  }
  .tips-nav .arrow::after {
    width: 2.4rem;
    height: 2.2rem;
  }
}
@media (min-width: 56rem) {
  .tips-nav a {
    font-size: 2.6rem;
  }
  .tips-nav a small {
    font-size: 2rem;
  }
}

.tips-advice {
  width: min(86.6666666667%, 85.7rem);
  margin-bottom: var(--tips-gap);
  padding: 2.2rem 1.95rem 2rem 1.75rem;
  color: var(--color-green);
  border: 1.5px solid currentColor;
}
.tips-advice p {
  font-family: "Yu Gothic Pr6N D";
  font-size: 1.5rem;
  line-height: 146.667%;
  text-align: justify;
}
@media (min-width: 48rem) {
  .tips-advice {
    padding: 4.8rem 11.0851808635% 4.9rem;
  }
}

.tips-note {
  width: 100%;
  padding-block: 3.2rem 3.4rem;
  color: var(--color-green-dark);
  font-family: "Yu Gothic Pr6N D";
  background-color: var(--color-gray);
}
.tips-note .note-wrap {
  width: min(88%, 86rem);
  margin-inline: auto;
}
.tips-note h2 {
  margin-bottom: 2rem;
}
.tips-note h2 .h2-sub {
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 132%;
}
.tips-note h2 .h2-main {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.17em;
  line-height: 132%;
}
.tips-note .note-block {
  display: flex;
  flex-wrap: wrap;
}
.tips-note .note-block + .note-block {
  margin-top: 3.9rem;
}
.tips-note h3 {
  order: 1;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1888888889em;
  writing-mode: tb;
}
.tips-note p {
  order: 3;
  width: 100%;
  font-size: 1.6rem;
  line-height: 162%;
  text-align: justify;
}
.tips-note p br {
  display: none;
}
.tips-note figure {
  display: flex;
  justify-content: end;
  align-items: end;
  order: 2;
}
@media (min-width: 48rem) {
  .tips-note .note-wrap {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: auto 10.4651162791%;
  }
  .tips-note h2 {
    order: 3;
    justify-self: end;
    writing-mode: tb-rl;
    margin-bottom: 0;
  }
  .tips-note h2 .h2-sub {
    font-size: 2rem;
    letter-spacing: 0.275em;
  }
  .tips-note h2 .h2-main {
    margin-right: 0.5416666667em;
    font-size: 2.4rem;
    letter-spacing: 0.2916666667em;
  }
  .tips-note .note-block {
    display: grid;
    grid-template-columns: max-content auto;
    align-items: end;
  }
  .tips-note .note-block + .note-block {
    margin-top: 2.2rem;
  }
  .tips-note h3 {
    grid-column: 1/3;
    margin: 0;
    font-size: 2rem;
    line-height: 132%;
    writing-mode: initial;
  }
  .tips-note p {
    order: 2;
    align-self: start;
  }
  .tips-note p br {
    display: block;
  }
  .tips-note figure {
    order: 3;
  }
}

.tips-note-01 h3 {
  margin: 0 0 3.1rem 11.8181818182%;
}
.tips-note-01 p {
  margin-top: 1.9rem;
}
.tips-note-01 figure {
  margin-left: 11.8181818182%;
}
@media (min-width: 48rem) {
  .tips-note-01 {
    padding-block: 6.9rem 13.5rem;
  }
  .tips-note-01 .note-body {
    padding-block: 8.8rem 3.4rem;
  }
  .tips-note-01 .note-body img {
    width: 23.3rem;
    height: auto;
  }
  .tips-note-01 h3 {
    margin: 0;
  }
  .tips-note-01 figure {
    margin: 0 20% 0 0;
  }
  .tips-note-01 p {
    margin-block: 3rem 3.4rem;
  }
}

.tips-note-02 .note-block p {
  margin-top: 3.2rem;
}
.tips-note-02 .note-block:first-of-type h3 {
  margin: 0 0 0.8rem 11.2121212121%;
}
.tips-note-02 .note-block:first-of-type figure {
  margin-left: 10.6060606061%;
}
.tips-note-02 .note-block:nth-of-type(2) h3 {
  order: 2;
  align-self: end;
  margin: 0 10% 2rem auto;
}
.tips-note-02 .note-block:nth-of-type(2) figure {
  order: 1;
  margin-left: 3.0303030303%;
}
@media (min-width: 48rem) {
  .tips-note-02 {
    padding-block: 11.2rem 9.7rem;
  }
  .tips-note-02 .note-block p {
    margin-top: 3.2rem;
  }
  .tips-note-02 .note-block:first-of-type h3 {
    margin: 0;
  }
  .tips-note-02 .note-block:first-of-type figure {
    margin: 0 25% 0 0;
  }
  .tips-note-02 .note-block:first-of-type p {
    margin-bottom: 7.4rem;
  }
  .tips-note-02 .note-block:nth-of-type(2) h3 {
    order: 1;
    margin: 0;
  }
  .tips-note-02 .note-block:nth-of-type(2) figure {
    order: 3;
    margin: 0 15% 0 0;
  }
}

.techniques {
  --technique-gap: 5.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--technique-gap) 0;
  padding-block: 5rem var(--technique-gap);
}
.techniques + .techniques {
  padding-block: var(--technique-gap) 0;
  border-top: 1px solid var(--color-black);
}
@media (min-width: 48rem) {
  .techniques {
    --technique-gap: 12rem;
    padding-top: 15.7rem;
  }
  .techniques + .techniques {
    padding-top: var(--technique-gap);
  }
}

.how-to {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: "Yu Gothic Pr6N D";
}
.how-to h2, .how-to-text {
  width: min(88%, 60rem);
}
.how-to .video {
  width: min(100%, 60rem);
}
.how-to h2 {
  margin-bottom: 1.6rem;
}
.how-to h2 .h2-main,
.how-to h2 .h2-sub {
  display: block;
}
.how-to h2 .h2-main {
  font-size: 2rem;
  line-height: 175%;
  letter-spacing: 0.16em;
}
.how-to h2 .h2-sub {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
}
.how-to h2:has(.h2-main .s-only) .h2-sub {
  line-height: 218.75%;
}
.how-to h2:has(.h2-main .s-only) .h2-main {
  line-height: 120%;
}
.how-to-text {
  margin-bottom: 2.4rem;
}
.how-to p {
  font-size: 1.5rem;
  line-height: 180%;
  text-align: justify;
}
.how-to p br {
  display: none;
}
.how-to a {
  color: var(--color-orange);
}
.how-to .video {
  margin-bottom: 2.4rem;
}
.how-to .video div.video-wrapper {
  aspect-ratio: 560/315;
}
.how-to .video img,
.how-to .video iframe,
.how-to .video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.how-to .video figcaption {
  margin: 0.8rem 0 0 6.4%;
  font-family: "Koburina Gothic W3 JIS2004";
  font-size: 1.2rem;
  line-height: 133.333%;
}
.how-to .video a {
  display: block;
}
@media (min-width: 48rem) {
  .how-to h2 {
    margin-bottom: 2.4rem;
  }
  .how-to h2 .h2-main {
    font-size: 2.6rem;
    line-height: 134.615%;
    letter-spacing: 0.16em;
  }
  .how-to h2 .h2-sub {
    margin-top: 0.8rem;
    font-size: 1.8rem;
    line-height: 194.444%;
    letter-spacing: 0.16em;
  }
  .how-to h2:has(.h2-main .s-only) .h2-sub {
    line-height: 194.444%;
  }
  .how-to h2:has(.h2-main .s-only) .h2-main {
    line-height: 134.615%;
  }
  .how-to h2 .s-only {
    display: none;
  }
  .how-to .video {
    margin-bottom: 4rem;
  }
  .how-to .video figcaption {
    margin: 0.5rem 0 0 0;
    line-height: 225%;
  }
  .how-to .video a {
    display: inline-block;
  }
  .how-to-text {
    margin-bottom: 4.8rem;
  }
  .how-to-text p {
    padding-left: 15.5%;
  }
  .how-to p br {
    display: block;
  }
}

.point {
  width: min(88%, 91.2rem);
  border: 2.5px dashed var(--color-black);
  border-radius: 3rem;
}
.point-content {
  padding: 2.7rem 2.6rem 3.6rem 2.4rem;
}
.point h3 {
  margin-bottom: 1.6rem;
}
.point h3 img {
  margin-inline: auto;
}
.point .picture {
  width: min(100%, 43rem);
  margin-bottom: 1.6rem;
}
.point .picture img {
  width: 100%;
  height: auto;
}
@media (min-width: 56rem) {
  .point-content {
    display: grid;
    grid-template-columns: auto 58.4239130435%;
    padding: 6.4rem 7.3464912281% 5.8rem 9.7587719298%;
  }
  .point h3 {
    grid-column: 1/3;
    margin-bottom: 2.7rem;
  }
  .point h3 img {
    width: 9.9rem;
    height: auto;
    margin: 0;
  }
  .point .picture {
    grid-column: 2;
  }
  .point p {
    grid-column: 1;
    grid-row: 2;
  }
  .point:has(.fig-02) .point-content {
    display: flex;
    flex-direction: column;
  }
}

.fig-01 {
  display: flex;
  gap: 0 3.2rem;
  margin-top: 2.1rem;
  padding-left: 34.2424242424%;
}
.fig-01 figcaption {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 168.75%;
  text-align: center;
}
@media (min-width: 48rem) {
  .fig-01 {
    margin-top: 2.4rem;
    gap: 0 4.5rem;
    padding-left: 44%;
  }
  .fig-01 img {
    width: 7.9rem;
    height: auto;
  }
  .fig-01 figcaption {
    margin-top: 2.1rem;
  }
}

.point .fig-02 {
  width: min(100%, 43rem);
  margin-bottom: 1.6rem;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(6, 1fr);
}
.point .fig-02 figure {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 88/147;
}
.point .fig-02 figure:nth-of-type(4), .point .fig-02 figure:nth-of-type(5) {
  grid-column: span 3;
  aspect-ratio: 135/147;
}
.point .fig-02 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point .fig-02 figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.9rem;
  font-size: 1.6rem;
  line-height: 168.75%;
  text-align: center;
}
@media (min-width: 56rem) {
  .point .fig-02 {
    order: 3;
    gap: 0 0.7rem;
    grid-template-columns: repeat(5, 1fr);
    margin-block: 2.2rem 0;
    width: min(100%, 69.6rem);
  }
  .point .fig-02 figure {
    grid-column: unset;
    aspect-ratio: 133/250;
  }
  .point .fig-02 figure:nth-of-type(4), .point .fig-02 figure:nth-of-type(5) {
    grid-column: unset;
    aspect-ratio: 133/250;
  }
  .point .fig-02 figure figcaption {
    bottom: 1.3rem;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blur-in {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
[data-watch=cover] .h1-sub,
[data-watch=cover] .h1-main,
[data-watch=cover] .intro-body p,
[data-watch=cover] .intro-photos img {
  opacity: 0;
}
[data-watch=cover].in-view .intro-photos picture:first-of-type img {
  animation-delay: 0.1s;
}
[data-watch=cover].in-view .intro-photos picture:last-of-type img {
  animation-delay: 1s;
}
[data-watch=cover].in-view .intro-photos img {
  animation: fade-in-scale 1.5s ease forwards;
}
[data-watch=cover].in-view .h1-sub,
[data-watch=cover].in-view .h1-main {
  animation: blur-in 2s ease-in-out forwards;
}
[data-watch=cover].in-view .h1-sub {
  animation-delay: 1.1s;
}
[data-watch=cover].in-view .h1-main {
  animation-delay: 1.6s;
}
[data-watch=cover].in-view .intro-body p {
  animation: fade-in 2s ease-in-out forwards;
}
[data-watch=cover].in-view .intro-body p:nth-of-type(1) {
  animation-delay: 1.85s;
}
[data-watch=cover].in-view .intro-body p:nth-of-type(2) {
  animation-delay: 2.2s;
}
[data-watch=cover].in-view .intro-body p:nth-of-type(3) {
  animation-delay: 2.55s;
}

[data-watch=title] picture,
[data-watch=title] h2 {
  opacity: 0;
}
[data-watch=title].in-view picture {
  animation: fade-in-scale 1.2s linear forwards;
}
[data-watch=title].in-view h2 {
  animation: blur-in 1.2s 0.75s ease forwards;
}

[data-watch=content] h2,
[data-watch=content] .note-block {
  opacity: 0;
}
[data-watch=content].in-view h2,
[data-watch=content].in-view .note-block {
  animation: fade-in 1s linear forwards;
}
[data-watch=content].in-view .note-block:nth-of-type(1) {
  animation-delay: 0.75s;
}
[data-watch=content].in-view .note-block:nth-of-type(2) {
  animation-delay: 1.25s;
}

.credit {
  padding-block: 4rem;
  font-family: "Ishii Chu Gothic M";
  font-size: 1.3rem;
  line-height: 153.846%;
}
@media (min-width: 48rem) {
  .credit {
    padding-block: 15.6rem;
  }
}

.related-product-section {
  --rps-padding-block: 11.6rem min(14.9333333333vw, 9.6rem);
}
@media (min-width: 48rem) {
  .related-product-section {
    --rps-padding-block: 10.7rem min(14.9333333333vw, 9.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-product-section {
  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: leading(16, 12);
}
.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: 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);
  }
}