html,
body {
  overflow-x: hidden;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

div,
span,
article,
section,
header,
footer,
aside,
p,
ul,
li,
fieldset,
legend,
label,
a,
nav,
form {
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

/* ::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
} */
@font-face {
  font-family: "GenEi M Gothic v2 Medium";
  src: url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.eot");
  src: url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.eot?#iefix") format("embedded-opentype"), url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.woff") format("woff"), url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.ttf") format("truetype"), url("https://db.onlinewebfonts.com/t/ce16916fa4bd9e29512756f2a351a699.svg#GenEi M Gothic v2 Medium") format("svg");
}
@font-face {
  font-family: "Galliard";
  src: url("/assets/fonts/ITC_Galliard_Roman.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Galliard";
  src: url("/assets/fonts/ITC_Galliard_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html {
  background: #0b0b0b !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

body {
  -webkit-font-smoothing: antialiased;
  color: #fff;
  word-break: keep-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
a {
  white-space: normal;
  word-break: break-all;
  line-break: strict;
}

#smooth-wrapper,
#smooth-content {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.mo-only {
  display: none;
}
@media (max-width: 550px) {
  .mo-only {
    display: inline;
  }
}

.pc-only {
  display: inline;
}
@media (max-width: 550px) {
  .pc-only {
    display: none;
  }
}

.scrollbar {
  position: fixed;
  top: 0;
  right: 0px;
  width: 6px;
  height: 40px;
  background: #fff;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

body.scrolling .scrollbar {
  opacity: 1;
}

main {
  position: relative;
  background: #0b0b0b;
}

.inr {
  width: 1260px;
  padding: 0 20px;
}
@media (max-width: 1260px) {
  .inr {
    width: 100%;
  }
}

.inr-s {
  width: 1020px;
  padding: 0 20px;
}
@media (max-width: 1260px) {
  .inr-s {
    width: 100%;
  }
}

.neon-btn {
  padding: 16px 19px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  box-shadow: none;
  -webkit-box-reflect: none;
}
@media (max-width: 550px) {
  .neon-btn {
    padding: 10px 8px;
  }
}
.neon-btn > span {
  position: absolute;
  display: block;
}
.neon-btn > span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f29baf);
  animation: neon1 1s linear infinite;
}
.neon-btn > span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #f29baf);
  animation: neon2 1s linear infinite;
  animation-delay: 0.25s;
}
.neon-btn > span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #f29baf);
  animation: neon3 1s linear infinite;
  animation-delay: 0.5s;
}
.neon-btn > span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #f29baf);
  animation: neon4 1s linear infinite;
  animation-delay: 0.75s;
}
.neon-btn .img-sec {
  width: 32px;
  height: 43px;
  position: relative;
  margin-right: 20px;
}
@media (max-width: 550px) {
  .neon-btn .img-sec {
    width: 23px;
    height: 31px;
    margin-right: 10px;
  }
}
.neon-btn .img-sec img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.neon-btn .img-sec img.p-icon {
  display: block;
}
.neon-btn .img-sec img.b-icon {
  display: none;
}
.neon-btn p {
  color: #f29baf;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
@media (max-width: 550px) {
  .neon-btn p {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .neon-btn:hover {
    background: #f29baf;
    box-shadow: 0 0 5px #f29baf, 0 0 25px #f29baf, 0 0 50px #f29baf, 0 0 200px #f29baf;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  }
  .neon-btn:hover .img-sec img.p-icon {
    display: none;
  }
  .neon-btn:hover .img-sec img.b-icon {
    display: block;
  }
  .neon-btn:hover p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
  }
}
@media (hover: none) {
  .neon-btn:hover {
    box-shadow: none !important;
    -webkit-box-reflect: none !important;
    background: #f29baf;
    color: #000;
  }
  .neon-btn:hover .img-sec img.p-icon {
    display: none;
  }
  .neon-btn:hover .img-sec img.b-icon {
    display: block;
  }
  .neon-btn:hover p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
  }
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
@keyframes neon1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
@keyframes neon2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
@keyframes neon3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
@keyframes neon4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
.prize-type {
  width: 100%;
  display: flex;
  gap: 100px;
  z-index: 100;
}
@media (max-width: 1260px) {
  .prize-type {
    justify-content: center;
  }
}
.prize-type .left-txt {
  width: 703px;
  margin: 0 auto;
  text-align: center;
}
.prize-type .left-txt > div {
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
.prize-type .left-txt img {
  width: 703px;
  margin: 20px 0 29px;
  text-align: center;
}
.prize-type .left-txt .type {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 550px) {
  .prize-type .left-txt .type {
    font-size: 15px;
    line-height: 19px;
  }
}
.prize-type .left-txt .type strong {
  font-family: "Montserrat", sans-serif;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #e7336e;
  font-weight: 800;
  font-size: 36px;
  color: #000;
  text-align: center;
  margin-right: 8px;
}
@media (max-width: 550px) {
  .prize-type .left-txt .type strong {
    font-size: 18px;
    width: 19px;
    height: 19px;
  }
}
.prize-type .left-txt .impact {
  font-size: 20px;
  padding: 18px 10px;
  background: #e7336e;
  border-radius: 15px;
  width: 190px;
  text-align: center;
  margin: 0 auto;
  letter-spacing: -1.5px;
}
@media (max-width: 550px) {
  .prize-type .left-txt .impact {
    width: 110px;
    padding: 9px 0px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 10px;
  }
}
.prize-type .left-txt p:not(.script) {
  font-size: 22px;
  font-weight: 500;
  color: #f3a1b5;
  margin-top: 5px;
}
.prize-type .left-txt .script {
  margin-top: 88px;
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
.prize-type .left-txt .script em {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #e7336e;
  line-height: 40px;
}
@media (max-width: 550px) {
  .prize-type .left-txt .script em {
    font-size: 18px;
    line-height: 25px;
  }
}
.prize-type .left-txt .script span {
  display: block;
}
@media (max-width: 550px) {
  .prize-type .left-txt .script {
    margin-top: 106px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -1px;
  }
  .prize-type .left-txt .script span {
    font-weight: 300;
    display: inline-block;
  }
}

.video-wrapper.send {
  position: absolute;
  width: 100%;
  height: 100%;
}
.video-wrapper.send::after {
  content: "";
  background: rgba(0, 0, 0, 0.771);
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  top: -1px;
  left: 0;
}
.video-wrapper.send video {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: hue-rotate(290deg) brightness(1) saturate(1.5);
}

.policy {
  position: relative;
  z-index: 10;
}
.policy .policy-title {
  font-size: 30px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 57px;
}
.policy .policy-title strong {
  font-weight: 900;
}
@media (max-width: 550px) {
  .policy .policy-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.policy .policy-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #f29baf;
}
@media (max-width: 550px) {
  .policy .policy-block h2 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.policy .policy-block ul li {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 550px) {
  .policy .policy-block ul li {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -1px;
  }
}
.policy .policy-block ul li span {
  display: block;
}
.policy .policy-block ul li .attn {
  font-size: 19px;
}
@media (max-width: 550px) {
  .policy .policy-block ul li .attn {
    font-size: 14px;
  }
}
.policy .policy-block ul li .attn .deco {
  width: 12px;
  height: 12px;
  display: inline-block;
}
@media (max-width: 550px) {
  .policy .policy-block ul li .attn .deco {
    width: 10px;
    height: 10px;
  }
}
.policy .policy-block strong {
  display: block;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 550px) {
  .policy .policy-block strong {
    font-size: 16px;
  }
}
.policy .policy-block mark {
  background: transparent;
}
.policy .policy-block mark em {
  font-weight: 400;
  display: inline-block;
  font-size: inherit;
}
.policy .policy-block em {
  display: block;
  font-size: 17px;
  font-weight: bold;
  font-style: normal;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.cr-pink {
  color: #f29baf;
}

.cr-green {
  color: #4bf777;
}

.cr-green-b {
  background: #4bf777;
}

.cr-cyon {
  color: #00f0ff;
}

.cr-cyon-b {
  background: #00f0ff;
}

.cr-yellow {
  color: #f0ff00;
}

.cr-white {
  color: #fff;
}

.cr-white-b {
  background: #fff;
}

#header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo img {
  width: 47px;
  height: 43px;
  display: block;
}
#header .apply-link ul {
  display: flex;
  gap: 20px;
}
#header .apply-link ul li {
  overflow: hidden;
}
#header .apply-link ul li a {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
#header .apply-link ul li a span {
  display: block;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
#header .apply-link ul li a .view-l {
  position: absolute;
  top: 100%;
  left: 0;
}
#header .apply-link ul li a:hover .view-f {
  transform: translateY(-100%);
}
#header .apply-link ul li a:hover .view-l {
  transform: translateY(-100%);
}
#header .apply-link a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

#key-visual {
  width: 100vw;
  height: 100vh;
  position: relative;
}
#key-visual .video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
#key-visual .video-wrapper::after {
  content: "";
  background: rgba(0, 0, 0, 0.771);
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  top: 0;
  left: 0;
}
#key-visual .video-wrapper video,
#key-visual .video-wrapper iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: hue-rotate(290deg) brightness(1) saturate(1.5);
}
#key-visual .title-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper {
    justify-content: start;
  }
}
#key-visual .title-wrapper .top-logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .top-logo-wrapper {
    align-items: flex-end;
    height: 43.3vh;
    padding-bottom: 9.1vh;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .top-logo-wrapper {
    padding-bottom: 32px;
    height: 30vh;
  }
}
#key-visual .title-wrapper .top-logo-wrapper .bp-logo {
  width: 17.2vw;
  transform: translateY(50%);
  opacity: 0;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .top-logo-wrapper .bp-logo {
    width: 232px;
    height: 52px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .top-logo-wrapper .bp-logo {
    width: 140px;
    height: 31px;
  }
}
#key-visual .title-wrapper .motion-wrapper {
  position: relative;
}
#key-visual .title-wrapper .motion-wrapper .middle-title-img-wrapper {
  margin-top: 62px;
  height: 8vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .middle-title-img-wrapper {
    margin-top: 0;
    height: 12vw;
  }
}
#key-visual .title-wrapper .motion-wrapper .middle-title-img-wrapper img {
  height: 8vw;
  transform: translateY(100%);
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .middle-title-img-wrapper img {
    height: 12vw;
  }
}
#key-visual .title-wrapper .motion-wrapper .bottom-title-text {
  margin-top: 55px;
  transform: scale(0.95);
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .bottom-title-text {
    margin-top: 35px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .bottom-title-text {
    margin-top: 15px;
  }
}
#key-visual .title-wrapper .motion-wrapper .bottom-title-text h2 {
  font-family: "Galliard", sans-serif;
  font-weight: 700;
  font-size: 2.45vw;
  color: #f3a1b5;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .bottom-title-text h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .bottom-title-text h2 {
    font-size: 13px;
    line-height: 16px;
  }
}
#key-visual .title-wrapper .motion-wrapper .bottom-title-text h2 > div {
  letter-spacing: 10px;
  transform: translateY(100%);
}
#key-visual .title-wrapper .motion-wrapper .bottom-title-text h2 .mg-s {
  margin-right: 1.5vw;
}
#key-visual .title-wrapper .motion-wrapper .second-motion {
  width: 100vw;
  padding: 0 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 62px;
  color: #f3a1b5;
  text-align: center;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion {
    margin-top: 58px;
    margin-top: 0;
    height: 56.7vh;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion h2,
#key-visual .title-wrapper .motion-wrapper .second-motion h3,
#key-visual .title-wrapper .motion-wrapper .second-motion .deco,
#key-visual .title-wrapper .motion-wrapper .second-motion .date {
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
#key-visual .title-wrapper .motion-wrapper .second-motion h2 br,
#key-visual .title-wrapper .motion-wrapper .second-motion h3 br,
#key-visual .title-wrapper .motion-wrapper .second-motion .deco br,
#key-visual .title-wrapper .motion-wrapper .second-motion .date br {
  display: none;
}
@media (max-width: 675px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion h2 br,
  #key-visual .title-wrapper .motion-wrapper .second-motion h3 br,
  #key-visual .title-wrapper .motion-wrapper .second-motion .deco br,
  #key-visual .title-wrapper .motion-wrapper .second-motion .date br {
    display: block;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion h2 {
  font-size: 3.5vw;
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion h2 {
    font-size: 30px;
    line-height: 47px;
    white-space: nowrap;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion h3 {
  font-size: 2.6vw;
  font-weight: 500;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion h3 {
    font-size: 25px;
    line-height: 30px;
  }
  #key-visual .title-wrapper .motion-wrapper .second-motion h3 br:not(.mob) {
    display: block;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion h3 {
    font-size: 20px;
    line-height: 36px;
    color: #fff;
  }
  #key-visual .title-wrapper .motion-wrapper .second-motion h3 br.mob {
    display: block;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion .deco {
  margin: 93px 0 15px;
  display: inline-block;
  border: 2px solid #f3a1b5;
  padding: 10px 17px;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion .deco {
    margin: 14vh 0 13px;
    padding: 4px 10px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion .deco {
    margin-top: 7vh;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion .deco p {
  font-size: 1vw;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion .deco p {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 550px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion .deco p {
    font-size: 16px;
    line-height: 19px;
    padding: 6px 16px;
  }
}
#key-visual .title-wrapper .motion-wrapper .second-motion p {
  font-size: 1.3vw;
}
@media (max-width: 991px) {
  #key-visual .title-wrapper .motion-wrapper .second-motion p {
    font-size: 15px;
    line-height: 18px;
  }
}
#key-visual .scroll-down-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
#key-visual .scroll-down-icon a {
  padding-top: 60px;
}
#key-visual .scroll-down-icon a span {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 40px;
  margin-left: -13px;
  bottom: 20px;
  box-sizing: border-box;
}
#key-visual .scroll-down-icon a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
#key-visual .scroll-down-icon p {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#events {
  width: 100%;
}
#events .top-hero-video {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 550px) {
  #events .top-hero-video {
    height: calc(var(--vh) * 57.48);
  }
}
#events .top-hero-video .video-box {
  width: 100%;
  aspect-ratio: 1920/430;
  height: calc(var(--vh) * 47.3);
  display: flex;
  justify-content: center;
  clip-path: polygon(49.85% 0%, 50.15% 0%, 50.15% 0%, 49.85% 0%);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
#events .top-hero-video .video-box.step1 {
  clip-path: polygon(49.85% 0%, 50.15% 0%, 50.15% 100%, 49.85% 100%);
  transition-duration: 1.2s;
}
#events .top-hero-video .video-box.step2 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-duration: 1.6s;
}
@media (max-width: 550px) {
  #events .top-hero-video .video-box {
    height: calc(var(--vh) * 30.5);
  }
}
#events .top-hero-video .video-box video {
  width: 100%;
  object-fit: cover;
}
#events .top-hero-video .txt-box {
  width: 100%;
  height: calc(var(--vh) * 16.35);
  text-align: center;
  padding-top: 32px;
}
@media (max-width: 991px) {
  #events .top-hero-video .txt-box {
    padding-top: 17px;
  }
}
@media (max-width: 550px) {
  #events .top-hero-video .txt-box {
    padding-top: 23px;
    height: calc(var(--vh) * 11.73);
  }
}
#events .top-hero-video .txt-box h2,
#events .top-hero-video .txt-box h3,
#events .top-hero-video .txt-box p {
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s, 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
}
#events .top-hero-video .txt-box h2.active {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  transition-delay: 0s;
}
#events .top-hero-video .txt-box p.active {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  transition-delay: 0.35s;
}
#events .top-hero-video .txt-box h3.active {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  transition-delay: 0.65s;
}
#events .top-hero-video .txt-box h2:not(.active) {
  transition-delay: 0.45s;
}
#events .top-hero-video .txt-box p:not(.active) {
  transition-delay: 0.25s;
}
#events .top-hero-video .txt-box h3:not(.active) {
  transition-delay: 0s;
}
#events .top-hero-video .txt-box h2 {
  font-size: 36px;
  line-height: 70px;
  font-weight: 700;
}
@media (max-width: 991px) {
  #events .top-hero-video .txt-box h2 {
    font-size: 30px;
  }
}
@media (max-width: 550px) {
  #events .top-hero-video .txt-box h2 {
    font-size: 19px;
    line-height: 40px;
  }
}
#events .top-hero-video .txt-box p {
  font-size: 13px;
  line-height: 15.6px;
  font-weight: 500;
}
@media (max-width: 991px) {
  #events .top-hero-video .txt-box p {
    line-height: 13.9px;
  }
}
@media (max-width: 550px) {
  #events .top-hero-video .txt-box p {
    font-size: 12px;
    line-height: 14.4px;
  }
}
#events .event-cap {
  font-size: 55px;
  font-weight: 800;
  color: #f29baf;
  font-size: 82.5px;
  text-align: center;
  padding: 10vh 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s, 0.5s;
  transition-timing-function: ease;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 550px) {
  #events .event-cap {
    font-size: 49px;
  }
}
#events .event-cap.active {
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 1;
  transition-delay: 0.65s;
}
#events .apply-condition {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#events .apply-condition p {
  font-size: 20px;
  line-height: 44px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 0;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 550px) {
  #events .apply-condition p {
    font-size: 14px;
    line-height: 40px;
  }
}
#events .apply-condition p .deco {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  background: #e7336e;
  z-index: -1;
}
#events .apply-condition p .deco.left {
  left: 50%;
}
#events .apply-condition p .deco.right {
  right: 50%;
}

