@charset "UTF-8";
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* #Typography
----------------------------------------------------------------- */
html {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5208333333vw;
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 900px ) {
  html {
    font-size: 2.5641025641vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
body * {
  box-sizing: border-box;
}

svg {
  width: 100%;
  height: auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

a {
  display: block;
}

ul li {
  list-style: none;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  backface-visibility: hidden;
}
@media screen and (max-width: 900px ) {
  .l-wrapper {
    width: 100dvw;
    overflow: hidden;
  }
}

.l-main {
  width: 100dvw;
  height: auto;
  position: relative;
  background: #b6615e;
  background: linear-gradient(90deg, rgb(182, 97, 94) 0%, rgb(196, 111, 108) 20%, rgb(196, 177, 160) 40%, rgb(207, 204, 185) 50%, rgb(183, 188, 156) 60%, rgb(168, 182, 131) 80%, rgb(167, 186, 120) 100%);
}
/* #js-scrollEffect
----------------------------------------------------------------- */
.c-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding-block: 5rem;
  display: none;
  flex-direction: column;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.c-popup.is-open {
  display: flex;
}
.c-popup__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  cursor: pointer;
}
.c-popup__inner {
  width: 80rem;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 3rem 6rem;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 900px ) {
  .c-popup__inner {
    width: 34rem;
    padding-block: 5rem 4rem;
  }
}
.c-popup__inner--movie {
  padding-block: 7rem 5rem;
}
.c-popup__inner--predator {
  background: #d76761;
}
.c-popup__inner--f50 {
  background: #a0bc75;
}
.c-popup__title {
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
.c-popup__title--predator {
  width: 30.4rem;
}
@media screen and (max-width: 900px ) {
  .c-popup__title--predator {
    width: 22.8rem;
  }
}
.c-popup__title--f50 {
  width: 24.9rem;
}
@media screen and (max-width: 900px ) {
  .c-popup__title--f50 {
    width: 18.8rem;
  }
}
.c-popup__text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .c-popup__text {
    width: 30rem;
    margin-inline: auto;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
    letter-spacing: 0em;
    font-weight: 500;
    margin-top: 2rem;
  }
}
.c-popup__head {
  width: 55rem;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 900px ) {
  .c-popup__head {
    width: 30rem;
  }
}
.c-popup__head:before, .c-popup__head:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 11.6rem;
  top: -1.2rem;
  position: absolute;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 900px ) {
  .c-popup__head:before, .c-popup__head:after {
    width: 0.8rem;
    height: 10rem;
    top: -1.2rem;
  }
}
.c-popup__head:before {
  left: 0;
  border-right: none;
}
.c-popup__head:after {
  right: 0;
  border-left: none;
}
.c-popup__headTitle {
  text-align: center;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
}
@media screen and (max-width: 900px ) {
  .c-popup__headTitle {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.c-popup__headText {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0em;
  font-weight: 500;
}
@media screen and (max-width: 900px ) {
  .c-popup__headText {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.c-popup__movie {
  width: 56rem;
  height: 31.5rem;
  background: #000000;
  position: relative;
  margin-inline: auto;
  margin-top: 6.6rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px ) {
  .c-popup__movie {
    width: 29rem;
    height: auto;
    margin-top: 4rem;
  }
}
.c-popup__movie:before, .c-popup__movie:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 32.8rem;
  top: -0.6rem;
  position: absolute;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 900px ) {
  .c-popup__movie:before, .c-popup__movie:after {
    width: 0.8rem;
    height: calc(100% + 0.8rem);
    top: -0.4rem;
  }
}
.c-popup__movie:before {
  left: -0.6rem;
  border-right: none;
}
@media screen and (max-width: 900px ) {
  .c-popup__movie:before {
    left: -0.4rem;
  }
}
.c-popup__movie:after {
  right: -0.6rem;
  border-left: none;
}
@media screen and (max-width: 900px ) {
  .c-popup__movie:after {
    right: -0.4rem;
  }
}
@media screen and (min-width: 1024px ) {
  .c-popup__movie video {
    height: 100%;
    width: auto;
    margin-inline: auto;
  }
}
@media screen and (max-width: 900px ) {
  .c-popup__movie video {
    width: 100%;
    height: auto;
  }
}
.c-popup__logo {
  margin-inline: auto;
  margin-top: 3rem;
  opacity: 0.2;
}
.c-popup__logo--predator {
  width: 25.3rem;
}
@media screen and (max-width: 900px ) {
  .c-popup__logo--predator {
    width: 16.8rem;
  }
}
.c-popup__logo--f50 {
  width: 19.2rem;
}
@media screen and (max-width: 900px ) {
  .c-popup__logo--f50 {
    width: 12.6rem;
  }
}
.c-popup__close {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  transform: rotate(45deg);
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}
.c-popup__close:hover {
  opacity: 0.6;
}
.c-popup__close:before, .c-popup__close:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
}
.c-popup__close:before {
  transform: rotate(90deg);
}

body.is-popupOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}

.c-form {
  width: 68rem;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .c-form {
    width: 30rem;
    margin-top: 4rem;
  }
}
.c-form__honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.c-form__item {
  width: 100%;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 900px ) {
  .c-form__item {
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2rem;
  }
}
.c-form__item:first-child {
  margin-top: 0;
}
.c-form__item label {
  width: 16.7rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.875;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: right;
  flex-shrink: 0;
}
@media screen and (max-width: 900px ) {
  .c-form__item label {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 500;
    text-align: left;
  }
}
.c-form__item textarea {
  width: 100%;
  height: 15rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 500;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.6rem 2.2rem;
  resize: none;
  outline: none !important;
  color: #4b4b4b;
}
@media screen and (max-width: 900px ) {
  .c-form__item textarea {
    height: 10rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 500;
    padding: 1.3rem 1.5rem;
  }
}
.c-form__item select {
  width: 100%;
  height: 4.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 500;
  outline: none !important;
  color: #4b4b4b;
  padding-inline: 1.4rem;
}
.c-form__selectWrap {
  width: 20rem;
  position: relative;
}
.c-form__selectWrap::after {
  content: "";
  display: block;
  width: min(1rem, 10px);
  height: min(0.7rem, 7px);
  background: #727272;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: 1.5rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.c-form__term {
  width: 100%;
  height: 12.6rem;
  margin-inline: auto;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 500;
  padding: 1.6rem 2.2rem;
  background: #ffffff;
  overflow: hidden;
  color: #000000;
  margin-top: 8rem;
}
@media screen and (max-width: 900px ) {
  .c-form__term {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 500;
    padding: 1.3rem 1.5rem;
    margin-top: 4rem;
  }
}
.c-form__term p {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.c-form__submit {
  width: 30rem;
  height: 6rem;
  margin-inline: auto;
  margin-top: 3.6rem;
  display: grid;
  place-content: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px ) {
  .c-form__submit {
    width: 27rem;
    height: 5rem;
    margin-top: 3.6rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.c-form__submit:hover {
  box-shadow: 0rem 0rem 0 rgba(0, 0, 0, 0.32);
  transform: translateY(0.5rem);
}
.c-form__submit--predator {
  color: #d76761;
}
.c-form__submit--f50 {
  color: #a0bc75;
}

body.is-popupOpen {
  width: 100vw;
  height: 100dvh;
  position: fixed;
}

.p-mv {
  width: 100dvw;
  height: auto;
}
.p-mv__image {
  width: 100%;
  height: auto;
}
.p-intro__inner {
  padding-block: 9rem;
}
@media screen and (max-width: 900px ) {
  .p-intro__inner {
    padding-block: 4.4rem 8.7rem;
  }
}
.p-intro__title {
  width: 87.3rem;
  height: auto;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__title.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__title {
    width: 28.5rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__title.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-intro__subtitle {
  font-size: 74px;
  font-size: 7.4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  text-align: center;
  margin-top: 7.3rem;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__subtitle.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__subtitle {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__subtitle.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-intro__text01 {
  width: 71rem;
  margin-inline: auto;
  margin-top: 6.5rem;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__text01.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__text01 {
    width: 35.7rem;
    margin-top: 4.8rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__text01.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-intro__text02 {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  text-align: center;
  margin-top: 8.2rem;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__text02.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__text02 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    margin-top: 5.7rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__text02.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-intro__text03 {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.7647058824;
  letter-spacing: 0em;
  font-weight: 800;
  text-align: center;
  margin-top: 11.2rem;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__text03.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__text03 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8888888889;
    letter-spacing: 0em;
    font-weight: 800;
    margin-top: 7.1rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__text03.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-intro__dateTitle {
  width: 42rem;
  height: 6rem;
  margin-top: 10.5rem;
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-intro__dateTitle {
    width: 20rem;
    height: 5rem;
    margin-top: 5rem;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-intro__dateTitle:before, .p-intro__dateTitle:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 7.2rem;
  border: 1px solid #ffffff;
  position: absolute;
  top: -0.6rem;
}
@media screen and (max-width: 900px ) {
  .p-intro__dateTitle:before, .p-intro__dateTitle:after {
    width: 0.8rem;
    height: 5.8rem;
    top: -0.4rem;
  }
}
.p-intro__dateTitle:before {
  border-right: none;
  left: -0.8rem;
}
@media screen and (max-width: 900px ) {
  .p-intro__dateTitle:before {
    border-right: none;
    left: -0.6rem;
  }
}
.p-intro__dateTitle:after {
  border-left: none;
  right: -0.8rem;
}
@media screen and (max-width: 900px ) {
  .p-intro__dateTitle:after {
    border-left: none;
    right: -0.6rem;
  }
}
.p-intro__date {
  width: 59.7rem;
  margin-inline: auto;
  margin-top: 4.8rem;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-intro__date.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-intro__date {
    width: 35.3rem;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-intro__date.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}

.p-progress {
  width: 100dvw;
  background: rgba(255, 255, 255, 0.5);
  color: #5d5d5d;
  position: relative;
}
.p-progress:before, .p-progress:after {
  content: "";
  width: 100%;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
}
.p-progress:before {
  top: -1rem;
}
.p-progress:after {
  bottom: -1rem;
}
.p-progress__inner {
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-progress__inner {
    padding-block: 6rem;
  }
}
.p-progress__title {
  font-size: 60px;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.p-progress__title.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-progress__title {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-progress__title.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-progress__title small {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
}
@media screen and (max-width: 900px ) {
  .p-progress__title small {
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-progress__caption {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  text-align: center;
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-progress__caption {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 400;
    margin-top: 2.9rem;
  }
}
.p-progress__ratio {
  margin-top: 3rem;
  width: 100rem;
  height: 10rem;
  background: transparent;
  margin-inline: auto;
  display: flex;
}
@media screen and (max-width: 900px ) {
  .p-progress__ratio {
    width: 37rem;
    height: 10rem;
    margin-top: 4rem;
  }
}
.p-progress__ratioItem {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  row-gap: 0.5rem;
  transition: width 1.2s cubic-bezier(0.77, 0, 0.18, 1);
}
.p-progress__ratioItem p {
  color: #ffffff;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
}
.p-progress__ratioItem--predator {
  background: #d76761;
}
.p-progress__ratioItem--predator img {
  width: 13.4rem;
}
.p-progress__ratioItem--f50 {
  background: #a0bc75;
}
.p-progress__ratioItem--f50 img {
  width: 10.2rem;
}
.p-progress__subTitle {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  text-align: center;
  margin-top: 4.6rem;
}
@media screen and (max-width: 900px ) {
  .p-progress__subTitle {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-progress__reason {
  width: 100rem;
  margin-inline: auto;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 900px ) {
  .p-progress__reason {
    width: 37rem;
    margin-top: 3.6rem;
    grid-template-columns: repeat(1, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 3.6rem;
  }
}
.p-progress__reasonBlock--predator h4 {
  width: 13.4rem;
}
.p-progress__reasonBlock--f50 h4 {
  width: 10.2rem;
}
@media screen and (max-width: 900px ) {
  .p-progress__reasonBlock--f50 h4 {
    margin-inline: auto 0;
  }
}
.p-progress__reasonBlock ul {
  width: 100%;
  padding-block: 1.8em;
  padding-inline: 2em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-progress__reasonBlock ul {
    padding-block: 1.2em;
    padding-inline: 1em;
  }
}
.p-progress__reasonBlock ul:before, .p-progress__reasonBlock ul:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 100%;
  border: 0.1rem solid #ffffff;
  position: absolute;
  top: 0;
}
.p-progress__reasonBlock ul:before {
  left: 0;
  border-right: none;
}
.p-progress__reasonBlock ul:after {
  right: 0;
  border-left: none;
}
.p-progress__reasonBlock li {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-progress__reasonBlock li:before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  border-radius: 100%;
  background: #5d5d5d;
  margin-top: 0.4em;
}

.p-campaign {
  position: relative;
  z-index: 5;
}
.p-campaign:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}
.p-campaign__inner {
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-campaign__inner {
    padding-block: 8rem;
  }
}
.p-campaign__title {
  width: 67.7rem;
  height: auto;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-campaign__title.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-campaign__title {
    width: 28.5rem;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-campaign__title.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-campaign__subtitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 9.5rem;
  row-gap: 5rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle {
    margin-top: 3rem;
    row-gap: 3rem;
  }
}
.p-campaign__subtitle h3 {
  font-size: 70px;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-campaign__subtitle h3.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-campaign__subtitle h3.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-campaign__subtitle p {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-campaign__subtitle p.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle p {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-campaign__subtitle p.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-campaign__subtitle:before, .p-campaign__subtitle:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 16.8rem;
  border: 1px solid #ffffff;
  top: -5rem;
  position: absolute;
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle:before, .p-campaign__subtitle:after {
    width: 0.8rem;
    height: 22.6rem;
    top: -6.5rem;
  }
}
.p-campaign__subtitle:before {
  left: -18rem;
  border-right: none;
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle:before {
    left: -1.2rem;
  }
}
.p-campaign__subtitle:after {
  right: -18rem;
  border-left: none;
}
@media screen and (max-width: 900px ) {
  .p-campaign__subtitle:after {
    right: -1.2rem;
  }
}
.p-campaign__text {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 1.7647058824;
  letter-spacing: 0em;
  font-weight: 800;
  margin-top: 5.5rem;
  opacity: 0;
  transition: opacity 0.6s 0.2s;
}
@media screen and (max-width: 900px ) {
  .p-campaign__text {
    margin-top: 4.6rem;
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.5789473684;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-campaign__text span {
  position: relative;
  z-index: 10;
}
.p-campaign__text span:after {
  content: "";
  display: block;
  height: 2.5rem;
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 1s 0.5s ease-in-out;
}
@media screen and (max-width: 900px ) {
  .p-campaign__text span:after {
    height: 1.4rem;
  }
}
.p-campaign__text span:first-of-type:after {
  background: #d76761;
}
.p-campaign__text span:last-of-type:after {
  background: #a0bc75;
  transition-delay: 0.8s;
}
.p-campaign__text.is-active {
  opacity: 1;
}
.p-campaign__text.is-active span:after {
  width: 100%;
}
.p-campaign__caption {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.6s 0.2s;
}
@media screen and (max-width: 900px ) {
  .p-campaign__caption {
    margin-top: 2.6rem;
  }
}
.p-campaign__caption.is-active {
  opacity: 1;
}

.p-vote {
  position: relative;
  z-index: 10;
}
.p-vote__inner {
  width: 192rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-vote__inner {
    width: 100dvw;
  }
}
.p-vote__item {
  width: 100%;
  position: relative;
}
.p-vote__item--predator {
  background: #d76761;
}
.p-vote__item--predator .p-vote__itemTitle {
  width: 29.1rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__item--predator .p-vote__itemTitle {
    width: 12rem;
    left: 1rem;
    right: auto;
  }
}
.p-vote__item--predator .p-vote__buttonCaption {
  width: 22.9rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__item--predator .p-vote__buttonCaption {
    width: 12rem;
  }
}
.p-vote__item--f50 {
  background: #a0bc75;
}
.p-vote__item--f50 .p-vote__itemTitle {
  width: 23.4rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__item--f50 .p-vote__itemTitle {
    width: 9.6rem;
    left: auto;
    right: 1rem;
  }
}
.p-vote__item--f50 .p-vote__buttonCaption {
  width: 16.2rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__item--f50 .p-vote__buttonCaption {
    width: 8.6rem;
  }
}
.p-vote__itemTitle {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-inline: auto;
  transform: translateY(-100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin-inline: auto;
}
.p-vote__itemImage {
  width: 100%;
  height: auto;
  aspect-ratio: 960/595;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-vote__itemImage {
    aspect-ratio: 195/300;
  }
}
.p-vote__itemImage > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-vote__imageCopy {
  width: 20.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}
@media screen and (max-width: 900px ) {
  .p-vote__imageCopy {
    width: 15rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.p-vote__itemInfo {
  width: 100%;
  height: auto;
  padding-block: 6rem 15rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__itemInfo {
    padding-block: 14rem 8rem;
  }
}
.p-vote__button {
  width: 32rem;
  height: 12.4rem;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-inline: auto;
  opacity: 0;
  pointer-events: none;
  display: none;
}
.p-vote__button.is-active {
  opacity: 1;
  pointer-events: all;
  display: block;
}
.p-vote__button.is-active.is-inactive {
  opacity: 0.35;
  pointer-events: none;
}
@media screen and (max-width: 900px ) {
  .p-vote__button {
    width: 16rem;
    height: 6.2rem;
  }
}
.p-vote__button span {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0em;
  font-weight: 400;
  transition: background 0.3s;
}
@media screen and (max-width: 900px ) {
  .p-vote__button span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.0714285714;
    letter-spacing: 0em;
    font-weight: 400;
    display: flex;
    justify-content: center;
  }
}
.p-vote__button small {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 900px ) {
  .p-vote__button small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-vote__button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: -1;
}
.p-vote__button:after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 1.1rem;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.3rem;
  margin-inline: auto;
  z-index: 2;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 900px ) {
  .p-vote__button:after {
    width: 1.1rem;
    height: 0.6rem;
    bottom: 0.8rem;
  }
}
.p-vote__button:hover span {
  background: rgba(0, 0, 0, 0.4);
}
.p-vote__buttonCaption {
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__buttonCaption {
    margin-top: 1.5rem;
  }
}
.p-vote__caption {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  bottom: 20rem;
}
.p-vote__caption img {
  width: 36.7rem;
}
@media screen and (max-width: 900px ) {
  .p-vote__caption img {
    width: 17rem;
  }
}
.p-vote__caption span {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
}

.p-movie {
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-movie {
    padding-block: 8rem;
  }
}
.p-movie__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-movie__title {
    row-gap: 2rem;
  }
}
.p-movie__title h2 {
  font-size: 50px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-movie__title h2.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-movie__title h2 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-movie__title h2.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-movie__title p {
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  opacity: 0;
  transform: translateY(1rem);
  filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
  transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
}
.p-movie__title p.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(2rem 2rem 0 rgba(0, 0, 0, 0.05));
}
@media screen and (max-width: 900px ) {
  .p-movie__title p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6666666667;
    letter-spacing: 0em;
    font-weight: 800;
    opacity: 0;
    transform: translateY(0.5rem);
    filter: drop-shadow(0rem 0rem 0 rgba(0, 0, 0, 0.05));
    transition: opacity 0.8s, transform 0.8s, filter 0.8s 0.6s;
  }
  .p-movie__title p.is-active {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, 0.05));
  }
}
.p-movie__title:before, .p-movie__title:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 15.8rem;
  top: 0rem;
  position: absolute;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-movie__title:before, .p-movie__title:after {
    width: 0.8rem;
    height: 12.4rem;
    top: -1rem;
  }
}
.p-movie__title:before {
  left: -5rem;
  border-right: none;
}
@media screen and (max-width: 900px ) {
  .p-movie__title:before {
    left: -1.5rem;
  }
}
.p-movie__title:after {
  right: -5rem;
  border-left: none;
}
@media screen and (max-width: 900px ) {
  .p-movie__title:after {
    right: -1.5rem;
  }
}
.p-movie__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
}
@media screen and (max-width: 900px ) {
  .p-movie__content {
    margin-top: 5rem;
    flex-direction: column;
    row-gap: 2.6rem;
  }
}
.p-movie__image {
  width: 77.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-movie__image {
    width: 36rem;
  }
}
.p-movie__image:before, .p-movie__image:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 44.4rem;
  top: -1.2rem;
  position: absolute;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 900px ) {
  .p-movie__image:before, .p-movie__image:after {
    width: 0.8rem;
    height: 26.4rem;
    top: -1rem;
  }
}
.p-movie__image:before {
  left: -1.2rem;
  border-right: none;
}
@media screen and (max-width: 900px ) {
  .p-movie__image:before {
    left: -0.4rem;
  }
}
.p-movie__image:after {
  right: -1.2rem;
  border-left: none;
}
@media screen and (max-width: 900px ) {
  .p-movie__image:after {
    right: -0.4rem;
  }
}
.p-movie__imageCopy {
  width: 20.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 1;
  bottom: 0.5rem;
  right: 1.5rem;
}
@media screen and (max-width: 900px ) {
  .p-movie__imageCopy {
    width: 15rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.p-movie__text {
  width: 44rem;
  height: -moz-fit-content;
  height: fit-content;
  text-align: justify;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.9047619048;
  letter-spacing: 0em;
  font-weight: 400;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 1rem;
}
@media screen and (max-width: 900px ) {
  .p-movie__text {
    width: 37rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0em;
    font-weight: 400;
  }
}

.p-gotop {
  display: block;
  width: 8rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 5.6rem;
  right: 3rem;
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(0);
  position: fixed;
  pointer-events: none;
  z-index: 1000;
}
.p-gotop:hover {
  transform: translateY(-1rem);
}
.p-gotop.is-active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 900px ) {
  .p-gotop {
    width: 7.3rem;
    right: 2rem;
    bottom: 3rem;
  }
}

.p-footer {
  background: #000000;
  padding-block: 15rem;
}
@media screen and (max-width: 900px ) {
  .p-footer {
    padding-block: 8rem;
  }
}
.p-footer__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 800;
  position: relative;
}
@media screen and (max-width: 900px ) {
  .p-footer__title {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 800;
  }
}
.p-footer__title:before, .p-footer__title:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 4.7rem;
  border: 1px solid #ffffff;
  top: -0.2rem;
  position: absolute;
}
@media screen and (max-width: 900px ) {
  .p-footer__title:before, .p-footer__title:after {
    top: -1rem;
  }
}
.p-footer__title:before {
  left: -4rem;
  border-right: none;
}
@media screen and (max-width: 900px ) {
  .p-footer__title:before {
    left: -2.6rem;
  }
}
.p-footer__title:after {
  right: -4rem;
  border-left: none;
}
@media screen and (max-width: 900px ) {
  .p-footer__title:after {
    right: -2.6rem;
  }
}
.p-footer__text {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 6rem;
}
@media screen and (max-width: 900px ) {
  .p-footer__text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0em;
    font-weight: 400;
    text-align: center;
  }
}
.p-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
@media screen and (max-width: 900px ) {
  .p-footer__sns {
    margin-top: 5rem;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
.p-footer__snsTitle {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.6rem;
       column-gap: 2.6rem;
}
@media screen and (max-width: 900px ) {
  .p-footer__snsTitle {
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}
.p-footer__snsTitle img {
  width: 5.8rem;
}
.p-footer__snsTitle:after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #ffffff;
}
.p-footer__snsList {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.p-footer__snsLink {
  display: block;
}
.p-footer__snsLink--x {
  width: 2.7rem;
}
.p-footer__snsLink--fb {
  width: 3.4rem;
}
.p-footer__copy {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  margin-top: 9rem;
}
@media screen and (max-width: 900px ) {
  .p-footer__copy {
    margin-top: 3rem;
  }
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 901px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */