@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 bgFloatingDeco {
  0% {
    transform: translate3d(0, -1rem, 0);
  }
  100% {
    transform: translate3d(0, 1rem, 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-wave {
  width: 100%;
  height: 21rem;
  position: relative;
  margin-top: -15rem;
  z-index: -2;
}
.c-wave use {
  fill: #12b4ed;
}
.c-wave--white use {
  fill: #ffffff;
}

/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--popUp,
.js-loadEffect--popUp {
  transform: scale(0.5);
  opacity: 0;
}
.js-scrollEffect--popUp.is-active,
.js-loadEffect--popUp.is-active {
  animation: popUp 0.4s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  opacity: 0;
}
.js-scrollEffect--fadeIn.is-active,
.js-loadEffect--fadeIn.is-active {
  animation: fadeIn 0.6s linear forwards;
}

@keyframes popUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.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/235.7rem auto;
  background-color: #12b4ed;
  z-index: 2;
}
.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: 26.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: max(12.6rem, 11.4545454545vh);
  left: 34rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__illust02 {
  width: 17.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: max(6rem, 5.4545454545vh);
  left: 7rem;
  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: 35rem;
  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;
  margin-top: 1rem;
}
.p-bg__illust03 {
  width: 17rem;
  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-bg__decos {
  width: 235.7rem;
  height: 129.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.p-bg__decos img {
  position: absolute;
  left: 0;
  top: 0;
}
.p-bg__decos img:nth-of-type(1) {
  animation: bgFloatingDeco 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__decos img:nth-of-type(2) {
  animation: bgFloatingDeco 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-bg__decos img:nth-of-type(3) {
  animation: bgFloatingDeco 2.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.p-mv {
  width: 100%;
  position: relative;
}
.p-mv__title {
  position: absolute;
  width: 49.5rem;
  height: auto;
  left: 3.5rem;
  top: 27rem;
  z-index: 10;
}
.p-mv__slider {
  width: 100%;
  height: auto;
}

.p-top {
  width: 100%;
  height: auto;
  background: url(../images/top_bg.png) no-repeat top -6rem center/98.2rem auto;
  background-color: #12b4ed;
  position: relative;
  z-index: 2;
}
.p-top__inner.is-active .p-top__title01 {
  animation: fadeInUp 0.4s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.p-top__inner.is-active .p-top__title02 {
  animation: fadeInUp 0.4s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.p-top__inner.is-active .p-top__title03 {
  animation: popUp 0.4s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.p-top__title01 {
  width: 56.9rem;
  height: auto;
  margin-inline: auto;
  transform: translateY(1rem);
  opacity: 0;
}
.p-top__title02 {
  width: 31.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  transform: translateY(1rem);
  opacity: 0;
}
.p-top__title03 {
  width: 67.4rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4.5rem;
  transform: scale(0.5);
  opacity: 0;
}
.p-top__caption {
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 4rem;
}
.p-top__button01 {
  display: block;
  width: 69rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-top__button01:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-top__button02 {
  display: block;
  width: 60.3rem;
  height: auto;
  margin-inline: auto;
  margin-top: 7.5rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-top__button02:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-top__button03 {
  display: block;
  width: 63.8rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-top__button03:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-top__illust {
  width: 39.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2.3rem;
  animation: flipHorizontal 5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-top__decos {
  width: 75rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -2rem;
  top: 10rem;
  z-index: -1;
}
.p-top__decos img {
  position: absolute;
  left: 0;
  top: 0;
}
.p-top__decos img:nth-of-type(1) {
  animation: bgFloatingDeco 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-top__decos img:nth-of-type(2) {
  animation: bgFloatingDeco 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-top__decos img:nth-of-type(3) {
  animation: bgFloatingDeco 2.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.p-submit {
  width: 100%;
  height: auto;
  background: url(../images/submit_bg.png) no-repeat top 16rem center/97.2rem auto;
  background-color: #ffffff;
  margin-top: -18rem;
  position: relative;
  z-index: 10;
  padding-bottom: 10rem;
}
.p-submit__title {
  width: 68rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}
.p-submit__title img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
}
.p-submit__steps {
  width: 71rem;
  height: auto;
  margin-inline: auto;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.p-submit__steps li {
  width: 100%;
  height: auto;
  position: relative;
}
.p-submit__steps li.is-active .p-submit__tap {
  animation: popUp 0.4s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.p-submit__tap {
  width: 10.8rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 34rem;
  right: 8.3rem;
  opacity: 0;
  transform: scale(0.5);
}
.p-submit__illust {
  width: 36.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 41rem;
  right: -11rem;
  animation: illustAnime 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-submit__caption {
  color: #006e95;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 2rem;
}
.p-submit__decos {
  width: 70rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 2rem;
  top: 3rem;
  z-index: -1;
}
.p-submit__decos img {
  position: absolute;
  left: 0;
  top: 0;
}
.p-submit__decos img:nth-of-type(1) {
  animation: bgFloatingDeco 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-submit__decos img:nth-of-type(2) {
  animation: bgFloatingDeco 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-submit__decos img:nth-of-type(3) {
  animation: bgFloatingDeco 2.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.p-about {
  position: relative;
  z-index: 10;
  background: url(../images/about_bg.png) no-repeat top 32rem center/100.9rem auto;
  background-color: #12b4ed;
}
.p-about__title {
  width: 68rem;
  height: auto;
  margin-inline: auto;
}
.p-about__content {
  width: 70.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: -2rem;
}
.p-about__movie {
  width: 62rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
.p-about__movie video {
  width: 100%;
  height: auto;
}
.p-about__text {
  width: 60.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
.p-about__block {
  margin-top: 6rem;
}
.p-about__block--02 {
  margin-top: 14rem;
}
.p-about__blockTitle {
  width: 100%;
  position: relative;
}
.p-about__blockText {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 4rem;
}
.p-about__blockSteps li {
  width: 67.5rem;
  height: auto;
  margin-inline: auto;
  margin-top: 6.2rem;
  position: relative;
}
.p-about__button01 {
  display: block;
  margin-inline: auto;
  width: 28.9rem;
  height: auto;
  margin-top: 2.6rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-about__button01:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-about__button02 {
  display: block;
  margin-inline: auto;
  width: 38rem;
  height: auto;
  margin-top: 2.6rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-about__button02:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-about__image {
  width: 41rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-about__illust01 {
  width: 21.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -10.7rem;
  left: -1rem;
  animation: illustAnime 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-about__illust02 {
  width: 19.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 17rem;
  right: -3rem;
  animation: illustAnime 3.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-about__end {
  width: 67.4rem;
  height: auto;
  margin-inline: auto;
  margin-top: 14.5rem;
  padding-bottom: 11rem;
}
.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-about__decos {
  width: 70rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: -1;
}
.p-about__decos img {
  position: absolute;
  left: 0;
  top: 0;
}
.p-about__decos img:nth-of-type(1) {
  animation: bgFloatingDeco 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-about__decos img:nth-of-type(2) {
  animation: bgFloatingDeco 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.p-about__decos img:nth-of-type(3) {
  animation: bgFloatingDeco 2.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.p-footer {
  background: #ffffff;
  position: relative;
  z-index: 20;
}
.p-footer__copy {
  width: 9.6rem;
  height: auto;
  margin-inline: auto;
  margin-top: -4rem;
  position: relative;
  z-index: 15;
}
.p-footer__button {
  display: block;
  width: 69rem;
  height: auto;
  margin-inline: auto;
  margin-top: 1.5rem;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-footer__button:hover {
  opacity: 1;
  transform: translateY(0.8rem);
}
.p-footer__bottom {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
@media screen and (max-width: 900px ) {
  .p-footer__bottom {
    padding-top: 18rem;
  }
}

.p-gotop {
  width: 13.8rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 3rem;
  bottom: 25rem;
  z-index: 50;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-gotop:hover {
  opacity: 1;
  transform: translateY(-0.8rem);
}
.p-gotop img {
  animation: bgFloatingDeco 3.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.p-sticky {
  width: 69rem;
  height: -moz-fit-content;
  height: fit-content;
  right: 3rem;
  bottom: 2rem;
  position: fixed;
  z-index: 20;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s;
}
.p-sticky.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-sticky.is-active:hover {
  transform: translateY(1rem);
}
.p-sticky.is-sticky {
  bottom: 8rem;
}
.p-sticky--v2 {
  width: 100dvw;
  right: auto;
  left: 0;
  transform: translateY(0%);
  opacity: 1;
}
.p-sticky--v2.is-sticky {
  bottom: 12rem;
}

/* #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 */
