@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  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button {
  margin: 0;
  padding: 0;
}

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

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;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

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

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
}

body.scroll_rock {
  overflow: hidden;
}

:root {
  --color-white: #ffffff;
  --text-black: #414141;
}

body {
  font-family: "Gothic Medium BBB";
  color: var(--text-black);
}

.footer {
  --footer-pad: 3.4375rem 14.1333333333vw 2.1875rem;
  --footer-bg-color: #5B5B5B;
  --share-gap: 1.125rem;
  --share-icon-gap: 1.5rem;
  --f-hobo-mar: 1.625rem 0 2.8125rem;
  --f-fs: 0.875rem;
  --f-copy-fs: 0.5625rem;
  --f-hobo-lh: 168.5%;
  --f-hobo-ls: 1.96px;
  --f-copy-ls: 0.9px;
  --f-share-ls: 1.96px;
  --banner-mb: 2.0625rem;
  position: relative;
  font-family: "Koburina Gothic W6 JIS2004";
  display: flex;
  flex-direction: column;
  padding: var(--footer-pad);
  color: #F1F1F1;
  background-color: var(--footer-bg-color);
}
.footer-banner {
  width: min(100%, 54.25rem);
  margin-bottom: var(--banner-mb);
}
.footer-banner img {
  width: 100%;
  height: auto;
}
.footer-share {
  display: flex;
  gap: var(--share-gap);
  align-items: center;
}
.footer-share ul {
  display: flex;
  gap: var(--share-icon-gap);
  align-items: center;
}
.footer-share-title {
  font-size: var(--f-fs);
  letter-spacing: var(--f-share-ls);
}
.footer-hobo {
  margin: var(--f-hobo-mar);
  font-size: var(--f-fs);
  line-height: var(--f-hobo-lh);
  letter-spacing: var(--f-hobo-ls);
}
.footer-copyright {
  font-size: var(--f-copy-fs);
  letter-spacing: var(--f-copy-ls);
}
@media (min-width: 48rem) {
  .footer {
    --footer-pad: 6.875rem 0 4.625rem;
    --share-gap: 1.75rem;
    --share-icon-gap: 1.5625rem;
    --f-hobo-mar: 1.5rem 0 1.125rem;
    --f-fs: 1.125rem;
    --f-copy-fs: 0.75rem;
    --f-hobo-lh: normal;
    --f-hobo-ls: 1.26px;
    --f-copy-ls: 1.2px;
    --f-share-ls: 1.26px;
    --banner-mb: 4.0625rem;
    align-items: center;
  }
  .footer-banner {
    padding-inline: 1rem;
  }
  .footer-hobo ul {
    display: flex;
  }
  .footer-hobo li {
    display: flex;
  }
  .footer-hobo li:not(:last-of-type):after {
    content: "／";
  }
}