#schedule {
  width: 100vw;
  padding: 75px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 550px) {
  #schedule {
    background: linear-gradient(to bottom, #0b0b0b 0%, #000 100%);
  }
}
#schedule .table {
  margin-top: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 550px) {
  #schedule .table {
    margin-top: 83px;
  }
}
#schedule .table .table-title {
  position: relative;
  padding: 65px 90px;
  margin-bottom: 90px;
  text-align: center;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
@media (max-width: 550px) {
  #schedule .table .table-title {
    padding: 26px 32px;
    margin-bottom: 46px;
  }
}
#schedule .table .table-title .corner::after, #schedule .table .table-title .corner::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
}
#schedule .table .table-title .corner.top::after, #schedule .table .table-title .corner.top::before {
  top: 0;
  border-top: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title .corner.top::before {
  left: 0;
  border-left: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title .corner.top::after {
  right: 0;
  border-right: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title .corner.bottom::after, #schedule .table .table-title .corner.bottom::before {
  bottom: 0;
  border-bottom: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title .corner.bottom::before {
  left: 0;
  border-left: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title .corner.bottom::after {
  right: 0;
  border-right: 1px solid hsl(0, 0%, 29%);
}
#schedule .table .table-title p {
  font-size: 22px;
  line-height: 26px;
  font-weight: 500;
}
@media (max-width: 550px) {
  #schedule .table .table-title p {
    font-size: 14px;
    line-height: 17px;
  }
}
#schedule .table .tb-row {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid hsl(0, 0%, 29%);
  color: hsl(0, 0%, 29%);
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
  width: 100%;
}
#schedule .table .tb-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
  transform-origin: center;
  transform: scaleY(0);
}
#schedule .table .tb-row .table-inr {
  width: 1200px;
  display: grid;
  grid-template-columns: 30% 20% 20% 30%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  #schedule .table .tb-row .table-inr {
    width: 100%;
  }
}
@media (max-width: 550px) {
  #schedule .table .tb-row .table-inr {
    grid-template-columns: 25% 25% 25% 25%;
    align-items: center;
  }
}
#schedule .table .tb-row.fade::before {
  background: #e7336e;
  z-index: -1;
}
#schedule .table .tb-row.fade:hover::before {
  transition: transform 0.4s ease;
  transform: scaleY(1);
}
#schedule .table .tb-row.fade:hover div {
  color: #fff;
}
#schedule .table .tb-row .tb-head {
  font-size: 16px;
  line-height: 19.2px;
  padding-bottom: 35px;
  text-align: center;
  color: #fff;
}
@media (max-width: 550px) {
  #schedule .table .tb-row .tb-head {
    padding-bottom: 7px;
  }
}
#schedule .table .tb-row .tb-cell {
  font-size: 38px;
  text-align: center;
  padding: 33px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 550px) {
  #schedule .table .tb-row .tb-cell {
    font-size: 20px;
    padding: 15px 0;
  }
  #schedule .table .tb-row .tb-cell span {
    display: block;
  }
}
#schedule .date-info {
  margin-top: 93px;
}
@media (max-width: 550px) {
  #schedule .date-info {
    margin-top: 30px;
  }
}
#schedule .date-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 550px) {
  #schedule .date-info li {
    flex-direction: column;
    margin-bottom: 23px;
    gap: 12px;
  }
}
#schedule .date-info li .label {
  width: 138px;
  height: 33px;
  border: 1px solid #fff;
  display: block;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  font-weight: 400;
}
@media (max-width: 550px) {
  #schedule .date-info li .label {
    font-size: 12px;
    width: 110px;
    height: 30px;
    line-height: 30px;
  }
}
#schedule .date-info li .value {
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 550px) {
  #schedule .date-info li .value {
    font-size: 14px;
    line-height: 17px;
  }
}
#schedule .neon-btn {
  margin-top: 78px;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}

