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

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;
  font-size: 100%;
}

body {
  font-size: 1rem;
}
body.scroll_rock {
  overflow: hidden;
}

:root {
  --text-black: #414141;
}

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

.footer {
  --footer-pad: 106px 14.1333333333vw 53px;
  --footer-bg-color: #AD7C67;
  --share-gap: 18px;
  --share-icon-gap: 24px;
  --f-hobo-mar: 26px 0 45px;
  --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: 33px;
  position: relative;
  font-family: "Koburina Gothic W6 JIS2004";
  display: flex;
  flex-direction: column;
  padding: var(--footer-pad);
  color: #ffffff;
  background-color: var(--footer-bg-color);
}
.footer_banner {
  margin-bottom: var(--banner-mb);
}
.footer_banner img {
  max-width: 856px;
  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: 768px) {
  .footer {
    --footer-pad: 106px 0 56px;
    --share-gap: 28px;
    --share-icon-gap: 25px;
    --f-hobo-mar: 23px 0 18px;
    --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;
    align-items: center;
  }
  .footer_banner {
    padding: 32px;
  }
  .footer_hobo ul {
    display: flex;
  }
  .footer_hobo li {
    display: flex;
  }
  .footer_hobo li:not(:last-of-type):after {
    content: "／";
  }
}

.contents {
  --contents-pad: 30px;
  --arrow-size: 38px;
  --table-size: 55px;
  --table-fs: 0.6875rem;
  --table-h: 143px;
  --arrow-pad: 7px;
  width: 100%;
  max-width: 850px;
  border-top: 0.5px solid #414141;
  border-bottom: 0.5px solid #414141;
}
.contents ul {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 547px;
  height: var(--table-h);
  margin: 0 auto;
  padding: var(--contents-pad);
  font-size: var(--table-fs);
  letter-spacing: 0.7px;
}
.contents li,
.contents a {
  height: 100%;
}
.contents a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.contents a:before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
.contents a.is-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}
.contents__table:before {
  width: var(--table-size);
  height: var(--table-size);
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85 85" fill="none"%3E%3Cpath d="M25 27H61" stroke="%23414141" stroke-width="0.5"/%3E%3Cpath d="M25 42.5H61" stroke="%23414141" stroke-width="0.5"/%3E%3Cpath d="M25 58H61" stroke="%23414141" stroke-width="0.5"/%3E%3Ccircle cx="42.5" cy="42.5" r="41.5" stroke="%23414141" stroke-width="0.5"/%3E%3C/svg%3E');
}
.contents__prev, .contents__next {
  padding-top: var(--arrow-pad);
}
.contents__prev:before, .contents__next:before {
  width: var(--arrow-size);
  height: var(--arrow-size);
}
.contents__prev:before {
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"%3E%3Cpath d="M22.0001 42.9999L1.00015 22L22.0001 1.00008" stroke="%23414141" stroke-width="0.5"/%3E%3C/svg%3E');
}
.contents__next:before {
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"%3E%3Cpath d="M0.999924 1.00008L21.9998 22L0.999924 42.9999" stroke="%23414141" stroke-width="0.5"/%3E%3C/svg%3E');
}
@media (min-width: 768px) {
  .contents {
    --contents-pad: 25px 0;
    --arrow-size: 44px;
    --table-size: 83px;
    --table-fs: 0.875rem;
    --table-h: 176px;
    --arrow-pad: 21px;
  }
}

