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

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

:root {
  --color-green: #AFD6D4;
  --color-gray: #B7C0C1;
  --color-gray-light: #EAEAEA;
  --color-orange: #D16F4C;
  --color-white: white;
  --color-black: black;
}

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

.preface {
  padding-block: var(--preface-pad, 3rem 5rem);
  background-color: var(--color-green);
}
.preface .logo {
  display: block;
  width: min(29.3333333333%, 15rem);
  height: auto;
  margin-left: 8.5333333333%;
}
.preface h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69.8666666667%;
  aspect-ratio: 1;
  border: 2px solid var(--color-black);
}
.preface h1 img {
  width: 26.3565891473%;
  height: auto;
}
.preface .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.6rem min(5%, 11rem);
  margin-block: 6.8rem 4.3rem;
}
.preface .group h1,
.preface .group .yodogawa {
  flex: none;
}
@media (min-width: 48rem) {
  .preface {
    --preface-pad: 9.8rem 6.4rem;
  }
  .preface h1 {
    width: min(45%, 44rem);
    margin-block: 0;
  }
  .preface h1 img {
    width: 20.4128440367%;
  }
  .preface .group {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-block: 6.8rem 11.2rem;
  }
}
@media (min-width: 75rem) {
  .preface .logo {
    width: 19rem;
  }
  .preface .group {
    gap: 0 11rem;
  }
  .preface .yodogawa {
    margin-top: 1.1rem;
  }
}
@media (width > 1440px) {
  .preface .group {
    margin-block: 0.7rem 11.2rem;
    padding-left: 8.2671957672%;
  }
}

.yodogawa {
  width: 85.3333333333%;
}
.yodogawa p {
  font-family: "Yu Gothic Pr6N D";
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}
.yodogawa p + p {
  margin-top: 2em;
}
.yodogawa br {
  display: none;
}
@media (min-width: 48rem) {
  .yodogawa {
    width: max-content;
  }
  .yodogawa br {
    display: block;
  }
}

.toc {
  width: min(100%, 118rem);
  margin-inline: auto;
  padding-inline: 2.4rem;
}
.toc ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, 26.2rem);
  justify-content: center;
  gap: 2.4rem 4.8rem;
}
.toc ul a {
  display: grid;
  grid-template-columns: 9.5rem auto;
  width: 100%;
  padding: 1.6rem 1rem;
  background-color: var(--color-gray);
  clip-path: polygon(0% 0%, 91.2213740458% 0%, 100% 12.8378378378%, 100% 100%, 0% 100%);
}
.toc ul h3 {
  grid-column: span 2;
  margin-bottom: 0.6rem;
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1;
}
.toc ul h4 {
  align-self: end;
  padding-left: 1.5rem;
  font-family: "Koburina Gothic W6 JIS2004";
  line-height: 1;
}
.toc ul h4 span {
  display: block;
}
.toc ul h4 .title {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.toc ul h4 .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
}
.toc ul h4::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 0.95rem;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 21 9" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20.0908 7.87402L19.5283 8.36914L18.9648 8.86426L12.0352 0.990234L13.1621 0L20.0908 7.87402ZM17.0078 8.80469H0V7.30469H17.0078V8.80469Z"/%3E%3C/svg%3E');
  mask-repeat: no-repeat;
}
.toc ul h4::after {
  margin-top: 1.1rem;
}
@media (min-width: 48rem) {
  .toc ul {
    justify-content: start;
  }
}
@media (min-width: 75rem) {
  .toc {
    padding-inline: 0;
  }
}

[data-watch=cover] img {
  opacity: 0;
  filter: blur(10px);
  transition: all 1s ease-out;
}
[data-watch=cover] .yodogawa p {
  opacity: 0;
  transition: opacity 1s var(--anim-delay, 0s) ease-out;
}
[data-watch=cover] .yodogawa p:nth-of-type(1) {
  --anim-delay: 0.25s;
}
[data-watch=cover] .yodogawa p:nth-of-type(2) {
  --anim-delay: 0.5s;
}
[data-watch=cover] .yodogawa p:nth-of-type(3) {
  --anim-delay: 0.75s;
}
[data-watch=cover] .yodogawa p:nth-of-type(4) {
  --anim-delay: 1s;
}
[data-watch=cover].in-view img {
  opacity: 1;
  filter: blur(0);
}
[data-watch=cover].in-view p {
  opacity: 1;
}

[data-watch=toc] li {
  opacity: 0;
  transition: opacity 1s var(--anim-delay, 0s) ease-out;
}
[data-watch=toc] li:nth-of-type(1) {
  --anim-delay: 0.25s;
}
[data-watch=toc] li:nth-of-type(2) {
  --anim-delay: 0.5s;
}
[data-watch=toc] li:nth-of-type(3) {
  --anim-delay: 0.75s;
}
[data-watch=toc].in-view li {
  opacity: 1;
}