#goods {
  width: 100%;
  padding-top: 76px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 550px) {
  #goods {
    background: #000;
  }
}
#goods .prize-type {
  justify-content: center;
}
#goods .fixed-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 188px;
  height: calc(var(--vh) * 100);
}
#goods .fixed-title .mob-goods-bg {
  height: calc(var(--vh) * 100);
  position: absolute;
  top: 0%;
  transform: translateY(-35%);
}
#goods .fixed-title .mob-goods-bg img {
  width: 100%;
  object-fit: cover;
}
#goods .fixed-title .fin-txt {
  color: #f3a1b5;
  font-family: "Galliard", sans-serif;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 550px) {
  #goods .fixed-title .fin-txt {
    margin-bottom: 30px;
  }
}
#goods .fixed-title .fin-txt h2 {
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.11, 0.7, 0.6, 0.94);
  font-size: 24px;
  line-height: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (max-width: 1500px) {
  #goods .fixed-title .fin-txt h2 {
    font-size: 19px;
    line-height: 32px;
  }
}
@media (max-width: 550px) {
  #goods .fixed-title .fin-txt h2 {
    line-height: 14px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}
#goods .fixed-title .fin-txt h2.active {
  transform: translateY(0%);
}
#goods .fixed-title .fin-txt h2 strong {
  font-weight: 500;
  font-size: 31px;
  line-height: 48px;
  font-family: "Galliard", sans-serif;
  letter-spacing: 1.5px;
}
@media (max-width: 1500px) {
  #goods .fixed-title .fin-txt h2 strong {
    font-size: 29px;
    line-height: 38px;
  }
}
@media (max-width: 550px) {
  #goods .fixed-title .fin-txt h2 strong {
    font-size: 14px;
    line-height: 17px;
  }
}
#goods .fixed-title .switch-text {
  display: flex;
  align-items: center;
  margin-top: 30px;
  flex-wrap: nowrap;
  gap: 5.5vw;
  position: relative;
  line-height: 13vw;
}
@media (max-width: 550px) {
  #goods .fixed-title .switch-text > div {
    height: 100%;
    width: 35vw;
    position: relative;
    width: 40vw;
  }
  #goods .fixed-title .switch-text > div.left h2, #goods .fixed-title .switch-text > div.right h2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  #goods .fixed-title .switch-text > div.left h2 {
    left: 0;
  }
  #goods .fixed-title .switch-text > div.right h2 {
    right: 0;
  }
}
@media (max-width: 550px) {
  #goods .fixed-title .switch-text {
    gap: 1vw;
  }
}
#goods .fixed-title .switch-text .fadeY-ani {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-39.5%, -50%);
  width: 12vw;
  height: 12vw;
  overflow: hidden;
}
@media (max-width: 550px) {
  #goods .fixed-title .switch-text .fadeY-ani {
    width: 14vw;
    height: 13.5vw;
    width: 17vw;
    height: 16vw;
  }
}
#goods .fixed-title .switch-text .fadeY-ani h2 {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 45%);
  transition: transform 0.75s 0.3s cubic-bezier(0.11, 0.7, 0.6, 0.94);
}
@media (max-width: 550px) {
  #goods .fixed-title .switch-text .fadeY-ani h2 {
    transform: translate(-50%, 70%);
  }
}
#goods .fixed-title .switch-text .fadeY-ani h2.active {
  transform: translate(-50%, -50%);
}
#goods .fixed-title .switch-text h2 {
  font-size: 13vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 550px) {
  #goods .fixed-title .switch-text h2 {
    font-size: 21vw;
  }
}
#goods .fixed-title .switch-text .impact-img {
  width: 30vw;
  height: 30vw;
  background: #e15e7e;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
