@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: 10px;
  font-size: 0.4545454545vw;
}
@media screen and (max-width: 900px ) {
  html {
    font-size: 1.3333333333vw;
  }
}

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

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  color: #000000;
  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;
}

@keyframes illustAnime {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes illustAnime01 {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-13deg);
  }
  20% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes illustAnime02 {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(8deg);
  }
  20% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes illustAnime03 {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(-16deg);
  }
  30% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes bgFloating {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 10%, 0);
  }
}
@keyframes bgFloatingMv {
  0% {
    transform: translate3d(0, -5%, 0);
  }
  100% {
    transform: translate3d(0, 2%, 0);
  }
}
@keyframes flipHorizontal {
  0%, 40% {
    transform: scaleX(1);
  }
  50%, 90% {
    transform: scaleX(-1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes jagged-scale {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2) rotate(5deg);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2) rotate(-5deg);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes jagged-scale02 {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1);
  }
}
/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  backface-visibility: hidden;
}
.l-main {
  width: 100dvw;
  height: auto;
  padding-top: 100px;
}
@media screen and (max-width: 760px) {
  .l-main {
    padding-top: 62px;
  }
}
.l-main__stickyArea {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
}
.l-main__scrollArea {
  width: 75rem;
  height: auto;
  margin-inline: auto;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px ) {
  .l-main__scrollArea {
    width: 100dvw;
    height: auto;
  }
}

header {
  letter-spacing: 0.08em;
}
header .globalNavi-group > .mainMenu-group > li > a {
  font-size: 18px;
}
@media screen and (max-width: 760px) {
  header .globalNavi-group > .mainMenu-group > li > a {
    font-size: 14px;
  }
}
header .searchButton-group > a {
  font-size: 16px;
}
@media screen and (max-width: 760px) {
  header .searchButton-group > a {
    font-size: 10px;
  }
}

