/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
	- fix for the content editable attribute will work properly.
- webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  color: #000;
  font-size: 2.6666666667vw;
  letter-spacing: 0;
  line-height: 1;
  background-color: #ECD09B;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 12px;
  }
}
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: backgroundSwap 1s infinite;
}
@media screen and (min-width: 1025px) {
  body::before {
    animation: backgroundSwapPc 1s infinite;
  }
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.6s;
}

img {
  width: 100%;
  display: block;
}

body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.l-main {
  margin-top: 28vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .l-main {
    margin-top: 150px;
  }
}
@media screen and (min-width: 1025px) {
  .l-main::before, .l-main::after {
    content: "";
    width: 1.6666666667vw;
    height: calc(100% + 30vh);
    background-image: url("../images/heart.png");
    background-size: contain;
    position: absolute;
    bottom: 0;
    z-index: 0;
  }
}
@media screen and (min-width: 1025px) {
  .l-main::before {
    left: 2.0833333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .l-main::after {
    right: 2.0833333333vw;
  }
}

.p-firstView {
  padding-top: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-firstView {
    padding-top: 5.5555555556vw;
  }
}
.p-firstView__hsf {
  width: 57.6vw;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-firstView__hsf {
    width: 41.3888888889vw;
  }
}
.p-firstView__hsf::before, .p-firstView__hsf::after {
  content: "";
  width: 16.5333333333vw;
  aspect-ratio: 62/14;
  position: absolute;
  background-image: url("../images/firstView/heart-sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
}
@media screen and (min-width: 1025px) {
  .p-firstView__hsf::before, .p-firstView__hsf::after {
    width: 20.1388888889vw;
    aspect-ratio: 290/35;
    background-image: url("../images/firstView/heart.png");
  }
}
.p-firstView__hsf::before {
  left: -2.6666666667vw;
  transform: translate(-100%, -50%);
}
@media screen and (min-width: 1025px) {
  .p-firstView__hsf::before {
    left: -4.5138888889vw;
  }
}
.p-firstView__hsf::after {
  right: -2.6666666667vw;
  transform: translate(100%, -50%);
}
@media screen and (min-width: 1025px) {
  .p-firstView__hsf::after {
    right: -4.5138888889vw;
  }
}
.p-firstView__tag {
  margin-top: 2.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8vw;
  font-family: chinchilla, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .p-firstView__tag {
    width: 86.1111111111vw;
    margin-top: 30px;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
  }
}
.p-firstView__images {
  width: 100%;
  aspect-ratio: 375/447;
  position: relative;
  overflow-x: clip;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images {
    aspect-ratio: 1440/833;
  }
}
.p-firstView__images > * {
  position: absolute;
}
.p-firstView__images > *:nth-child(1) {
  width: 74.6666666667vw;
  top: 20.581655481%;
  left: 12.8vw;
  z-index: 4;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(1) {
    width: 44.6527777778vw;
    top: 6.7226890756%;
    left: 28.5416666667vw;
  }
}
.p-firstView__images > *:nth-child(2) {
  width: 36vw;
  top: 16.7785234899%;
  left: -1.8666666667vw;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(2) {
    width: 31.9444444444vw;
    top: 12.2448979592%;
    left: 0;
  }
}
.p-firstView__images > *:nth-child(3) {
  width: 27.7333333333vw;
  top: 9.1722595078%;
  left: 20.2666666667vw;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(3) {
    width: 16.4583333333vw;
    top: 6.4825930372%;
    left: 27.7777777778vw;
  }
}
.p-firstView__images > *:nth-child(4) {
  width: 19.7333333333vw;
  top: -0.8948545861%;
  right: 0.8vw;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(4) {
    width: 15.3472222222vw;
    top: 2.2809123649%;
    right: 18.5416666667vw;
  }
}
.p-firstView__images > *:nth-child(5) {
  width: 45.6vw;
  top: 9.1722595078%;
  right: 3.4666666667vw;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(5) {
    width: 39.0277777778vw;
    top: 9.6038415366%;
    right: -3.3333333333vw;
  }
}
.p-firstView__images > *:nth-child(6) {
  width: 50.1333333333vw;
  top: 13.4228187919%;
  right: 0;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(6) {
    width: 36.25vw;
    top: 20.7683073229%;
    right: -7.0833333333vw;
  }
}
.p-firstView__images > *:nth-child(7) {
  width: 31.4666666667vw;
  bottom: 25.0559284116%;
  left: -1.8666666667vw;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(7) {
    width: 25.6944444444vw;
    bottom: 9.0036014406%;
    left: 0.9027777778vw;
  }
}
.p-firstView__images > *:nth-child(8) {
  width: 10.6666666667vw;
  bottom: 19.0156599553%;
  left: 3.4666666667vw;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(8) {
    width: 8.8194444444vw;
    bottom: -4.5618247299%;
    left: 6.3888888889vw;
  }
}
.p-firstView__images > *:nth-child(9) {
  width: 20vw;
  bottom: -3.8031319911%;
  left: 8.5333333333vw;
  z-index: 5;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(9) {
    width: 17.4305555556vw;
    bottom: -13.5654261705%;
    left: 18.6111111111vw;
  }
}
.p-firstView__images > *:nth-child(10) {
  width: 12vw;
  right: 4.2666666667vw;
  bottom: 28.6353467562%;
  z-index: 4;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(10) {
    width: 12.0138888889vw;
    right: 23.7695078031%;
    bottom: -0.1388888889vw;
  }
}
.p-firstView__images > *:nth-child(11) {
  width: 20vw;
  right: 10.4vw;
  bottom: -4.4742729306%;
  z-index: 5;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(11) {
    width: 14.8611111111vw;
    right: 18.5416666667vw;
    bottom: -22.6890756303%;
  }
}
.p-firstView__images > *:nth-child(12) {
  display: none;
}
@media screen and (min-width: 1025px) {
  .p-firstView__images > *:nth-child(12) {
    width: 14.3055555556vw;
    display: block;
    right: 1.4583333333vw;
    bottom: 2.6410564226%;
    z-index: 5;
  }
}
.p-firstView__title {
  width: 55.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-firstView__title {
    width: 326px;
  }
}

body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.p-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contents + .p-contents {
  margin-top: 32vw;
}
@media screen and (min-width: 1025px) {
  .p-contents + .p-contents {
    margin-top: 250px;
  }
}
.p-contents:nth-child(6) {
  padding-bottom: 32vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(6) {
    padding-bottom: 150px;
  }
}
.p-contents__title {
  width: 57.6vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__title {
    width: 270px;
  }
}
.p-contents__loop {
  margin-top: 2.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .p-contents__loop {
    margin-top: 10px;
    z-index: 1;
  }
}
.p-contents__loopWrap {
  width: 480%;
  display: flex;
  flex-direction: row-reverse;
  animation: loop 15s linear infinite;
}
@media screen and (min-width: 1025px) {
  .p-contents__loopWrap {
    width: 200%;
    animation: loop 10s linear infinite;
  }
}
.p-contents__look {
  width: 92vw;
  margin-top: 21.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__look {
    width: 952px;
    margin-top: 150px;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 110px 112px;
  }
}
.p-contents__look > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__look > li {
    width: 420px;
    gap: 20px;
  }
}
.p-contents__slide {
  width: 92vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__slide {
    width: 100%;
  }
}
.p-contents__credit {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__credit {
    gap: 12px;
  }
}
.p-contents__credit > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .p-contents__credit > li > a:hover {
    opacity: 0.6;
  }
}
.p-contents__buy {
  width: 10.1333333333vw;
  aspect-ratio: 38/23;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #BE2A1E;
  font-size: 2.9333333333vw;
  font-family: museo-slab, serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.02em;
  background-image: url("../images/main/heart.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .p-contents__buy {
    width: 46px;
    aspect-ratio: 46/28;
    font-size: 14px;
  }
}
.p-contents__recommend {
  margin-top: 13.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommend {
    margin-top: 100px;
  }
}
.p-contents__recommendTtl {
  width: fit-content;
  color: #BE2A1E;
  font-size: 9.0666666667vw;
  text-align: center;
  position: relative;
  font-family: permanent-marker, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendTtl {
    font-size: 45px;
  }
}
.p-contents__recommendTtl::after {
  content: "";
  width: 100%;
  aspect-ratio: 170/6;
  background-image: url("../images/main/border.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendTtl::after {
    bottom: -15px;
  }
}
.p-contents__recommendTtl::after {
  aspect-ratio: 170/6;
}
.p-contents__recommendList {
  margin-top: 10.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendList {
    margin-top: 30px;
    flex-direction: row;
    align-items: flex-start;
    gap: 140px;
  }
}
.p-contents__recommendList > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-contents__recommendItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8vw;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendItem {
    gap: 50px;
  }
}
.p-contents__recommendItem > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendItem > li {
    gap: 20px;
  }
}
.p-contents__recommendItem > li > a {
  width: 72vw;
  aspect-ratio: 270/32;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #BE2A1E;
  background-color: #F0A0AA;
  border: 2px solid #BE2A1E;
  border-radius: 9999px;
  font-size: 5.3333333333vw;
  font-family: museo-slab, serif;
  font-weight: 800;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendItem > li > a {
    width: 387px;
    aspect-ratio: 387/46;
    font-size: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendItem > li > a:hover {
    opacity: 0.6;
  }
}
.p-contents__recommendName {
  font-size: 10.6666666667vw;
  color: #BE2A1E;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 0.89;
  white-space: pre;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: bilo, sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-contents__recommendName {
    font-size: 58px;
  }
}
.p-contents:nth-child(1) .p-contents__recommendList {
  gap: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList {
    align-items: stretch;
    gap: 140px;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li {
    justify-content: space-between;
  }
}
.p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(1) .p-contents__recommendImg {
  width: 76vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(1) .p-contents__recommendImg {
    width: 407px;
  }
}
.p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(1) .p-contents__recommendItem {
  margin-top: -18.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(1) .p-contents__recommendItem {
    margin-top: -100px;
  }
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(2) {
    width: 407px;
  }
}
.p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(2) .p-contents__recommendImg {
  width: 97.6vw;
  margin-left: -10.1333333333vw;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(2) .p-contents__recommendImg {
    width: 480px;
    margin-top: 50px;
    margin-left: -80px;
  }
}
.p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(2) .p-contents__recommendName {
  margin-top: -13.3333333333vw;
  margin-right: -10.1333333333vw;
  position: absolute;
  top: 0;
  left: calc(50% + 5.3333333333vw);
  transform: translate(-50%);
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(1) .p-contents__recommendList > li:nth-child(2) .p-contents__recommendName {
    margin-top: -70px;
    margin-right: 0;
    left: calc(50% + 40px);
  }
}
.p-contents:nth-child(3) .p-contents__recommendList .p-contents__recommendImg {
  width: 69.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(3) .p-contents__recommendList .p-contents__recommendImg {
    width: 378px;
  }
}
.p-contents:nth-child(3) .p-contents__recommendList .p-contents__recommendItem {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(3) .p-contents__recommendList .p-contents__recommendItem {
    margin-top: 10px;
  }
}
.p-contents:nth-child(4) .p-contents__recommendList .p-contents__recommendImg {
  width: 58.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(4) .p-contents__recommendList .p-contents__recommendImg {
    width: 314px;
  }
}
.p-contents:nth-child(4) .p-contents__recommendList .p-contents__recommendItem {
  margin-top: -4vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(4) .p-contents__recommendList .p-contents__recommendItem {
    margin-top: -20px;
  }
}
.p-contents:nth-child(5) .p-contents__recommendList .p-contents__recommendImg {
  width: 80vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(5) .p-contents__recommendList .p-contents__recommendImg {
    width: 402px;
  }
}
.p-contents:nth-child(5) .p-contents__recommendList .p-contents__recommendItem {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-contents:nth-child(5) .p-contents__recommendList .p-contents__recommendItem {
    margin-top: 10px;
  }
}

.p-limited {
  padding: 32vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F7F0D7;
}
@media screen and (min-width: 1025px) {
  .p-limited {
    padding: 150px 0;
  }
}
.p-limited__title {
  width: fit-content;
  color: #FF8000;
  font-size: 9.0666666667vw;
  text-align: center;
  position: relative;
  font-family: permanent-marker, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-limited__title {
    font-size: 45px;
  }
}
.p-limited__title::after {
  content: "";
  width: 100%;
  aspect-ratio: 170/6;
  background-image: url("../images/limited/border.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .p-limited__title::after {
    bottom: -15px;
  }
}
.p-limited__wrap {
  margin-top: 13.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited__wrap {
    margin-top: 80px;
    flex-direction: row;
    gap: 68px;
  }
}
.p-limited__wrap > li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-limited__heading {
  width: 67.2vw;
  aspect-ratio: 252/80;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .p-limited__heading {
    width: 316px;
  }
}
.p-limited__sub {
  color: #FF8000;
  font-size: 5.0666666667vw;
  font-family: nimbus-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-limited__sub {
    font-size: 24px;
  }
}
.p-limited__top {
  width: 89.3333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited__top {
    width: 420px;
    margin-top: 10px;
  }
}
.p-limited__item {
  margin-top: -6.6666666667vw;
  font-size: 12.2666666667vw;
  color: #FF8000;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 0.89;
  white-space: pre;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: bilo, sans-serif;
  font-weight: 900;
  font-style: normal;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-limited__item {
    margin-top: -25px;
    font-size: 58px;
  }
}
.p-limited__images {
  width: 100vw;
  aspect-ratio: 375/835;
  position: relative;
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-limited__images {
    width: 468px;
    aspect-ratio: 468/1046;
    margin: 0;
  }
}
.p-limited__images > * {
  position: absolute;
}
.p-limited__images > *:nth-child(4) {
  bottom: 0;
}
.p-limited__buy {
  width: 82.6666666667vw;
  aspect-ratio: 310/38;
  margin-top: 8vw;
}
@media screen and (min-width: 1025px) {
  .p-limited__buy {
    width: 388px;
    aspect-ratio: 388/46;
    margin-top: 45px;
  }
}
.p-limited__buy > a, .p-limited__buy p {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #BE2A1E;
  background-color: #F0A0AA;
  border: 2px solid #BE2A1E;
  border-radius: 9999px;
  font-size: 5.8666666667vw;
  font-family: museo-slab, serif;
  font-weight: 800;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-limited__buy > a, .p-limited__buy p {
    font-size: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .p-limited__buy > a:hover {
    opacity: 0.6;
  }
}
.p-limited .typy .p-limited__heading {
  padding-top: 6.4vw;
  gap: 2.1333333333vw;
  background-image: url("../images/limited/bg-1.png");
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__heading {
    padding-top: 30px;
    gap: 8px;
  }
}
.p-limited .typy .p-limited__logo {
  width: 54.9333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__logo {
    width: 258px;
  }
}
.p-limited .typy .p-limited__images > *:nth-child(1) {
  width: 65.8666666667vw;
  top: 0;
  right: 3.4666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__images > *:nth-child(1) {
    width: 310px;
    right: 29px;
  }
}
.p-limited .typy .p-limited__images > *:nth-child(2) {
  width: 76.2666666667vw;
  top: 61.6vw;
  right: 9.0666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__images > *:nth-child(2) {
    width: 362px;
    top: 289px;
    left: 54px;
  }
}
.p-limited .typy .p-limited__images > *:nth-child(3) {
  width: 79.4666666667vw;
  bottom: 41.6vw;
  left: 2.1333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__images > *:nth-child(3) {
    width: 370px;
    bottom: 198px;
    left: 0;
  }
}
.p-limited .typy .p-limited__images > *:nth-child(4) {
  width: 79.4666666667vw;
  left: 14.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .typy .p-limited__images > *:nth-child(4) {
    width: 372px;
    left: 57px;
  }
}
.p-limited .ciao .p-limited__heading {
  padding-top: 4.2666666667vw;
  gap: 0.5333333333vw;
  background-image: url("../images/limited/bg-2.png");
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__heading {
    padding-top: 20px;
    gap: 5px;
  }
}
.p-limited .ciao .p-limited__logo {
  width: 44.2666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__logo {
    width: 207px;
  }
}
.p-limited .ciao .p-limited__images > *:nth-child(1) {
  width: 57.3333333333vw;
  top: 0;
  left: 12.5333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__images > *:nth-child(1) {
    width: 270px;
    top: 15px;
    left: 51px;
  }
}
.p-limited .ciao .p-limited__images > *:nth-child(2) {
  width: 81.3333333333vw;
  top: 57.6vw;
  right: 4.8vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__images > *:nth-child(2) {
    width: 383px;
    top: 281px;
    right: 27px;
  }
}
.p-limited .ciao .p-limited__images > *:nth-child(3) {
  width: 79.4666666667vw;
  bottom: 41.8666666667vw;
  left: 4.5333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__images > *:nth-child(3) {
    width: 384px;
    bottom: 181px;
    left: 9px;
  }
}
.p-limited .ciao .p-limited__images > *:nth-child(4) {
  width: 80vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .p-limited .ciao .p-limited__images > *:nth-child(4) {
    width: 375px;
    left: 36px;
    transform: none;
  }
}

.p-novelty {
  margin-top: 21.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-novelty {
    margin-top: 100px;
    gap: 45px;
  }
}
.p-novelty__top {
  width: 100%;
  aspect-ratio: 375/512;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6.6666666667vw;
  background-image: url("../images/novelty/paper-sp.png");
  background-size: 106%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
  .p-novelty__top {
    width: 806px;
    aspect-ratio: 806/554;
    gap: 30px;
    background-image: url("../images/novelty/paper.png");
    background-size: contain;
  }
}
.p-novelty__heading {
  width: 100%;
  aspect-ratio: 375/158;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .p-novelty__heading {
    width: 540px;
    aspect-ratio: 540/248;
  }
}
.p-novelty__title {
  width: 37.0666666667vw;
  position: absolute;
  top: 4.2666666667vw;
  left: 3.2vw;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .p-novelty__title {
    width: 220px;
    top: 20px;
    left: 0;
  }
}
.p-novelty__image {
  width: 62.9333333333vw;
  position: absolute;
  top: 0;
  right: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-novelty__image {
    width: 370px;
    top: 0;
    right: 0;
  }
}
.p-novelty__desc {
  width: 85.3333333333vw;
  text-align: center;
  line-height: 2.2;
}
@media screen and (min-width: 1025px) {
  .p-novelty__desc {
    width: 596px;
    font-size: 16px;
  }
}
.p-novelty__caution {
  width: 85.3333333333vw;
  font-size: 2.1333333333vw;
  text-align: center;
  line-height: 2.2;
}
@media screen and (min-width: 1025px) {
  .p-novelty__caution {
    width: 596px;
    font-size: 12px;
  }
}

.p-cast {
  margin-top: 26.6666666667vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-cast {
    margin-top: 80px;
  }
}
.p-cast__title {
  font-size: 9.0666666667vw;
  font-family: permanent-marker, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-cast__title {
    font-size: 43px;
  }
}
.p-cast__list {
  width: 90.6666666667vw;
  margin-top: 4vw;
  display: flex;
  flex-wrap: wrap;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-cast__list {
    width: 943px;
    margin-top: 30px;
    gap: 25px;
  }
}
.p-cast__list > li {
  width: 42.6666666667vw;
}
@media screen and (min-width: 1025px) {
  .p-cast__list > li {
    width: 217px;
  }
}
@media screen and (min-width: 1025px) {
  .p-cast__list > li a:hover {
    opacity: 0.6;
  }
}

.p-footer {
  margin-top: 26.6666666667vw;
  padding-bottom: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    margin-top: 100px;
    padding-bottom: 50px;
  }
}
.p-footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__list {
    width: 350px;
    gap: 20px;
  }
}
.p-footer__list > li {
  width: 93.3333333333vw;
  aspect-ratio: 350/94;
}
@media screen and (min-width: 1025px) {
  .p-footer__list > li {
    width: 350px;
  }
}
.p-footer__list > li a {
  height: 100%;
  padding-left: 12vw;
  background-color: #FF7B13;
  border: 1.75px solid #000;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  gap: 6.4vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__list > li a {
    padding-left: 45px;
    gap: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .p-footer__list > li a:hover {
    opacity: 0.6;
  }
}
.p-footer__list > li a img:nth-child(1) {
  width: 11.7333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__list > li a img:nth-child(1) {
    width: 45px;
  }
}
.p-footer__list > li a img:nth-child(2) {
  width: auto;
  height: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__list > li a img:nth-child(2) {
    height: 50px;
  }
}
.p-footer__copy {
  margin-top: 13.3333333333vw;
  font-size: 2.6666666667vw;
  font-family: nimbus-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    margin-top: 45px;
    font-size: 12px;
  }
}

@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden-sp {
    display: none !important;
  }
}/*# sourceMappingURL=app.css.map */