#goods .fixed-title .switch-text .impact-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#goods .fixed-title .switch-text .impact-img img.on {
  opacity: 1;
}
#goods .fixed-title .fin-btn-wrapper {
  margin-top: 78px;
}
#goods .fixed-title .fin-btn-wrapper button {
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.11, 0.7, 0.6, 0.94), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#goods .fixed-title .fin-btn-wrapper button.active {
  transform: translateY(0);
}
#goods .goods-wrapper {
  padding-bottom: 250px;
  margin-top: 111px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 550px) {
  #goods .goods-wrapper {
    padding-bottom: 125px;
  }
}
#goods .goods-wrapper p {
  color: #fff;
}
#goods .goods-wrapper p.arlet {
  margin-top: 45px;
  font-size: 13px;
  line-height: 15.6px;
  text-align: center;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
#goods .goods-wrapper .goods-box {
  display: flex;
  justify-content: space-between;
  gap: 17px;
}
@media (max-width: 1260px) {
  #goods .goods-wrapper .goods-box {
    width: 100%;
  }
}
@media (max-width: 550px) {
  #goods .goods-wrapper .goods-box {
    flex-direction: column;
  }
}
#goods .goods-wrapper .goods-box .box {
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: border-radius 0.35s;
  position: relative;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
  overflow: visible;
}
@media (max-width: 550px) {
  #goods .goods-wrapper .goods-box .box {
    width: 100%;
  }
}
#goods .goods-wrapper .goods-box .box:nth-child(3) img {
  height: 270px;
}
@media (max-width: 991px) {
  #goods .goods-wrapper .goods-box .box:nth-child(3) img {
    aspect-ratio: 178/270;
    height: 60%;
  }
}
#goods .goods-wrapper .goods-box .box img {
  height: 220px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}