.pagination {
  --contents-pad: 1.875rem;
  --arrow-size: 2.375rem;
  --table-size: 3.4375rem;
  --table-fs: 0.6875rem;
  --table-h: 9rem;
  --arrow-pad: 0.4375rem;
  --pagination-color: #353535;
  width: min(100%, 53.125rem);
  margin-inline: auto;
  color: var(--pagination-color);
  border-top: 0.5px solid currentColor;
  border-bottom: 0.5px solid currentColor;
}
.pagination ul {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, 34.1875rem);
  height: var(--table-h);
  margin: 0 auto;
  padding: var(--contents-pad);
  font-size: var(--table-fs);
  letter-spacing: 0.7px;
}
.pagination li,
.pagination a {
  height: 100%;
}
.pagination a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.pagination a:before {
  content: "";
  display: block;
  background-color: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.pagination a.is-hidden {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.pagination-table:before {
  width: var(--table-size);
  height: var(--table-size);
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85 85" fill="none"><path d="M25 27H61" stroke="%23414141" stroke-width="0.5"/><path d="M25 42.5H61" stroke="%23414141" stroke-width="0.5"/><path d="M25 58H61" stroke="%23414141" stroke-width="0.5"/><circle cx="42.5" cy="42.5" r="41.5" stroke="%23414141" stroke-width="0.5"/></svg>');
}
.pagination-prev, .pagination-next {
  padding-top: var(--arrow-pad);
}
.pagination-prev:before, .pagination-next:before {
  width: var(--arrow-size);
  height: var(--arrow-size);
}
.pagination-prev:before {
  mask-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"><path d="M22.0001 42.9999L1.00015 22L22.0001 1.00008" stroke="%23414141" stroke-width="0.5"/></svg>');
  mask-position: left center;
}
.pagination-next:before {
  mask-image: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"><path d="M0.999924 1.00008L21.9998 22L0.999924 42.9999" stroke="%23414141" stroke-width="0.5"/></svg>');
  mask-position: right center;
}
@media (min-width: 48rem) {
  .pagination {
    --contents-pad: 1.5625rem 0;
    --arrow-size: 2.75rem;
    --table-size: 5.1875rem;
    --table-fs: 0.875rem;
    --table-h: 9.875rem;
    --arrow-pad: 1.25rem;
  }
}

.product-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-line-header {
  width: min(100%, 34.5rem);
}
.product-line-header h2 {
  --line-h-mb: 2.4375rem;
  --line-h-fs: 1.125rem;
  --line-h-lh: 2.0625rem;
  --line-h-date-pad: 0 0.9375rem;
  margin-bottom: var(--line-h-mb);
  color: var(--product-line-color, #5B5B5B);
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--line-h-fs);
  letter-spacing: 0.0466666667em;
  line-height: normal;
}
.product-line-header h2 .date {
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
  padding: var(--line-h-date-pad);
  color: var(--product-line-text-color, white);
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--line-h-fs);
  line-height: var(--line-h-lh);
  background-color: var(--product-line-color, #5B5B5B);
}
.product-line-header p {
  margin-bottom: 1.5625rem;
  color: var(--product-line-para, var(--theme-black));
  font-size: 0.875rem;
  line-height: 192%;
  letter-spacing: 0.05em;
}
.product-line-header p br {
  display: none;
}
@media (min-width: 32rem) {
  .product-line-header h2 br {
    display: none;
  }
}
@media (min-width: 48rem) {
  .product-line-header h2 {
    --line-h-fs: 1.5rem;
    --line-h-lh: 2.25rem;
    --line-h-date-pad: 0 0.875rem;
  }
  .product-line-header p {
    margin-bottom: 3.1875rem;
    font-size: 1rem;
  }
  .product-line-header p br {
    display: block;
  }
}

.product-lineup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(5.3125rem / 2) 5.9701492537%;
  width: min(100%, 34.5rem);
}
@media (min-width: 48rem) {
  .product-lineup {
    gap: 5.3125rem 7.2463768116%;
  }
}

.product {
  --gap: 1rem;
  --lh: 158.5%;
  --copy-fs: 0.75rem;
  --copy-ls: -0.18px;
  --copy-br: none;
  --name-fs: 1rem;
  --name-ls: -0.24px;
  --size-fs: 0.75rem;
  --size-ls: -0.18px;
  --type-fs: 0.875rem;
  --type-ls: -0.21px;
  --price-fs: 1.3125rem;
  --price-ls: 1.47px;
  --tax-fs: 0.6875rem;
  --tax-ls: 0.385px;
  --button-fs: 0.875rem;
  --button-ls: 0.7px;
  --button-h: 2rem;
  color: #414141;
  container: product/inline-size;
}
.product .image {
  width: 100%;
  height: auto;
  background-color: #E8EBEE;
}
.product-detail {
  display: grid;
  gap: var(--gap) 0;
}
.product .copy {
  font-family: "Yu Gothic Pr6N M";
  font-size: var(--copy-fs);
  line-height: var(--lh);
  letter-spacing: var(--copy-ls);
}
.product .copy br {
  display: var(--copy-br);
}
.product .copy {
  white-space: pre-line;
}
.product .name {
  font-family: "Yu Gothic Pr6N D";
  font-size: var(--name-fs);
  line-height: var(--lh);
  letter-spacing: var(--name-ls);
}
.product .size {
  display: block;
  font-family: "Yu Gothic Pr6N M";
  font-size: var(--size-fs);
  line-height: var(--lh);
  letter-spacing: var(--size-ls);
}
.product .price {
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--price-fs);
  line-height: normal;
  letter-spacing: var(--price-ls);
}
.product .inc-tax {
  font-size: var(--tax-fs);
  line-height: normal;
  letter-spacing: var(--tax-ls);
}
.product .button {
  width: 100%;
  max-width: 12rem;
  margin-top: var(--gap);
  display: block;
  color: #ffffff;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--button-fs);
  line-height: var(--button-h);
  letter-spacing: var(--button-ls);
  text-align: center;
  background-color: #B77EAE;
  border-radius: calc(var(--button-h) / 2);
}
.product .urikire {
  display: none;
  font-size: 0.75rem;
  font-family: "Koburina Gothic W6 JIS2004";
}
.product .urikire.active {
  display: block;
  margin-top: 0.3125rem;
  color: #C790BB;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.product .splide__pagination {
  position: relative;
  bottom: unset;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.1875rem;
  margin-block: 1rem;
  padding: 0;
}
.product .splide:not(.is-overflow) .splide__pagination {
  display: block;
}
.product .splide__pagination__page {
  width: 1.0625rem;
  height: 1.0625rem;
  margin: 0;
  opacity: 1;
  box-shadow: 0 0 0 0.2px #DBDBDB, 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.product .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: inherit;
  box-shadow: 0 0 0 0.2px #DBDBDB, 0 0 0 4px #ffffff, 0px 0px 4px 4px rgba(0, 0, 0, 0.3);
}
@container product (width > 200px) {
  .product .name br:first-of-type {
    display: none;
  }
}
@media (min-width: 48rem) {
  .product {
    --gap: 0.8125rem;
    --copy-fs: 0.9375rem;
    --copy-ls: -0.225px;
    --copy-br: block;
    --name-fs: 1.125rem;
    --name-ls: -0.18px;
    --button-fs: 1rem;
    --button-ls: 0.8px;
    --button-h: 2.1875rem;
  }
  .product .urikire {
    font-size: 0.9375rem;
  }
}