[data-watch=picture] {
  opacity: 0;
  transition: opacity 1s var(--anim-delay, 0s) ease-out;
}
[data-watch=picture].in-view {
  opacity: 1;
}

.main {
  background-color: var(--color-green);
}
.main:has(.preface) .preface {
  --preface-pad: 3rem 4.8rem;
}
@media (min-width: 48rem) {
  .main:has(.preface) .preface {
    --preface-pad: 9.8rem 16.3rem;
  }
}

.content-header {
  background-image: linear-gradient(transparent var(--chb-pos), var(--color-gray-light) var(--chb-pos));
}
.content-header .layout {
  width: min(100%, 118rem);
  margin-inline: auto;
}
.content-header .body {
  width: min(89.0666666667%, 90.7rem);
  padding: 2.7rem min(10.6382978723%, 4rem) 6.6rem;
  background-color: var(--color-gray);
}
.content-header .body h2 {
  margin-bottom: 1.3rem;
}
.content-header .body h2 .review {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 1;
}
.content-header .body h2 .from {
  display: flex;
  align-items: baseline;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.9rem;
  line-height: 1.7894736842;
}
.content-header .body h2 .from .name {
  font-size: 0.9473684211em;
}
.content-header .body h2 .from small {
  font-size: 0.7894736842em;
}
.content-header .body p,
.content-header .body button {
  font-family: "Yu Gothic Pr6N D";
  font-size: 1.5rem;
  line-height: 1.6;
}
.content-header .body p a {
  color: var(--color-orange);
}
.content-header .body button {
  width: 100%;
  justify-content: space-between;
  margin-top: 1.8rem;
}
.content-header .body br:not(.s-also) {
  display: none;
}
.content-header picture {
  width: 100%;
  margin-top: -4.4rem;
  pointer-events: none;
}
.content-header picture img {
  width: min(66.6666666667%, 30rem);
  height: auto;
  margin-left: auto;
}
@media (min-width: 32.5rem) {
  .content-header .body button {
    width: fit-content;
    justify-content: start;
  }
}
@media (min-width: 48rem) {
  .content-header {
    background-image: none;
  }
  .content-header .layout {
    position: relative;
    background-image: linear-gradient(to top, var(--color-gray-light) var(--chb-pos), transparent var(--chb-pos));
  }
  .content-header .layout::before {
    content: "";
    position: absolute;
    top: 0;
    left: -14.0677966102%;
    display: block;
    width: 14.0677966102%;
    height: 100%;
    background-color: var(--color-gray);
  }
  .content-header .body {
    padding-block: 6.2rem 5.6rem;
  }
  .content-header .body h2 {
    margin-bottom: 4rem;
  }
  .content-header .body h2 .review {
    font-size: 4rem;
  }
  .content-header .body h2 .from .name {
    font-size: 1.0526315789em;
  }
  .content-header .body p + p {
    margin-top: 1.5em;
  }
  .content-header .body br:not(.s-also) {
    display: block;
  }
  .content-header picture {
    position: absolute;
    right: 5%;
    bottom: var(--chb-picture-y, -7.3rem);
  }
  .content-header picture img {
    width: min(43.6604189636%, 39.6rem);
  }
}
@media (min-width: 75rem) {
  .content-header .body {
    padding-inline: 13.3406835722% 0;
  }
  .content-header picture {
    right: 14.7457627119%;
  }
}

.profile-button {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  color: var(--color-orange);
}
.profile-button::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 0.95rem;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 21 9" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20.0908 7.87402L19.5283 8.36914L18.9648 8.86426L12.0352 0.990234L13.1621 0L20.0908 7.87402ZM17.0078 8.80469H0V7.30469H17.0078V8.80469Z"/%3E%3C/svg%3E');
  mask-repeat: no-repeat;
}

.profile-dialog {
  width: min(93.3333333333vw, 50rem);
  max-width: unset;
  padding: min(12vw, 9.3rem) min(8vw, 8rem) min(22.6666666667vw, 9.2rem);
  line-height: 180%;
}
.profile-dialog h3 {
  margin-bottom: 1.4444444444em;
  font-size: 1.8rem;
  line-height: 144.444%;
}
.profile-dialog h3:not(.brand-title) {
  font-family: "Yu Mincho Pr6N D";
  letter-spacing: -0.01em;
}
.profile-dialog .brand-title {
  font-family: "Yu Gothic Pr6N D";
}
.profile-dialog p {
  font-size: 1.3rem;
  line-height: 200%;
  white-space: pre-line;
  font-feature-settings: "halt" on;
}
.profile-dialog p + p {
  margin-top: 1rem;
}
.profile-dialog ul {
  margin-top: 1em;
  font-size: 1.3rem;
}
.profile-dialog a {
  color: var(--link);
}
.profile-dialog .view-items {
  margin-top: 1.6rem;
}
.profile-dialog .dialog-close {
  position: absolute;
  right: min(7.2vw, 2.7rem);
  bottom: min(6.6666666667vw, 2.5rem);
  display: block;
  width: min(10.6666666667vw, 4rem);
  height: min(10.6666666667vw, 4rem);
  border: var(--border);
  border-radius: 50%;
  background: url('data:image/svg+xml,%3Csvg viewBox="0 0 17 17" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M16.9932 1.53027L9.79199 8.73145L16.9922 15.9316L15.9316 16.9922L8.73145 9.79199L1.53125 16.9922L0.470703 15.9316L7.66992 8.73047L0.469727 1.53027L1.53027 0.469727L8.73047 7.66992L15.9316 0.469727L16.9932 1.53027Z" /%3E%3C/svg%3E') center/min(4.5333333333vw, 1.7rem) no-repeat;
}
@media (min-width: 48rem) {
  .profile-dialog .brand-title {
    margin-bottom: 1.0909090909em;
    font-size: 2.2rem;
    line-height: 118.182%;
  }
  .profile-dialog .view-items {
    margin-top: 4rem;
  }
  .profile-dialog p {
    font-feature-settings: unset;
  }
  .profile-dialog .dialog-close {
    right: 2.9rem;
    bottom: 3.2rem;
  }
}