@media (max-width: 991px) {
  #goods .goods-wrapper .goods-box .box img {
    aspect-ratio: 176/220;
    height: 60%;
  }
}
#goods .goods-wrapper .goods-box .box p {
  z-index: 10;
}
#goods .goods-wrapper .goods-box .box p:not(.price) {
  position: absolute;
  top: 34px;
  left: 36px;
  font-size: 14px;
  line-height: 17px;
  font-weight: 800;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  letter-spacing: -0.5px;
}
@media (max-width: 550px) {
  #goods .goods-wrapper .goods-box .box p:not(.price) {
    top: 20px;
    left: 20px;
  }
}
#goods .goods-wrapper .goods-box .box p:not(.price).center {
  align-items: center;
}
#goods .goods-wrapper .goods-box .box p:not(.price) span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-top: 3.5px;
  opacity: 0;
  font-size: 15px;
}
#goods .goods-wrapper .goods-box .box .price {
  position: absolute;
  bottom: -12px;
  color: #fff;
  right: 40px;
  display: flex;
  font-size: 20px;
  font-weight: 400;
  opacity: 0;
}
@media (max-width: 550px) {
  #goods .goods-wrapper .goods-box .box .price {
    bottom: -2px;
  }
}
#goods .goods-wrapper .goods-box .box .price strong {
  font-size: 50px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  display: inline-block;
  line-height: 0.7;
  margin-right: 4px;
}
@media (min-width: 551px) {
  #goods .goods-wrapper .goods-box .box:hover {
    border-radius: 50%;
  }
  #goods .goods-wrapper .goods-box .box:hover img {
    opacity: 0;
  }
  #goods .goods-wrapper .goods-box .box:hover p span {
    opacity: 1;
  }
  #goods .goods-wrapper .goods-box .box:hover .price {
    opacity: 1;
  }
  #goods .goods-wrapper .goods-box .box:hover::before {
    transition: opacity 0.5s ease;
    opacity: 1;
  }
}
#goods .goods-wrapper .goods-box .box.active {
  border-radius: 50%;
}
#goods .goods-wrapper .goods-box .box.active img {
  opacity: 0;
}
#goods .goods-wrapper .goods-box .box.active p span {
  opacity: 1;
}
#goods .goods-wrapper .goods-box .box.active .price {
  opacity: 1;
}
#goods .goods-wrapper .goods-box .box.active::before {
  opacity: 1;
}
#goods .goods-wrapper .goods-box .box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 20px;
}
#goods .goods-wrapper .goods-box .box:nth-child(1) {
  background: #e15e7e;
}
#goods .goods-wrapper .goods-box .box:nth-child(1)::before {
  background-image: url(../img/goods/goods-1-detail.png);
  transform: translate(-50%, -50%);
}
#goods .goods-wrapper .goods-box .box:nth-child(2) {
  background: #8d8d8d;
}
#goods .goods-wrapper .goods-box .box:nth-child(2)::before {
  background-image: url(../img/goods/goods-2-detail.png);
  transform: translate(-50%, -50%);
}
#goods .goods-wrapper .goods-box .box:nth-child(3) {
  background: #e15e7e;
}
#goods .goods-wrapper .goods-box .box:nth-child(3)::before {
  background-image: url(../img/goods/goods-3-detail.png);
  transform: translate(-40%, -50%);
}