:root {
  --tsuki26-1: #5B5B5B;
  --tsuki26-7-1: #ECF7F9;
  --tsuki26-9-1: #566E62;
}

.cover {
  padding-block: 3.6875rem;
  background-color: var(--color-white);
}
.cover .wrapper {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
}
.cover .wrapper > * {
  grid-area: stack;
}
.cover .wrapper {
  align-items: center;
  justify-items: center;
}
@media (min-width: 48rem) {
  .cover {
    padding-block: 5rem;
  }
}

.header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32%;
  aspect-ratio: 120/363;
}
.header img {
  width: 100%;
  height: auto;
}
.header .logo,
.header .h1 {
  opacity: 0;
  visibility: hidden;
}
.header.in-view .logo {
  animation: fade-in 1.5s 1s ease-out forwards;
}
.header.in-view .h1 {
  animation: fade-in 1.5s 1.5s ease-out forwards;
}
.header .logo {
  width: 95.8333333333%;
}
.header .h1 {
  width: 100%;
}
@media (min-width: 48rem) {
  .header {
    flex-direction: row;
    width: 62.1527777778%;
    aspect-ratio: 895/145;
  }
  .header .logo {
    width: 19.1061452514%;
  }
  .header .h1 {
    width: 20.2234636872%;
    margin-top: 8.0446927374%;
  }
}

.decker {
  --total-duration: 12s;
  --delay: 0s;
  position: relative;
  aspect-ratio: var(--cover-ar, 375/582);
  display: grid;
  grid-template-areas: "decker";
}
.decker picture {
  grid-area: decker;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: decker var(--total-duration) var(--delay) linear infinite;
  backface-visibility: hidden;
}
.decker picture:nth-of-type(1) {
  --delay: 0s;
}
.decker picture:nth-of-type(2) {
  --delay: 3s;
}
.decker picture:nth-of-type(3) {
  --delay: 6s;
}
.decker picture:nth-of-type(4) {
  --delay: 9s;
}
.decker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 48rem) {
  .decker {
    --cover-ar: 1440 / 780;
  }
}

@keyframes decker {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  12.50% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  25.00% {
    opacity: 1;
  }
  37.50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.main {
  overflow: hidden;
  background-color: var(--color-white);
}

.afterword {
  padding-bottom: 3.75rem;
  background-color: var(--color-white);
}

@media (min-width: 48rem) {
  .afterword {
    padding-bottom: 7.5rem;
  }
}
.yodogawa {
  width: min(84%, 24.1875rem);
  margin-inline: auto;
  padding-block: 3.125rem;
  color: var(--tsuki26-1);
}
.yodogawa h2 {
  margin-bottom: 1.25rem;
  font-family: "A1 Mincho R JIS2004 AP", serif;
  font-size: 1.875rem;
  line-height: 1.62;
  letter-spacing: 0.05em;
  word-break: keep-all;
}
.yodogawa p + p {
  margin-top: 2em;
}
.yodogawa p {
  font-size: 1rem;
  line-height: 1.92;
  letter-spacing: 0.05em;
}
.yodogawa p br {
  display: none;
}
@media (min-width: 48rem) {
  .yodogawa {
    padding-block: 6.25rem 5rem;
  }
  .yodogawa h2 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
    line-height: 1.92;
  }
  .yodogawa p br {
    display: block;
  }
}
.yodogawa + .pagination {
  --pagination-color: var(--tsuki26-1);
}