.main {
  --mh-pad: 50px 0;
  --mh-min-w: 89.3333333333vw;
  --mh-max-w: 850px;
  --mf-pad: 0 0 calc(140px / 2);
  --h2-mb: 25px;
  --lead-fs: 0.875rem;
  --lead-lh: 192%;
  --lead-ls: 0.8px;
  --lead-ta: justify;
  --lead-mb: 50px;
  --lead-br: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #717171;
}
.main__header {
  width: min(var(--mh-min-w), var(--mh-max-w));
  padding: var(--mh-pad);
  color: #E3DCCF;
}
.main__footer {
  width: min(var(--mh-min-w), var(--mh-max-w));
  padding: var(--mf-pad);
}
.main__h2 {
  margin-bottom: var(--h2-mb);
}
.main__h2 img {
  max-width: min(75.7333333333vw, 808px);
}
.main__lead {
  margin-bottom: var(--lead-mb);
  font-size: var(--lead-fs);
  line-height: var(--lead-lh);
  letter-spacing: var(--lead-ls);
  text-align: var(--lead-ta);
}
.main__lead br {
  display: var(--lead-br);
}
.main__lead a {
  color: #27B8B6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .main {
    --mh-pad: 124px 0 132px;
    --mf-pad: 0 0 140px;
    --h2-mb: 45px;
    --lead-fs: 1rem;
    --lead-mb: 97px;
    --lead-br: block;
    --lead-ta: left;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
    visibility: visible;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.header {
  --photos-ar: 375 / 556;
  --tsuki-pos-y: 4.1366906475%;
  --tsuki-pos-x: 7.4666666667%;
  --tsuki-w: 7.0028011204%;
  --tsuki-h: 7.3741007194%;
  --hobo-pos-y: 4.2666666667vw;
  --hobo-pos-x: 4.5333333333vw;
  --hobo-w: 14.6666666667vw;
  --hobo-h: 1.9066666667vw;
  --h1-pos-y: 4.3165467626%;
  --h1-pos-x: 6.9333333333%;
  --h1-w: 45.0666666667%;
  --h1-h: 12.4100719424%;
  position: relative;
}
.header [class^=logo_] {
  position: absolute;
  z-index: 1;
  display: block;
  visibility: hidden;
}
.header [class^=logo_] img,
.header [class^=logo_] svg {
  width: 100%;
  height: auto;
}
.header .logo_TSUKINOMISE {
  top: var(--tsuki-pos-y);
  left: var(--tsuki-pos-x);
  width: var(--tsuki-w);
  height: var(--tsuki-h);
  animation: fade-in 1.5s 1s ease-out forwards;
}
.header .logo_HOBONICHI {
  top: var(--hobo-pos-y);
  right: var(--hobo-pos-x);
  width: var(--hobo-w);
  height: var(--hobo-h);
  animation: fade-in 1.5s ease-out forwards;
}
.header .logo_h1 {
  bottom: var(--h1-pos-y);
  left: var(--h1-pos-x);
  width: var(--h1-w);
  height: var(--h1-h);
  animation: fade-in-up 1.5s 2s ease-out forwards;
}
.header__photos {
  position: relative;
  aspect-ratio: var(--photos-ar);
}
.header__photos picture {
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.header__photos picture:nth-of-type(1) {
  animation: fade-in 1.5s ease-out forwards;
}
.header__photos picture:nth-of-type(2) {
  animation: fade-in 1.2s 1.5s ease-out forwards;
}
.header__photos picture:nth-of-type(3) {
  animation: fade-in 2.5s 3.5s ease-out forwards;
}
.header__photos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .header {
    --photos-ar: 1440 / 1100;
    --tsuki-pos-y: 3.8181818182%;
    --tsuki-pos-x: 3.6111111111%;
    --tsuki-w: 2.4305555556%;
    --tsuki-h: 5.2727272727%;
    --hobo-pos-y: 20px;
    --hobo-pos-x: 20px;
    --hobo-w: 100.953px;
    --hobo-h: 15px;
    --h1-pos-y: 29.5454545455%;
    --h1-pos-x: 16.1111111111%;
    --h1-w: 16.8055555556%;
    --h1-h: 9%;
  }
  .header .logo_h1 {
    bottom: unset;
    left: unset;
    top: var(--h1-pos-y);
    right: var(--h1-pos-x);
  }
}

.contents-light {
  border-top-color: #E3DCCF;
  border-bottom-color: #E3DCCF;
}
.contents-light .contents__table:before {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 85 85" fill="none"%3E%3Cpath d="M25 27H61" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3Cpath d="M25 42.5H61" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3Cpath d="M25 58H61" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3Ccircle cx="42.5" cy="42.5" r="41.5" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3C/svg%3E');
}
.contents-light .contents__prev:before {
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"%3E%3Cpath d="M22.0001 42.9999L1.00015 22L22.0001 1.00008" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3C/svg%3E');
}
.contents-light .contents__next:before {
  background-image: url('data:image/svg+xml, %3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 44" fill="none"%3E%3Cpath d="M0.999924 1.00008L21.9998 22L0.999924 42.9999" stroke="%23E3DCCF" stroke-width="0.5"/%3E%3C/svg%3E');
}

.look {
  padding-bottom: 66px;
}
@media (min-width: 768px) {
  .look {
    padding-bottom: 132px;
  }
}

.photo {
  --photo-mb: calc(100px / 2);
  --caption-mb: calc(59px / 2);
  --narrow-mb: calc(4px / 2);
  --figcaption-pad: 10px 20px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-in-out, transform 0.75s;
}
.photo.in-view {
  opacity: 1;
  transform: translateY(0);
}
.photo:not(.narrow), .photo:not(.caption) {
  margin-bottom: var(--photo-mb);
}
.photo.narrow {
  margin-bottom: var(--narrow-mb);
}
.photo.caption {
  margin-bottom: var(--caption-mb);
}
.photo img {
  width: 100%;
  height: auto;
}
.photo .full {
  max-width: 850px;
  width: 100%;
}
.photo .fifty-eight {
  width: min(58.823vw, 500px);
}
.photo .to-left {
  margin-right: auto;
}
.photo .to-right {
  margin-left: auto;
}
.photo figcaption {
  padding: var(--figcaption-pad);
  color: #414141;
  font-size: 0.625rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 128.023%;
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .photo {
    --photo-mb: 100px;
    --caption-mb: 59px;
    --narrow-mb: 4px;
  }
}
@media (min-width: 900px) {
  .photo {
    --figcaption-pad: 15px 0 0;
  }
}

.credit {
  --credit-pad: calc(252px / 2) 5.3333333333vw calc(203px / 2);
  --credit-fs: 0.875rem;
  --credit-lh: 192%;
  --credit-ls: 1.36px;
  position: relative;
  width: 100%;
  padding: var(--credit-pad);
  color: #ffffff;
}
.credit h3 {
  position: relative;
  margin-bottom: 26px;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: 1.125rem;
  letter-spacing: 1.26px;
}
.credit ul {
  position: relative;
  font-size: var(--credit-fs);
  line-height: var(--credit-lh);
  letter-spacing: var(--credit-ls);
}
.credit li {
  display: grid;
  grid-template-columns: 126px 190px;
}
.credit picture {
  position: absolute;
  inset: 0;
}
.credit picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .credit {
    --credit-pad: 252px 201px 203px;
    --credit-fs: 1rem;
  }
}