.content-body {
  --content-space: 3.2rem;
  --content-pad: 4.2rem 5.8rem;
  display: flex;
  flex-direction: column;
  gap: var(--content-space) 0;
  align-items: center;
  width: min(100%, 118rem);
  margin-inline: auto;
  padding-block: var(--content-pad);
  font-family: "Ishii Chu Gothic M";
  background-color: var(--color-gray-light);
}
.content-body .heading,
.content-body .para {
  width: min(85.3333333333%, 45rem);
}
.content-body .heading h2 {
  line-height: 160%;
  font-size: 2rem;
}
.content-body .heading h2 .sup,
.content-body .heading h2 .note {
  font-size: 0.5em;
}
.content-body .heading h2 .sup {
  vertical-align: 30%;
}
.content-body .heading h2 .note {
  display: block;
  text-align: right;
  line-height: 1.6;
}
.content-body .para p {
  font-size: 1.5rem;
  line-height: 1.6;
}
.content-body .para p span:not([class]) {
  display: block;
}
.content-body .para p + p {
  margin-top: 2em;
}
.content-body .para br:not(.s-also) {
  display: none;
}
.content-body .picture img {
  width: min(80vw, 45rem);
}
.content-body a {
  color: var(--color-orange);
}
@media (min-width: 48rem) {
  .content-body {
    --content-space: 4rem;
    --content-pad: 14.1rem 16.2rem;
  }
  .content-body .heading,
  .content-body .para {
    padding-left: 1.95rem;
  }
  .content-body .heading {
    margin-bottom: 1.4rem;
  }
  .content-body .heading h2 {
    margin-bottom: 2.2rem;
    font-size: 2.6rem;
    line-height: 130.769%;
  }
  .content-body .heading h2 .sup,
  .content-body .heading h2 .note {
    font-size: 0.4615384615em;
  }
  .content-body .para br:not(.s-also) {
    display: block;
  }
}

.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 {
  aspect-ratio: 1;
  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);
  }
}
.aside {
  --aside-bg: var(--color-green);
  padding-block: 6.8rem 6.5rem;
  background-color: var(--aside-bg);
}
.aside .related-contents-section {
  --color-rcs-bg: transparent;
  margin-bottom: 14rem;
}
.aside .related-product-section {
  --color-rps-bg: transparent;
  padding-block: 0;
}
@media (min-width: 48rem) {
  .aside {
    padding-block: 11.3rem 12rem;
  }
  .aside .related-contents-section {
    margin-bottom: 9.8rem;
  }
}

.content-header {
  --chb-pos: 39.1363022942%;
  --chb-picture-y: -6.5rem;
}
@media (min-width: 48rem) {
  .content-header {
    --chb-pos: min(43.8983050847%, 25.9rem);
  }
}

.content-body .heading h2 {
  margin-bottom: 0.6rem;
}
.content-body .picture.pair {
  display: grid;
  grid-template-columns: 46.4912280702% 50.2923976608%;
  justify-content: space-between;
  width: min(91.2vw, 89.8rem);
}
.content-body .picture.pair img {
  width: 100%;
}
.content-body .picture.pair picture:last-of-type {
  --anim-delay: 0.5s;
}
@media (width >= 375px) {
  .content-body .heading h2 {
    white-space: nowrap;
  }
  .content-body .heading h2 .note {
    padding-right: 1em;
  }
}
@media (min-width: 48rem) {
  .content-body .heading h2 {
    white-space: nowrap;
  }
  .content-body .heading h2 .note {
    padding-right: 1.5em;
  }
  .content-body .picture.pair {
    grid-template-columns: 46.3251670379% 50.1113585746%;
  }
}

@media (width >= 600px) {
  .related-contents .swiper .swiper-button-next {
    display: none;
  }
}