.credit {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
  justify-items: center;
  width: 100%;
  aspect-ratio: 376/467;
  color: #ffffff;
}
.credit > * {
  grid-area: stack;
}
.credit h3 {
  position: relative;
  margin-bottom: 1.4375rem;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: 1.125rem;
  letter-spacing: 0.07em;
}
.credit ul {
  position: relative;
  display: grid;
  grid-template-columns: max-content auto;
  gap: 0 1.25rem;
  font-size: 1rem;
  line-height: 1.92;
  letter-spacing: 0.085em;
}
.credit li {
  grid-column: span 2;
  display: grid;
  grid-template-columns: subgrid;
}
.credit picture img {
  width: 100%;
  height: auto;
}
@media (min-width: 48rem) {
  .credit {
    justify-items: flex-start;
    aspect-ratio: 1440/610;
  }
  .credit-content {
    padding-left: 13.9583333333%;
  }
}

.sets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sets-space, 2.5rem) 0;
  padding-block: 2.5rem 5rem;
}
@media (min-width: 48rem) {
  .sets {
    --sets-space: 6.25rem;
    padding-block: 6.25rem;
  }
}

.sets {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sets .pair {
  display: grid;
  gap: 0.25rem;
}
.sets img {
  width: 100%;
  height: auto;
}
.sets figcaption {
  margin: 0.5rem 0 0 0.625rem;
  color: var(--tsuki26-1);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.625rem;
  line-height: 1.2802;
  letter-spacing: 0.08em;
}
@media (min-width: 48rem) {
  .sets .pair:not(.p0910) {
    grid-auto-flow: column;
  }
}
.p01 {
  width: min(67.4666666667%, 31.25rem);
  container-type: inline-size;
}
@container (width >= 31.25rem) {
  .p01 figcaption {
    margin-left: 0;
  }
}

.p02 {
  width: min(100%, 63.75rem);
  container-type: inline-size;
}
@container (width >= 63.75rem) {
  .p02 figcaption {
    margin-left: 0;
  }
}

.p03 {
  width: min(100%, 41.6875rem);
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p03 figcaption {
    margin-left: 0;
  }
}

.p06 {
  width: min(67.4666666667%, 31.25rem);
  container-type: inline-size;
}
@container (width >= 31.25rem) {
  .p06 figcaption {
    margin-left: 0;
  }
}

.p07 {
  width: min(100%, 63.75rem);
  container-type: inline-size;
}
@container (width >= 63.75rem) {
  .p07 figcaption {
    margin-left: 0;
  }
}

.p08 {
  width: min(100%, 41.6875rem);
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p08 figcaption {
    margin-left: 0;
  }
}

.p11 {
  width: min(100%, 39.1875rem);
  container-type: inline-size;
}
@container (width >= 39.1875rem) {
  .p11 figcaption {
    margin-left: 0;
  }
}

.p12 {
  width: min(100%, 63.75rem);
  container-type: inline-size;
}
@container (width >= 63.75rem) {
  .p12 figcaption {
    margin-left: 0;
  }
}

.p13 {
  width: min(100%, 33.3125rem);
  container-type: inline-size;
}
@container (width >= 33.3125rem) {
  .p13 figcaption {
    margin-left: 0;
  }
}

.p16 {
  width: min(100%, 41.6875rem);
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p16 figcaption {
    margin-left: 0;
  }
}

.p19 {
  width: min(100%, 41.6875rem);
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p19 figcaption {
    margin-left: 0;
  }
}

.p20 {
  width: min(100%, 63.75rem);
  container-type: inline-size;
}
@container (width >= 63.75rem) {
  .p20 figcaption {
    margin-left: 0;
  }
}

.p21 {
  width: min(100%, 63.75rem);
  container-type: inline-size;
}
@container (width >= 63.75rem) {
  .p21 figcaption {
    margin-left: 0;
  }
}

.p24 {
  width: min(100%, 41.6875rem);
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p24 figcaption {
    margin-left: 0;
  }
}

.p0405 {
  width: min(100%, 60.875rem);
}
.p0405 .p04 {
  width: 62.1333333333%;
}
.p0405 .p05 {
  width: 84%;
}
@media (min-width: 48rem) {
  .p0405 .p04 {
    width: 100%;
    margin-top: 0%;
  }
  .p0405 .p05 {
    width: 100%;
    margin-top: 40.5825242718%;
  }
  .p0405 {
    grid-template-columns: 46.5092402464% 52.8747433265%;
  }
}

.p1415 {
  width: min(100%, 66.9375rem);
}
.p1415 .p14 {
  width: 67.4666666667%;
}
.p1415 .p15 {
  width: 84%;
}
@media (min-width: 48rem) {
  .p1415 .p14 {
    width: 100%;
    margin-top: 0%;
  }
  .p1415 .p15 {
    width: 100%;
    margin-top: 0%;
  }
  .p1415 {
    grid-template-columns: 62.2782446312% 37.3482726424%;
  }
}

.p1718 {
  width: min(75.4666666667%, 62.625rem);
}
.p1718 .p17 {
  width: 89.3992932862%;
}
.p1718 .p18 {
  width: 89.3992932862%;
}
@media (min-width: 48rem) {
  .p1718 .p17 {
    width: 100%;
    margin-top: 0%;
  }
  .p1718 .p18 {
    width: 100%;
    margin-top: 18%;
  }
  .p1718 {
    grid-template-columns: 49.9001996008% 49.9001996008%;
  }
}

.p2223 {
  width: min(100%, 60.875rem);
}
.p2223 .p22 {
  width: 67.4666666667%;
}
.p2223 .p23 {
  width: 84%;
}
@media (min-width: 48rem) {
  .p2223 .p22 {
    width: 100%;
    margin-top: 0%;
  }
  .p2223 .p23 {
    width: 100%;
    margin-top: 40.4255319149%;
  }
  .p2223 {
    grid-template-columns: 46.5092402464% 53.0800821355%;
  }
}

.to-left {
  justify-self: start;
}

.to-right {
  justify-self: end;
}
.to-right figcaption {
  margin-left: 0;
}

.p0910 {
  width: min(100%, 62.5rem);
}
.p0910 .p10 {
  container-type: inline-size;
}
@container (width >= 62.5rem) {
  .p0910 .p10 figcaption {
    margin-left: 0;
  }
}

.p1415 .p15 {
  container-type: inline-size;
}
@container (width >= 41.6875rem) {
  .p1415 .p15 figcaption {
    margin-left: 0;
  }
}

@media (min-width: 48rem) {
  .p1415 {
    grid-template-areas: "first second";
  }
  .p1415 .p14 {
    grid-area: second;
  }
  .p1415 .p15 {
    grid-area: first;
    margin-top: 38.0809595202%;
  }
  .p05,
  .p15,
  .p18,
  .p23 {
    --t-delay: 0.25s;
  }
}
[data-anim=photo] {
  opacity: 0;
  transition: opacity 0.75s calc(var(--t-delay, 0s) + 0.35s);
}
[data-anim=photo].p09,
[data-anim=photo] .p15, [data-anim=photo].p19 {
  --t-delay: 0.25s;
}
[data-anim=photo].in-view {
  opacity: 1;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: 4.6875rem 3.125rem;
  background-color: var(--color-white);
}
@media (min-width: 48rem) {
  .products {
    --gap: 100px;
    padding-block: 8.75rem 6.25rem;
  }
}

.product-line {
  width: min(89.3333333333vw, 69.6875rem);
}
.product-line-header {
  --product-line-text-color: var(--tsuki26-7-1);
  --product-line-color: var(--tsuki26-9-1);
}
@media (min-width: 48rem) {
  .product-line-header h2 {
    --line-h-date-pad: 0 1.5rem;
    --line-h-mb: 2.4375rem;
  }
}

[data-item=signature26-tsuki_bra] .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #F1EBCB;
}
[data-item=signature26-tsuki_bra] .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #E034A6;
}
[data-item=signature26-tsuki_bra] .splide__pagination li:nth-of-type(3) .splide__pagination__page {
  background-color: #FFDF4F;
}
[data-item=signature26-tsuki_bra] .splide__pagination li:nth-of-type(4) .splide__pagination__page {
  background-color: #1A7A84;
}