#product {
  padding: 140px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#product .title {
  font-size: 36px;
  line-height: 70px;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
@media (max-width: 991px) {
  #product .title h2 {
    font-size: 37px;
    line-height: 50px;
  }
}
@media (max-width: 550px) {
  #product .title h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
#product .icon {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
#product .icon img {
  height: 30px;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
#product .video-wrapper {
  width: 1200px;
  margin-top: 110px;
  transform: matrix(1, 0, 0, 1, 0, 30) scale(0.9);
  opacity: 0;
}
@media (max-width: 1260px) {
  #product .video-wrapper {
    width: 100%;
  }
}
@media (max-width: 550px) {
  #product .video-wrapper {
    margin-top: 64px;
  }
}
#product .video-wrapper video {
  width: 100%;
  object-fit: cover;
}
#product .video-wrapper p {
  margin-top: 70px;
  font-size: 20px;
  line-height: 32px;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
#product .video-wrapper p strong {
  font-weight: 400;
  color: #fd7650;
}
@media (max-width: 550px) {
  #product .video-wrapper p {
    margin-top: 36px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 300;
    letter-spacing: -1px;
  }
}
#product .poster-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 180px;
  gap: 50px;
  transform: matrix(1, 0, 0, 1, 0, 60);
  opacity: 0;
}
@media (max-width: 550px) {
  #product .poster-wrapper {
    margin-top: 136px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
#product .poster-wrapper > div {
  width: 50%;
}
@media (max-width: 550px) {
  #product .poster-wrapper > div {
    width: 100%;
  }
}
#product .poster-wrapper > div.right-sec {
  margin-top: 400px;
}
@media (max-width: 550px) {
  #product .poster-wrapper > div.right-sec {
    margin-top: 0;
  }
}
#product .poster-wrapper .img-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 580/813;
  margin-bottom: 130px;
  border-radius: 20px;
}
@media (max-width: 550px) {
  #product .poster-wrapper .img-wrapper {
    margin-bottom: 36px;
    aspect-ratio: 350/496;
  }
  #product .poster-wrapper .img-wrapper:last-child {
    margin-bottom: 0;
  }
}
#product .poster-wrapper .img-wrapper img {
  object-fit: cover;
}
#product .sales-channel.policy {
  border: 1px solid #f29baf;
  display: flex;
  justify-content: center;
  padding: 50px 140px;
}
@media (max-width: 550px) {
  #product .sales-channel.policy {
    padding: 50px 20px;
    margin-top: 140px;
  }
}
#product .sales-channel.policy .policy-inner {
  text-align: left;
}
#product .sales-channel.policy .policy-title {
  font-size: 33px;
}
@media (max-width: 550px) {
  #product .sales-channel.policy .policy-title {
    font-size: 21px;
  }
}
#product .sales-channel.policy .policy-block h2 {
  font-size: 25px;
}
@media (max-width: 550px) {
  #product .sales-channel.policy .policy-block h2 {
    font-size: 19px;
  }
}
#product .sales-channel.policy .policy-block ul li {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
@media (max-width: 550px) {
  #product .sales-channel.policy .policy-block ul li {
    font-size: 17px;
  }
}