/* #c-star
----------------------------------------------------------------- */
.c-star {
  width: 15rem;
  height: 15rem;
  position: absolute;
}
.c-star span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
}
.c-star span:nth-of-type(1) {
  opacity: 1;
  animation: blink01 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.c-star span:nth-of-type(2) {
  opacity: 0;
  animation: blink02 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

@keyframes blink01 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}
@keyframes blink02 {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* #js-scrollEffect
----------------------------------------------------------------- */
.p-header {
  width: 100dvw;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #ffffff;
}
.p-header__content {
  width: 220rem;
  margin-inline: auto;
}
@media screen and (max-width: 900px ) {
  .p-header__content {
    width: 100%;
  }
}

.p-bg {
  width: 100%;
  height: 100%;
  position: relative;
  background: url(../images/bg.png) no-repeat center/250rem auto;
}
.p-bg__inner {
  width: 220rem;
  height: 100dvh;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
.p-bg__left {
  width: 72.5rem;
  height: 100%;
  position: relative;
}
.p-bg__right {
  width: 72.5rem;
  height: 100%;
  position: relative;
}
.p-bg__title {
  width: 67rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  inset: 0;
  margin: auto;
}
.p-bg__illust01 {
  width: 20.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: max(19.6rem, 17.8181818182vh);
  left: 7.6rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__illust02 {
  width: 13.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: max(4.8rem, 4.3636363636vh);
  right: 5rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__content {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: max(31.7rem, 28.8181818182vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-bg__subtitle {
  width: 34.5rem;
  height: auto;
  animation: bgFloating 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__qr {
  width: 31.4rem;
  height: auto;
}
.p-bg__illust03 {
  width: 13.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: max(45.6rem, 41.4545454545vh);
  right: 5rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__navi {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: max(3rem, 2.7272727273vh);
  right: 3rem;
}
.p-bg__navi a {
  display: block;
  width: 15.3rem;
  height: -moz-fit-content;
  height: fit-content;
}
.p-bg__navi:before {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 100%;
  background: #4d4d4d;
  position: absolute;
  left: -2rem;
  top: 0.6rem;
  transition: top 0.4s;
}
.p-bg__navi.is-top:before {
  top: 0.6rem;
}
.p-bg__navi.is-about:before {
  top: 4.4rem;
}
.p-bg__navi.is-point:before {
  top: 8.2rem;
}
.p-bg__navi.is-campaign:before {
  top: 12rem;
}
.p-bg__navi.is-uservoice:before {
  top: 15.8rem;
}
.p-bg__navi.is-products:before {
  top: 19.6rem;
}

.p-mv {
  width: 100%;
  background: #fffbd8;
  position: relative;
  z-index: 10;
}
.p-mv__image {
  width: 100%;
  height: auto;
}

.p-about {
  padding-top: 6rem;
  position: relative;
}
.p-about::before {
  content: "";
  display: block;
  width: 92rem;
  height: 115.2rem;
  position: absolute;
  left: -8.5rem;
  top: -10rem;
  background: url(../images/about_bg.png) no-repeat center/contain;
}
.p-about__inner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.p-about__title {
  width: 64rem;
  height: auto;
  margin-inline: auto;
}
.p-about__fukidashi03 {
  width: 64.3rem;
  height: auto;
  margin-inline: auto;
  margin-top: -7.3rem;
}
.p-about__fukidashi02 {
  width: 11rem;
  height: auto;
  margin-top: 1.5rem;
  margin-left: 41rem;
}
.p-about__fukidashi01 {
  width: 6.8rem;
  height: auto;
  margin-top: 0.7rem;
  margin-left: 48.4rem;
}
.p-about__illust {
  width: 19rem;
  height: auto;
  margin-left: auto;
  margin-right: 3.7rem;
  margin-top: -18.4rem;
  animation: illustAnime02 5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.p-about__fukidashi01 {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s 0.1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-about__fukidashi02 {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s 0.7s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.p-about__fukidashi03 {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 0.6s 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.p-about__content.is-active .p-about__fukidashi01 {
  opacity: 1;
  transform: scale(1);
}
.p-about__content.is-active .p-about__fukidashi02 {
  opacity: 1;
  transform: scale(1);
}
.p-about__content.is-active .p-about__fukidashi03 {
  opacity: 1;
  transform: scale(1);
}

.p-point {
  margin-top: -2rem;
  padding-bottom: 15.5rem;
  background: url(../images/point_bg.png) no-repeat center bottom/100% auto;
  position: relative;
}
.p-point__inner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.p-point__title {
  width: 54.5rem;
  height: auto;
  margin-inline: auto;
}
.p-point__content01 {
  width: 65.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4.8rem;
}
.p-point__content02 {
  width: 65.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
  position: relative;
}
.p-point__deco01 {
  width: 6.2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 10.3rem;
  left: 4rem;
  animation: jagged-scale02 4s step-start infinite;
}
.p-point__deco02 {
  width: 5.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 11rem;
  right: 5rem;
  animation: jagged-scale 4s step-start infinite;
}
.p-point__content03 {
  width: 65.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-point__content > div {
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.6s;
}
.p-point__content > div.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-campaign {
  margin-top: -8.3rem;
  position: relative;
  width: 100%;
}
.p-campaign::before {
  content: "";
  display: block;
  width: 103.8rem;
  height: 270.3rem;
  position: absolute;
  left: -12.5rem;
  top: 0rem;
  background: url(../images/campaign_bg.png) no-repeat center/contain;
}
.p-campaign__inner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.p-campaign__title {
  width: 66.8rem;
  height: auto;
  margin-inline: auto;
}
.p-campaign__title span {
  display: block;
}
.p-campaign__title span:first-of-type {
  width: 31rem;
  height: auto;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s;
}
.p-campaign__title span:last-of-type {
  width: 66.8rem;
  height: auto;
  margin-top: -2.2rem;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.5s 0.4s;
}
.p-campaign__title.is-active span:first-of-type {
  transform: scale(1);
  opacity: 1;
}
.p-campaign__title.is-active span:last-of-type {
  transform: translateY(0);
  opacity: 1;
}
.p-campaign__text {
  width: 70rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3.5rem;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.5s;
}
.p-campaign__text.is-active {
  transform: translateY(0);
  opacity: 1;
}
.p-campaign__illust {
  width: 29.4rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 5rem;
  margin-left: 2.4rem;
  position: relative;
  z-index: 5;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-campaign__fukidashi {
  width: 14.4rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -26.7rem;
  margin-left: 30.6rem;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s;
}
.p-campaign__fukidashi.is-active {
  transform: scale(1);
  opacity: 1;
}
.p-campaign__content {
  width: 56.8rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-campaign__toggle {
  width: 65.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4.7rem;
  border: 4px solid #4d4d4d;
  border-radius: 2.8rem;
  background: #4d4d4d;
  overflow: hidden;
}
.p-campaign__toggleTitle {
  width: 100%;
  height: auto;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
  cursor: pointer;
}
.p-campaign__toggleTitle:hover {
  opacity: 0.7;
}
.p-campaign__toggleContent {
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: height 1s;
  position: relative;
}
.p-campaign__toggleClose {
  display: block;
  width: 3.6rem;
  height: 0.4rem;
  background: #4d4d4d;
  border-radius: 100vmax;
  position: absolute;
  right: 2.7rem;
  bottom: 2.7rem;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-campaign__toggleClose:hover {
  opacity: 0.7;
}

.p-cv {
  padding-top: 8rem;
}
.p-cv__title {
  width: 71.7rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}
.p-cv__deco01 {
  width: 5.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -4.5rem;
  right: 3.3rem;
  animation: jagged-scale 4s step-start infinite;
}
.p-cv__deco02 {
  width: 8.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -4.5rem;
  left: 1.3rem;
  animation: jagged-scale02 4s step-start infinite;
}
.p-cv__button01 {
  margin-top: 6.5rem;
  width: 65.4rem;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 1rem 0 #00a156);
  transform: translateY(0);
  transition: all 0.3s;
}
.p-cv__button01:hover {
  filter: drop-shadow(0 0 0 #00a156);
  transform: translateY(1rem);
  opacity: 1;
}
.p-cv__buttons {
  margin-top: 6.5rem;
  width: 65.4rem;
  margin-inline: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 2.3rem;
       column-gap: 2.3rem;
  position: relative;
}
.p-cv__buttons a,
.p-cv__buttons button {
  transform: translateY(0);
  transition: all 0.3s;
  opacity: 1;
}
.p-cv__buttons a {
  filter: drop-shadow(0 0.5rem 0 #00a156);
}
.p-cv__buttons a:hover {
  filter: drop-shadow(0 0 0 #00a156);
  transform: translateY(0.5rem);
}
.p-cv__buttons button {
  filter: drop-shadow(0 0.5rem 0 #333333);
}
.p-cv__buttons button:hover {
  filter: drop-shadow(0 0 0 #333333);
  transform: translateY(0.5rem);
}
.p-cv__buttonMessage {
  width: 31.5rem;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  position: absolute;
  right: 0;
  bottom: -4rem;
}

.p-uservoice {
  padding-top: 8rem;
}
.p-uservoice__title {
  width: 37.6rem;
  height: auto;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s;
}
.p-uservoice__title.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-uservoice__content {
  width: 66.2rem;
  margin-top: 3rem;
  margin-inline: auto;
  position: relative;
}
.p-uservoice__content span {
  display: block;
  width: 3.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 4.1rem;
  opacity: 0;
  transition: opacity 0.8s;
}
.p-uservoice__content span:nth-of-type(1) {
  top: 4.8rem;
  transition-delay: 0.5s;
}
.p-uservoice__content span:nth-of-type(2) {
  top: 12.1rem;
  transition-delay: 1.2s;
}
.p-uservoice__content span:nth-of-type(3) {
  top: 19.4rem;
  transition-delay: 1.9s;
}
.p-uservoice__content.is-active span {
  opacity: 1;
}
.p-uservoice__list {
  width: 100%;
  height: 64rem;
  margin-top: 4.8rem;
  background: url(../images/uservoice_list_list_bg.png) no-repeat center/cover;
}
.p-uservoice__subtitle {
  width: 66.1rem;
  height: auto;
  margin-inline: auto;
  padding-top: 5rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: all 0.8s;
}
.p-uservoice__subtitle.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-uservoice__listContent {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  margin-top: 3rem;
  margin-inline: auto;
  width: 62.3rem;
}
.p-uservoice__listContent dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-uservoice__listContent dl:nth-of-type(1) span {
  width: 31rem;
  top: 4.1rem;
}
.p-uservoice__listContent dl:nth-of-type(2) span {
  width: 27.6rem;
  top: 4.1rem;
}
.p-uservoice__listContent dl:nth-of-type(3) span {
  width: 25.7rem;
  top: 7.7rem;
}
.p-uservoice__listContent dt {
  width: 11rem;
  height: auto;
}
.p-uservoice__listContent dd {
  width: 50.4rem;
  height: auto;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s;
}
.p-uservoice__listContent dd.is-active {
  transform: scale(1);
  opacity: 1;
}
.p-uservoice__listContent dd.is-active span {
  clip-path: inset(0 0 0 0);
}
.p-uservoice__listContent dd span {
  display: block;
  width: auto;
  height: 0.9rem;
  background: #f9e47d;
  position: absolute;
  left: 3.85rem;
  mix-blend-mode: multiply;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition-delay: 0.6s;
}

.p-movie {
  padding-top: 8rem;
  position: relative;
}
.p-movie::before {
  content: "";
  display: block;
  width: 90.9rem;
  height: 101.7rem;
  position: absolute;
  left: -8.5rem;
  top: 22rem;
  background: url(../images/movie_bg.png) no-repeat center/contain;
}
.p-movie__inner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.p-movie__title {
  width: 60.8rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}
.p-movie__deco01 {
  width: 6.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 6rem;
  left: -3rem;
  animation: jagged-scale 4s step-start infinite;
}
.p-movie__deco02 {
  width: 7.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 5rem;
  right: -4rem;
  animation: jagged-scale02 4s step-start infinite;
}
.p-movie__illust {
  width: 37.1rem;
  height: auto;
  margin-left: 19.3rem;
  margin-top: -7.7rem;
  animation: flipHorizontal 5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.p-movie__block {
  width: 66.2rem;
  height: auto;
  margin-inline: auto;
  margin-top: -22.5rem;
  position: relative;
}
.p-movie__movie {
  width: 60rem;
  height: auto;
  aspect-ratio: 600/338;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: 11.8rem;
}
.p-movie__movie iframe {
  width: 100%;
  height: 100%;
}

.p-products {
  padding-top: 8rem;
  position: relative;
}
.p-products::before {
  content: "";
  display: block;
  width: 102.7rem;
  height: 193.9rem;
  position: absolute;
  left: -15rem;
  top: 72rem;
  background: url(../images/products_bg.png) no-repeat center/contain;
}
.p-products__inner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.p-products__title {
  width: 21.8rem;
  height: auto;
  margin-inline: auto;
}
.p-products__main {
  width: 65.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4.7rem;
  border: 4px solid #4d4d4d;
  border-radius: 2.8rem;
  background: #4d4d4d;
  overflow: hidden;
}
.p-products__subtitle {
  width: 100%;
  height: auto;
}
.p-products__content {
  width: 100%;
  height: auto;
  padding-block: 3.7rem 10.8rem;
  background: rgb(255, 220, 233);
  background: linear-gradient(180deg, rgb(255, 220, 233) 0%, rgb(201, 227, 241) 100%);
  position: relative;
}
.p-products__text01 {
  width: 58.2rem;
  height: auto;
  margin-inline: auto;
  mix-blend-mode: multiply;
}
.p-products__text02 {
  width: 58.2rem;
  height: auto;
  margin-inline: auto;
}
.p-products__list {
  margin-top: 4.4rem;
  display: flex;
  flex-direction: column;
  row-gap: 5.4rem;
}
.p-products__list > li {
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.6s;
}
.p-products__list > li.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-products__illust {
  width: 16.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 1rem;
  right: 1.6rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-products__fukidashi {
  width: 11.8rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 29.7rem;
  right: 12.4rem;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s 0.3s;
}
.p-products__fukidashi.is-active {
  transform: scale(1);
  opacity: 1;
}

.p-bottom {
  padding-top: 8rem;
  padding-bottom: 15rem;
}
.p-bottom__button {
  margin-top: 6.5rem;
  width: 65.4rem;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 1rem 0 #00a156);
  transform: translateY(0);
  transition: all 0.3s;
}
.p-bottom__button:hover {
  filter: drop-shadow(0 0 0 #00a156);
  transform: translateY(1rem);
  opacity: 1;
}
.p-bottom__text {
  width: 55.6rem;
  height: auto;
  margin-inline: auto;
  margin-top: 6rem;
}

.p-footer__copy {
  width: 100%;
  height: auto;
}
.p-footer__bottom {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 20;
}

.p-gotop {
  width: 31.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  bottom: -4rem;
  display: flex;
  z-index: 5;
}
.p-gotop__illust {
  width: 14.5rem;
  padding-left: 3.8rem;
  height: auto;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-gotop__link {
  width: 12.5rem;
  height: auto;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s;
}
.p-gotop__link.is-active {
  transform: scale(1);
  opacity: 1;
}
.p-gotop__link:hover {
  transform: scale(1.05);
}

.p-sticky {
  width: 21.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  right: 77.5rem;
  bottom: 0;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
  z-index: 20;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s;
}
.p-sticky:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px ) {
  .p-sticky {
    right: 0;
  }
}
.p-sticky.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-sticky.is-sticky {
  bottom: 6rem;
}

/* #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
========================================================================== */
/*# sourceMappingURL=maps/style.css.map */