[data-item=signature26-tsuki_shorts_everyday] .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #F1EBCB;
}
[data-item=signature26-tsuki_shorts_everyday] .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #E034A6;
}
[data-item=signature26-tsuki_shorts_everyday] .splide__pagination li:nth-of-type(3) .splide__pagination__page {
  background-color: #FFDF4F;
}
[data-item=signature26-tsuki_shorts_everyday] .splide__pagination li:nth-of-type(4) .splide__pagination__page {
  background-color: #1A7A84;
}

[data-item=signature26-tsuki_shorts_air] .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #F1EBCB;
}
[data-item=signature26-tsuki_shorts_air] .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #E034A6;
}
[data-item=signature26-tsuki_shorts_air] .splide__pagination li:nth-of-type(3) .splide__pagination__page {
  background-color: #FFDF4F;
}
[data-item=signature26-tsuki_shorts_air] .splide__pagination li:nth-of-type(4) .splide__pagination__page {
  background-color: #1A7A84;
}

[data-item=signature26-tsuki_shorts_midi] .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #F1EBCB;
}
[data-item=signature26-tsuki_shorts_midi] .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #1A7A84;
}

@media (min-width: 48rem) {
  .product[data-item=signature26-tsuki_shorts_midi] .name br {
    display: block;
  }
}

.product-figure {
  margin-bottom: 3.125rem;
  margin-inline: -5.3333333333vw;
}
.product-figure .fig {
  position: relative;
  width: 100%;
  aspect-ratio: 375/700;
  max-width: 26.25rem;
  display: grid;
  grid-template-areas: "stack";
}
.product-figure .fig > * {
  grid-area: stack;
}
.product-figure .fig + figure {
  margin-top: 2.4rem;
}
.product-figure .fig .fig-parts img {
  width: 100%;
  max-width: unset;
  height: auto;
}
.product-figure .fig h3 {
  container: fig/inline-size;
  margin-top: 7.7333333333%;
  text-align: center;
}
.product-figure .fig h3 span {
  color: #B77EAE;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: 5.3333333333cqi;
  line-height: 1.92;
  letter-spacing: 0.12em;
}
.product-figure .fig h3 small {
  display: block;
  font-size: 0.65em;
}
.product-figure .fig ul:not([class]) {
  container: fig/inline-size;
}
.product-figure .fig li[class*=fig-] {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--caption-fs, 3.7333333333cqi);
  line-height: 1.67;
  letter-spacing: 0.05em;
  font-feature-settings: "halt";
}
.product-figure .fig .ul-disc li {
  display: flex;
}
.product-figure .fig .ul-disc li::before {
  content: "・";
}
.product-figure .fig .l-only {
  display: none;
}
@media (min-width: 48rem) {
  .product-figure {
    margin-bottom: 5.75rem;
    margin-inline: 0;
  }
  .product-figure .fig {
    --caption-fs: 1.2556053812cqi;
    aspect-ratio: 1115/580;
    max-width: 69.6875rem;
  }
  .product-figure .fig h3 {
    margin: 3.9461883408% 0 0 4.4843049327%;
    text-align: left;
  }
  .product-figure .fig h3 span {
    font-size: 1.9618834081cqi;
    letter-spacing: 0.1188571429em;
  }
  .product-figure .fig h3 small {
    font-size: 0.6857142857em;
  }
  .product-figure .fig li {
    line-height: 1.92;
  }
  .product-figure .fig .l-only {
    display: block;
  }
  .product-figure .fig .s-only {
    display: none;
  }
}