#instructions {
  display: flex;
  justify-content: center;
  padding: 140px 0 370px;
  position: relative;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 550px) {
  #instructions {
    padding: 125px 0 185px;
  }
}
#instructions .video-wrapper.fixed {
  width: 100%;
  height: calc(var(--vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
}
#instructions .apply-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 324px;
}
@media (max-width: 550px) {
  #instructions .apply-step {
    margin-bottom: 216px;
  }
}
#instructions .apply-step h2 {
  font-size: 48px;
  line-height: 54px;
  font-weight: 600;
  color: #f3a1b5;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 550px) {
  #instructions .apply-step h2 {
    color: #fff;
    font-size: 28px;
    line-height: 54px;
    font-weight: 300;
    width: 100%;
  }
}
#instructions .apply-step .step-box-wrapper {
  margin-top: 80px;
  display: flex;
  gap: 17px;
  width: 100%;
}
@media (max-width: 790px) {
  #instructions .apply-step .step-box-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper {
    margin-top: 23px;
    gap: 36px;
  }
}
#instructions .apply-step .step-box-wrapper .box {
  padding: 53px 20px 20px 20px;
  background: #202020;
  width: 33.3333333333%;
  border-radius: 12px;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 790px) {
  #instructions .apply-step .step-box-wrapper .box {
    width: calc(50% - 8.5px);
  }
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper .box {
    width: 100%;
    background: #fff;
    border-radius: 0;
    padding: 29px 40px 30px 40px;
  }
}
#instructions .apply-step .step-box-wrapper .box .txt-info {
  text-align: center;
}
#instructions .apply-step .step-box-wrapper .box .txt-info h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper .box .txt-info h2 {
    color: #000;
    margin-bottom: 12px;
  }
}
#instructions .apply-step .step-box-wrapper .box .txt-info p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper .box .txt-info p {
    color: #000;
    line-height: 25px;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.5px;
  }
}
#instructions .apply-step .step-box-wrapper .box .txt-info p strong {
  font-weight: inherit;
  color: #f29baf;
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper .box .txt-info p strong {
    color: #e7336e;
  }
}
#instructions .apply-step .step-box-wrapper .box .txt-info p {
  margin-bottom: 20px;
}
#instructions .apply-step .step-box-wrapper .box .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 268/231;
}
@media (max-width: 550px) {
  #instructions .apply-step .step-box-wrapper .box .img-wrapper img {
    aspect-ratio: 268/200;
  }
}
#instructions .apply-step .alert-txt {
  text-align: left;
  width: 100%;
  z-index: 10;
}
#instructions .apply-step .alert-txt p {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 16px;
}
@media (max-width: 550px) {
  #instructions .apply-step .alert-txt p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 26px;
  }
}
#instructions .demonstration {
  display: flex;
}
@media (max-width: 550px) {
  #instructions .demonstration {
    flex-direction: column-reverse;
  }
}
#instructions .demonstration .left-video {
  width: 420px;
  height: auto;
  aspect-ratio: 420/746;
  overflow: hidden;
  transform: matrix(1, 0, 0, 1, 0, 30) scale(0.9);
  opacity: 0;
}
@media (max-width: 550px) {
  #instructions .demonstration .left-video {
    margin-top: 37px;
    width: 100%;
    height: 821px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
#instructions .demonstration .left-video video {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 550px) {
  #instructions .demonstration .left-video video {
    height: calc(100% - 250px);
    width: 90%;
  }
}
#instructions .demonstration .right-txt {
  width: 475px;
  margin-top: 70px;
  margin-left: 90px;
}
@media (max-width: 1260px) {
  #instructions .demonstration .right-txt {
    margin-left: 50px;
  }
}
@media (max-width: 550px) {
  #instructions .demonstration .right-txt {
    width: 100%;
    margin: 0;
  }
}
#instructions .demonstration .right-txt h2,
#instructions .demonstration .right-txt p {
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
#instructions .demonstration .right-txt h2 {
  font-size: 28px;
  line-height: 33px;
  font-weight: 500;
  color: #f3a1b5;
  margin-bottom: 38px;
}
@media (max-width: 550px) {
  #instructions .demonstration .right-txt h2 {
    font-size: 18px;
    margin-bottom: 19px;
  }
}
#instructions .demonstration .right-txt p {
  font-size: 18px;
  line-height: 34px;
  font-weight: 300;
}
#instructions .demonstration .right-txt p strong {
  font-weight: inherit;
  color: #f3a1b5;
}
@media (max-width: 550px) {
  #instructions .demonstration .right-txt p {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -1px;
  }
}
#instructions .download-pdf-btn {
  text-align: left;
  transform: matrix(1, 0, 0, 1, 0, 30);
  opacity: 0;
}
@media (max-width: 550px) {
  #instructions .download-pdf-btn.mo-only {
    opacity: 1 !important;
    transform: none !important;
    margin: 0 auto;
  }
}
#instructions .download-pdf-btn.mo-only a {
  margin-top: 0;
}
#instructions .download-pdf-btn a {
  display: inline-flex;
  padding: 12px 37px 12px 28px;
  margin-top: 85px;
}
#instructions .download-pdf-btn a p {
  display: block;
}
#instructions .download-pdf-btn a p span {
  line-height: 24px;
  font-weight: 500;
  display: block;
}
#instructions .policy {
  margin-top: 250px;
  position: relative;
  z-index: 10;
}
@media (max-width: 550px) {
  #instructions .policy {
    margin-top: 0;
  }
}