.products {
  --gap: 50px;
  display: grid;
  gap: var(--gap);
  width: min(89.3333333333vw, 552px);
  padding: 70.5px 0 50px;
}
@media (min-width: 768px) {
  .products {
    --gap: 100px;
    padding: 141px 0 100px;
  }
}

.photo {
  --caption-mb: calc(64px / 2);
}
.photo figcaption {
  color: #E3DCCF;
}
@media (min-width: 768px) {
  .photo {
    --caption-mb: 64px;
  }
}
@media (min-width: 900px) {
  .photo {
    --figcaption-pad: 10px 0 0;
  }
}

.product__line_title {
  --line-h-mb: 53px;
  --line-h-fs: 1.125rem;
  --line-h-lh: 33px;
  --line-h-date-pad: 0 15px;
  margin-bottom: var(--line-h-mb);
  color: #AD7C67;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--line-h-fs);
  letter-spacing: 0.84px;
}
.product__line_title .date {
  display: block;
  width: fit-content;
  margin-top: 11px;
  padding: var(--line-h-date-pad);
  color: #ffffff;
  font-family: "Koburina Gothic W6 JIS2004";
  font-size: var(--line-h-fs);
  line-height: var(--line-h-lh);
  background-color: #AD7C67;
}
@media (min-width: 768px) {
  .product__line_title {
    --line-h-fs: 1.5rem;
    --line-h-lh: 36px;
    --line-h-date-pad: 0 26px;
  }
}

.product__lineup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42.5px 20px;
}
@media (min-width: 768px) {
  .product__lineup {
    gap: 85px 40px;
  }
}