.fig-1 .fig-parts {
  width: 88.2666666667%;
  height: auto;
  margin: 30.9333333333% 0 0 5.8666666667%;
}
.fig-1-1 {
  margin: 25.6% 0 0 15.2%;
}
.fig-1-2 {
  margin: 34.6666666667% 0 0 25.8666666667%;
}
.fig-1-3 {
  margin: 44.2666666667% 0 0 20%;
}
.fig-1-4 {
  margin: 120.5333333333% 0 0 17.0666666667%;
}
.fig-1-5 {
  margin: 131.7333333333% 0 0 18.9333333333%;
}
.fig-1-6 {
  margin: 162.1333333333% 0 0 22.4%;
}
@media (min-width: 48rem) {
  .fig-1 .fig-parts {
    width: 56.2331838565%;
    margin: 13.3183856502% 0 0 16.0538116592%;
  }
  .fig-1-1 {
    margin: 12.0179372197% 0 0 10.4035874439%;
  }
  .fig-1-2 {
    margin: 22.5112107623% 0 0 5.9192825112%;
  }
  .fig-1-3 {
    margin: 37.130044843% 0 0 9.0582959641%;
  }
  .fig-1-4 {
    margin: 45.0224215247% 0 0 36.3228699552%;
  }
  .fig-1-5 {
    margin: 20.5381165919% 0 0 69.6860986547%;
  }
  .fig-1-6 {
    margin: 31.6591928251% 0 0 72.8251121076%;
  }
  .fig-1-7 {
    margin: 8.1614349776% 0 0 39.6412556054%;
  }
  .fig-1-8 {
    margin: 13.5426008969% 0 0 70.2242152466%;
  }
}

.fig-2 {
  --caption-fs: 3.4666666667cqi;
}
.fig-2 .fig-parts {
  width: 86.5333333333%;
  height: auto;
  margin: 45.0666666667% 0 0 4.5333333333%;
}
.fig-2 h3 span {
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}
.fig-2-1 {
  margin: 33.6% 0 0 20.2666666667%;
}
.fig-2-2 {
  margin: 53.3333333333% 0 0 11.7333333333%;
}
.fig-2-3 {
  margin: 53.6% 0 0 49.8666666667%;
}
.fig-2-4 {
  margin: 128% 0 0 23.7333333333%;
}
.fig-2-5 {
  margin: 149.0666666667% 0 0 4.8%;
}
@media (min-width: 48rem) {
  .fig-2 {
    --caption-fs: 1.2556053812cqi;
  }
  .fig-2 .fig-parts {
    width: 54.6188340807%;
    margin: 11.3004484305% 0 0 18.2062780269%;
  }
  .fig-2-1 {
    margin: 15.9641255605% 0 0 5.8295964126%;
  }
  .fig-2-2 {
    margin: 39.4618834081% 0 0 5.4708520179%;
  }
  .fig-2-3 {
    margin: 6.2780269058% 0 0 41.8834080717%;
  }
  .fig-2-4 {
    margin: 28.0717488789% 0 0 5.4708520179%;
  }
  .fig-2-5 {
    margin: 18.2062780269% 0 0 71.6591928251%;
  }
}

.fig-3 {
  --caption-fs: 3.4666666667cqi;
}
.fig-3 .fig-parts {
  width: 83.3333333333%;
  height: auto;
  margin: 50% 0 0 6.4%;
}
.fig-3 h3 > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.4cqi;
}
.fig-3 h3 img {
  width: 13.8666666667cqi;
  height: 13.8666666667cqi;
}
.fig-3 h3 span {
  text-align: left;
}
.fig-3 h3 small {
  margin-top: -0.5em;
}
.fig-3-1 {
  margin: 38.4% 0 0 12%;
}
.fig-3-2 {
  margin: 56.2666666667% 0 0 41.3333333333%;
}
.fig-3-3 {
  margin: 131.7333333333% 0 0 12.5333333333%;
}
.fig-3-4 {
  margin: 148% 0 0 61.3333333333%;
}
.fig-3-5 {
  margin: 161.8666666667% 0 0 12%;
}
@media (min-width: 48rem) {
  .fig-3 {
    --caption-fs: 1.2556053812cqi;
  }
  .fig-3 .fig-parts {
    width: 48.6995515695%;
    margin: 11.3004484305% 0 0 28.7892376682%;
  }
  .fig-3 h3 > div {
    gap: 0 1.7937219731cqi;
    justify-content: start;
  }
  .fig-3 h3 img {
    width: 8.0717488789cqi;
    height: 8.0717488789cqi;
  }
  .fig-3 h3 small {
    margin-top: 0;
  }
  .fig-3-1 {
    margin: 6.0986547085% 0 0 41.8834080717%;
  }
  .fig-3-2 {
    margin: 15.8744394619% 0 0 73.5426008969%;
  }
  .fig-3-3 {
    margin: 22.5112107623% 0 0 6.1883408072%;
  }
  .fig-3-4 {
    margin: 33.0044843049% 0 0 9.0582959641%;
  }
  .fig-3-5 {
    margin: 37.5784753363% 0 0 66.0986547085%;
  }
}

.footer {
  --footer-bg-color: var(--tsuki26-9-1);
}