footer {
  background: #f4f5f7;
}
footer .flow-img-wrapper {
  width: 100%;
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  animation: flow 30s linear infinite;
  padding: 55px 0 33px;
}
footer .flow-img-wrapper img {
  margin-right: 6vw;
  width: 6.5vw;
  flex-shrink: 0;
  aspect-ratio: 133/148;
}
@media (max-width: 1260px) {
  footer .flow-img-wrapper img {
    width: 8.45vw;
    margin-right: 7.8vw;
  }
}
@media (max-width: 768px) {
  footer .flow-img-wrapper img {
    width: 9.75vw;
    margin-right: 9vw;
  }
}
@media (max-width: 550px) {
  footer .flow-img-wrapper img {
    width: 16.25vw;
    margin-right: 15vw;
  }
}
footer .bottom-info {
  padding: 62px 20px 140px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  color: #000;
}
@media (max-width: 960px) {
  footer .bottom-info {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 56px 20px 48px 20px;
  }
}
footer .bottom-info .left-logo {
  width: 171px;
  height: 157px;
}
@media (max-width: 960px) {
  footer .bottom-info .left-logo {
    width: 71px;
    height: 66px;
    margin-top: 54px;
  }
}
footer .bottom-info .left-logo img {
  width: inherit;
  height: inherit;
}
footer .bottom-info .right-info {
  display: flex;
  align-items: flex-end;
  gap: 6.5vw;
}
@media (max-width: 960px) {
  footer .bottom-info .right-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
footer .bottom-info .right-info .company-info {
  color: #000;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
}
footer .bottom-info .right-info .company-info p {
  font-size: 15px;
  line-height: 16px;
}
footer .bottom-info .right-info .company-info p.script {
  letter-spacing: -2px;
  font-weight: 400;
}
footer .bottom-info .right-info .company-info p.script em {
  font-style: normal;
  line-height: 18px;
}
footer .bottom-info .right-info .company-info p strong {
  font-weight: 500;
}
@media (max-width: 960px) {
  footer .bottom-info .right-info .company-info p {
    font-size: 12px;
    line-height: 15px;
  }
}
footer .bottom-info .right-info .company-info a {
  color: #000;
  font-size: 15px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 4px 0px 0px;
}
footer .bottom-info .right-info .company-info a strong {
  font-weight: inherit;
}
@media (max-width: 960px) {
  footer .bottom-info .right-info .company-info a {
    font-size: 11px;
  }
}
footer .bottom-info .right-info .copy-right p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  letter-spacing: -1px;
}
@media (max-width: 960px) {
  footer .bottom-info .right-info .copy-right p {
    font-size: 11px;
  }
}
@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=style.css.map */