.product {
  --gap: 16px;
  --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: 32px;
  color: #414141;
}
.product .image {
  width: 100%;
  height: auto;
  background-color: #E8EBEE;
}
.product .copy {
  margin-bottom: var(--gap);
  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 .name {
  font-family: "Yu Gothic Pr6N D";
  font-size: var(--name-fs);
  line-height: var(--lh);
  letter-spacing: var(--name-ls);
}
.product .size {
  margin-bottom: var(--gap);
  font-family: "Yu Gothic Pr6N M";
  font-size: var(--size-fs);
  line-height: var(--lh);
  letter-spacing: var(--size-ls);
}
.product .type {
  font-family: "Yu Gothic Pr6N M";
  font-size: var(--type-fs);
  line-height: var(--lh);
  letter-spacing: var(--type-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: 192px;
  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: 12px;
  font-family: "Koburina Gothic W6 JIS2004";
}
.product .urikire.active {
  display: block;
  margin-top: 5px;
  color: #C790BB;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.product .splide {
  margin-bottom: 53px;
}
.product .splide__pagination {
  bottom: -37px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  padding: 0;
}
.product .splide__pagination__page {
  width: 17px;
  height: 17px;
  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);
}
@media (min-width: 768px) {
  .product {
    --gap: 13px;
    --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: 35px;
  }
  .product .urikire {
    font-size: 15px;
  }
  .product .splide {
    margin-bottom: 51px;
  }
  .product .splide__pagination {
    bottom: -38px;
  }
}

.line__signature .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #E3DCCF;
}
.line__signature .splide__pagination li:nth-of-type(1).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #E3DCCF, #E3DCCF calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #E3DCCF calc(50% + 0.5px), #E3DCCF);
}
.line__signature .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #AA699D;
}
.line__signature .splide__pagination li:nth-of-type(2).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #AA699D, #AA699D calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #AA699D calc(50% + 0.5px), #AA699D);
}
.line__signature .splide__pagination li:nth-of-type(3) .splide__pagination__page {
  background-color: #14245F;
}
.line__signature .splide__pagination li:nth-of-type(3).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #14245F, #14245F calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #14245F calc(50% + 0.5px), #14245F);
}

.line__bold .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #D4CBDF;
}
.line__bold .splide__pagination li:nth-of-type(1).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #D4CBDF, #D4CBDF calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #D4CBDF calc(50% + 0.5px), #D4CBDF);
}
.line__bold .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #152951;
}
.line__bold .splide__pagination li:nth-of-type(2).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #152951, #152951 calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #152951 calc(50% + 0.5px), #152951);
}

.line__totonoeru .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #B7D4D0;
}
.line__totonoeru .splide__pagination li:nth-of-type(1).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #B7D4D0, #B7D4D0 calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #B7D4D0 calc(50% + 0.5px), #B7D4D0);
}
.line__totonoeru .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #D1B295;
}
.line__totonoeru .splide__pagination li:nth-of-type(2).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #D1B295, #D1B295 calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #D1B295 calc(50% + 0.5px), #D1B295);
}

.line__night-series .splide__pagination li:nth-of-type(1) .splide__pagination__page {
  background-color: #FFB3B4;
}
.line__night-series .splide__pagination li:nth-of-type(1).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #FFB3B4, #FFB3B4 calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #FFB3B4 calc(50% + 0.5px), #FFB3B4);
}
.line__night-series .splide__pagination li:nth-of-type(2) .splide__pagination__page {
  background-color: #5F5252;
}
.line__night-series .splide__pagination li:nth-of-type(2).sold-out .splide__pagination__page {
  background-color: transparent;
  background-image: linear-gradient(-45deg, #5F5252, #5F5252 calc(50% - 0.5px), transparent calc(50% - 0.5px), transparent calc(50% + 0.5px), #5F5252 calc(50% + 0.5px), #5F5252);
}

.product__line_title {
  color: #EC7433;
}
.product__line_title .date {
  background-color: #EC7433;
}

.credit {
  position: relative;
}
.credit:after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #353535;
  opacity: 0.3;
}
.credit h3,
.credit ul {
  z-index: 1;
}

.color-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #DADAD9;
}

.footer {
  background-color: #716F81;
}