/***
    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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-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;
  -moz-appearance: revert;
       appearance: revert;
}

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

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  color: #000;
  font-size: 3.2vw;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #fff;
  overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}

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

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

body {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}

.p-firstView {
  width: 100%;
  height: 100svh;
}
@media screen and (min-width: 1025px) {
  .p-firstView {
    width: auto;
    height: 100svh;
  }
}
.p-firstView img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
}

.p-contents {
  padding: 13.3333333333vw 0 min(40vw, 200px);
}
@media screen and (min-width: 1025px) {
  .p-contents {
    padding: 100px 0 200px;
  }
}
.p-contents__list {
  width: 80vw;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-contents__list {
    max-width: 480px;
    gap: 120px;
  }
}
.p-contents__credit {
  width: 68vw;
  margin-top: 5.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-contents__credit {
    width: 400px;
    margin-top: 30px;
  }
}
.p-contents__credit li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contents__credit li a span {
  padding: 0 2.6666666667vw;
  border: 1px solid #000;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (min-width: 1025px) {
  .p-contents__credit li a span {
    padding: 2px 20px;
  }
}
.p-contents__credit li a:active span {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .p-contents__credit li a:hover span {
    color: #fff;
    background-color: #000;
  }
}
.p-contents__shop {
  width: 80vw;
  aspect-ratio: 300/50;
  margin-top: 26.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .p-contents__shop {
    width: 480px;
    height: 60px;
    margin-top: 150px;
  }
}
.p-contents__shop a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 4.2666666667vw;
  border: 1px solid #000;
}
@media screen and (min-width: 1025px) {
  .p-contents__shop a {
    font-size: 20px;
  }
}
.p-contents__shop a:active {
  color: #fff;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .p-contents__shop a:hover {
    color: #fff;
    background-color: #000;
  }
}
.p-contents .movie {
  display: block;
  width: 80%;
  margin: 80px auto;
}
@media screen and (min-width: 1025px) {
  .p-contents .movie {
    max-width: 750px;
    margin-top: 120px;
  }
}

.p-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13.3333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer {
    gap: 120px;
  }
}
.p-footer__top {
  width: 10.1333333333vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__top {
    width: 50px;
  }
}
.p-footer__top a:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-footer__top a:hover {
    opacity: 0.6;
  }
}
.p-footer__logo {
  width: 36vw;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo {
    width: 200px;
  }
}
.p-footer__logo a:active {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .p-footer__logo a:hover {
    opacity: 0.6;
  }
}
.p-footer__copy {
  width: 100%;
  height: 13.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 2.6666666667vw;
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .p-footer__copy {
    height: 55px;
    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 */