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

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

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

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

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 100%;
  }
}
/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  backface-visibility: hidden;
}
.l-main {
  width: 100dvw;
  height: auto;
  overflow: hidden;
  position: relative;
  padding-top: 70px;
}
@media screen and (max-width: 768px ) {
  .l-main {
    padding-top: 0;
  }
}
.l-main__content {
  width: 100dvw;
  height: auto;
  background: url(../images/bg.jpg) repeat-y top center/100% auto;
}
@media screen and (max-width: 768px ) {
  .l-main__content {
    background: url(../images/bg_sp.jpg) repeat-y top center/100% auto;
  }
}
.l-main__gold {
  width: 100dvw;
  height: auto;
  padding-top: 57.5rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .l-main__gold {
    padding-top: 35rem;
  }
}
.l-main__goldInner {
  background: url(../images/gold_bg.jpg) repeat-y top center/100% auto;
  border-bottom-left-radius: 50vw;
  border-bottom-right-radius: 50vw;
}
@media screen and (max-width: 768px ) {
  .l-main__goldInner {
    background: url(../images/gold_bg_sp.jpg) repeat-y top center/100% auto;
  }
}
.l-main svg {
  width: 100%;
  height: auto;
}
.l-main img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.l-main a {
  display: block;
}
.l-main ul li {
  list-style: none;
}

/* #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;
  }
}
.c-button {
  display: block;
  width: 49.6rem;
  height: auto;
  margin-inline: auto;
  border-radius: 100vmax;
  box-shadow: 0.2rem 0.7rem 0 rgba(210, 50, 50, 0.75);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  position: relative;
  top: 3rem;
  transition: opacity 1s, top 1s, transform 0.3s, box-shadow 0.3s;
}
.c-button:hover {
  opacity: 1;
  transform: translateY(0.2rem);
  box-shadow: 0rem 0rem 0 rgba(210, 50, 50, 0.75);
}
@media screen and (max-width: 768px ) {
  .c-button {
    width: 44.4rem;
  }
}
.c-button--02 {
  width: 49rem;
  box-shadow: 0.6rem 1.1rem 0.8rem rgba(210, 50, 50, 0.75);
  border-radius: 2rem;
}
.c-button.is-active {
  opacity: 1;
  top: 0;
}

.c-lineTitle {
  display: flex;
  flex-direction: column;
  row-gap: 4.4rem;
  justify-content: center;
  align-items: center;
}
.c-lineTitle__line {
  width: 0;
  height: 2px;
  background: #d23232;
  position: relative;
}
.c-lineTitle__line:before, .c-lineTitle__line:after {
  content: "";
  width: 2.9rem;
  height: 2.9rem;
  position: absolute;
  top: -1.4rem;
  background: url(../images/line_deco.png) no-repeat center center/contain;
}
.c-lineTitle__line:before {
  left: -4rem;
}
.c-lineTitle__line:after {
  right: -4rem;
}
.c-lineTitle__line--02:before, .c-lineTitle__line--02:after {
  background: url(../images/line_deco02.png) no-repeat center center/contain;
}
.c-lineTitle__line--02:before {
  left: -0.5rem;
}
.c-lineTitle__line--02:after {
  right: -0.5rem;
}
.c-lineTitle.is-active .c-lineTitle__line {
  animation: line 1.3s cubic-bezier(0.33, 1, 0.68, 1) both;
}

.c-block {
  display: block;
  width: 107rem;
  height: auto;
  margin-inline: auto;
  border: 1.8rem solid #e73d75;
  background: #eeeaeb;
  padding-block: 6rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .c-block {
    width: 62rem;
    padding-block: 3.7rem 6rem;
  }
}
.c-block__before:before, .c-block__before:after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: #e73d75;
  position: absolute;
}
.c-block__before:before {
  clip-path: circle(100% at 1% 1%);
  left: 0;
  top: 0;
}
.c-block__before:after {
  clip-path: circle(100% at 100% 1%);
  right: 0;
  top: 0;
}
.c-block__after:before, .c-block__after:after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: #e73d75;
  position: absolute;
}
.c-block__after:before {
  clip-path: circle(100% at 0 100%);
  left: 0;
  bottom: 0;
}
.c-block__after:after {
  clip-path: circle(100% at 100% 100%);
  right: 0;
  bottom: 0;
}
.c-block--kikumasa {
  background: url(../images/block_bg.jpg) repeat-y top center/100% auto;
}
.c-block--kikumasa .c-block__before:before, .c-block--kikumasa .c-block__before:after {
  background: #73283c;
}
.c-block--kikumasa .c-block__after:before, .c-block--kikumasa .c-block__after:after {
  background: #73283c;
}
.c-block--touken {
  background: url(../images/block_bg.jpg) repeat-y top center/107rem auto;
  border-color: #c9a17f;
}
.c-block--touken .c-block__before:before, .c-block--touken .c-block__before:after {
  background: #000000;
}
.c-block--touken .c-block__after:before, .c-block--touken .c-block__after:after {
  background: #000000;
}

.p-mv {
  width: 100dvw;
  height: 53.5714285714vw;
  background: url("../images/mv_bg.jpg") no-repeat bottom center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px ) {
  .p-mv {
    height: 117rem;
    background-image: url("../images/mv_bg_sp.jpg");
  }
}
.p-mv__logo {
  width: 17.1428571429vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 40;
  top: 2.8571428571vw;
  left: 5vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__logo {
    width: 20.6rem;
    top: 2rem;
    left: 46.7rem;
  }
}
.p-mv__title {
  width: 36.9285714286vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 40;
  top: 16.0714285714vw;
  left: 1.0714285714vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__title {
    width: 44.4rem;
    top: 2rem;
    left: 1rem;
  }
}
.p-mv__text {
  width: 27.4285714286vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 40;
  top: 27.5vw;
  left: 2.5vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__text {
    width: 38.5rem;
    top: 16.8rem;
    left: 2.3rem;
  }
}
.p-mv__banner {
  width: 35.2857142857vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 40;
  top: 32.8571428571vw;
  left: 1.1428571429vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__banner {
    width: 49.5rem;
    top: 87rem;
    left: 0rem;
    z-index: 50;
  }
}
.p-mv__notice {
  width: 100dvw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 50;
}
.p-mv__deco01 {
  width: 15.7857142857vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  top: -8.2142857143vw;
  left: 78.9285714286vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__deco01 {
    width: 22rem;
    top: 7rem;
    left: 42.3rem;
  }
}
.p-mv__deco02 {
  width: 14.5vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  top: 7.2857142857vw;
  left: 25.5714285714vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__deco02 {
    width: 20.3rem;
    top: 38.3rem;
    left: -8rem;
  }
}
.p-mv__illust01 {
  width: 59.2142857143vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 20;
  top: 2.2857142857vw;
  left: 23.2857142857vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__illust01 {
    width: 88.5rem;
    top: 30.5rem;
    left: -25rem;
  }
}
.p-mv__illust02 {
  width: 35.1428571429vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 40;
  top: 19.2857142857vw;
  left: 51.1428571429vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__illust02 {
    width: 52.5rem;
    top: 56rem;
    left: 10.4rem;
  }
}
.p-mv__illust03 {
  width: 55.2857142857vw;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 30;
  top: 1.6428571429vw;
  left: 58.1428571429vw;
}
@media screen and (max-width: 768px ) {
  .p-mv__illust03 {
    width: 82.7rem;
    top: 29.8rem;
    left: 17rem;
  }
}
.p-mv__obi {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  background: url("../images/mv_obi.png") no-repeat bottom center/cover;
}
@media screen and (max-width: 768px ) {
  .p-mv__obi {
    height: 117rem;
    background-image: url("../images/mv_obi_sp.png");
  }
}
.p-mv__logo {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.p-mv__title, .p-mv__text, .p-mv__banner {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.6s 1.2s ease, transform 1.6s 1.2s ease;
}
.p-mv__illust01 {
  opacity: 0;
  transform: translateY(5rem);
  transition: opacity 1.6s 0.5s ease, transform 1.6s 0.5s ease;
}
.p-mv__illust02 {
  opacity: 0;
  transform: translateY(5rem);
  transition: opacity 1.6s 0.9s ease, transform 1.6s 0.9s ease;
}
.p-mv__illust03 {
  opacity: 0;
  transform: translateY(5rem);
  transition: opacity 1.6s 0.7s ease, transform 1.6s 0.7s ease;
}
.p-mv__deco01, .p-mv__deco02 {
  transform: rotate(-360deg);
  opacity: 0.3;
  transition: opacity 2.2s ease, transform 2.2s ease;
}
.p-mv.is-active .p-mv__logo,
.p-mv.is-active .p-mv__title,
.p-mv.is-active .p-mv__text,
.p-mv.is-active .p-mv__banner,
.p-mv.is-active .p-mv__notice,
.p-mv.is-active .p-mv__deco01,
.p-mv.is-active .p-mv__deco02,
.p-mv.is-active .p-mv__illust01,
.p-mv.is-active .p-mv__illust02,
.p-mv.is-active .p-mv__illust03 {
  opacity: 1;
  transform: translateY(0);
}
.p-mv.is-active .p-mv__deco01,
.p-mv.is-active .p-mv__deco02 {
  transform: rotate(0);
  opacity: 1;
}

.p-top {
  padding-block: 10rem 6rem;
}
@media screen and (max-width: 768px ) {
  .p-top {
    padding-block: 8.6rem 5rem;
  }
}
.p-top__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5.8rem;
}
.p-top__blocks {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  row-gap: 7.3rem;
}
@media screen and (max-width: 768px ) {
  .p-top__blocks {
    margin-top: 8.6rem;
    row-gap: 6.2rem;
  }
}
.p-top__block {
  width: 107.4rem;
  height: 143.5rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px ) {
  .p-top__block {
    width: 62.4rem;
    height: 211.2rem;
  }
}
.p-top__block:nth-child(1) {
  background: url(../images/top_block01_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px ) {
  .p-top__block:nth-child(1) {
    background-image: url(../images/top_block01_bg_sp.jpg);
  }
}
.p-top__block:nth-child(2) {
  background: url(../images/top_block02_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px ) {
  .p-top__block:nth-child(2) {
    background-image: url(../images/top_block02_bg_sp.jpg);
  }
}
.p-top__block:nth-child(2) .p-top__product {
  top: 41.8rem;
  left: 62rem;
}
@media screen and (max-width: 768px ) {
  .p-top__block:nth-child(2) .p-top__product {
    top: 52.5rem;
    left: 23rem;
  }
}
.p-top__block:nth-child(2) .p-top__icon {
  left: 6.5rem;
}
@media screen and (max-width: 768px ) {
  .p-top__block:nth-child(2) .p-top__icon {
    left: 3.5rem;
  }
}
.p-top__block:nth-child(3) {
  background: url(../images/top_block03_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px ) {
  .p-top__block:nth-child(3) {
    background-image: url(../images/top_block03_bg_sp.jpg);
  }
}
.p-top__frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 90;
}
.p-top__deco {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-top__illust {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-top__text {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 50;
  padding-top: 90rem;
}
@media screen and (max-width: 768px ) {
  .p-top__text {
    padding-top: 102rem;
  }
}
.p-top__product {
  width: 34.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 42.4rem;
  left: 14rem;
}
@media screen and (max-width: 768px ) {
  .p-top__product {
    width: 36.2rem;
    top: 52.5rem;
    left: 2rem;
  }
}
.p-top__icon {
  width: 13.3rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 50;
  top: 78.8rem;
  left: 83.5rem;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px ) {
  .p-top__icon {
    top: 91rem;
    left: 45rem;
  }
}
.p-top__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3.3rem;
       column-gap: 3.3rem;
  position: relative;
  z-index: 50;
  margin-top: 4.1rem;
}
@media screen and (max-width: 768px ) {
  .p-top__list {
    flex-direction: column;
    row-gap: 6.7rem;
    align-items: center;
    margin-top: 3.5rem;
  }
}
.p-top__item {
  width: 41.1rem;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-top__item {
    width: 47.6rem;
  }
}
.p-top__item:nth-child(1) .p-top__itemDeco {
  left: -6.4rem;
}
@media screen and (max-width: 768px ) {
  .p-top__item:nth-child(1) .p-top__itemDeco {
    left: -5.4rem;
  }
}
.p-top__item:nth-child(2) .p-top__itemDeco {
  right: -6.4rem;
}
@media screen and (max-width: 768px ) {
  .p-top__item:nth-child(2) .p-top__itemDeco {
    right: -5.4rem;
  }
}
.p-top__itemDeco {
  display: block;
  width: 15.6rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: -7.6rem;
}
@media screen and (max-width: 768px ) {
  .p-top__itemDeco {
    width: 17.3rem;
    bottom: -5.6rem;
  }
}
.p-top__deco {
  animation: blink 3.5s ease infinite;
}
.p-top__illust {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.p-top__product, .p-top__text, .p-top__list {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.6s ease, transform 1.6s ease;
}
.p-top__product {
  transition-delay: 0.5s;
}
.p-top__text {
  transition-delay: 1s;
}
.p-top__list {
  transition-delay: 1.5s;
}
.p-top__block.is-active .p-top__illust {
  opacity: 1;
  transform: translateY(0);
}
.p-top__block.is-active .p-top__product,
.p-top__block.is-active .p-top__text,
.p-top__block.is-active .p-top__list {
  opacity: 1;
  transform: translateY(0);
}

.p-set {
  padding-block: 6rem;
}
.p-set__block {
  width: 108.2rem;
  height: 224.5rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  background: url(../images/set_bg.png) no-repeat center center/cover;
  padding-top: 8rem;
}
@media screen and (max-width: 768px ) {
  .p-set__block {
    width: 61.5rem;
    height: 265rem;
    background-image: url(../images/set_bg_sp.png);
    padding-top: 6.3rem;
  }
}
.p-set__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-set__text {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 5rem;
}
.p-set__text span {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px ) {
  .p-set__text {
    margin-top: 3.8rem;
  }
}
.p-set__deco {
  pointer-events: none;
  width: 100%;
  height: 59.5rem;
  position: relative;
  margin-top: -8rem;
}
.p-set__deco span {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px ) {
  .p-set__deco {
    height: 68rem;
    margin-top: 1rem;
  }
}
.p-set__image {
  width: 86rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  position: relative;
  margin-top: -10.5rem;
}
@media screen and (max-width: 768px ) {
  .p-set__image {
    width: 50rem;
  }
}
.p-set__imageText {
  width: 27.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
@media screen and (min-width: 1024px ) {
  .p-set__imageText {
    top: -6.6rem;
    right: 2.4rem;
  }
}
@media screen and (max-width: 768px ) {
  .p-set__imageText {
    width: 26.9rem;
    bottom: -6rem;
    right: -5rem;
  }
}
.p-set__button {
  margin-top: 6rem;
}
.p-set__block .js-scrollEffect {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s, transform 1s;
}
.p-set__block .js-scrollEffect.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-set__deco {
  opacity: 1;
}
.p-set__deco span {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s, transform 1s;
}
.p-set__deco span:nth-child(1) {
  transition-delay: 0s;
}
.p-set__deco span:nth-child(2) {
  transition-delay: 0.4s;
}
.p-set__deco span:nth-child(3) {
  transition-delay: 0.8s;
}
.p-set__deco.is-active span {
  opacity: 1;
  transform: translateY(0);
}

.p-goldTop {
  width: 140rem;
  height: auto;
  margin-inline: auto;
  position: relative;
  transform: translateY(-50rem);
  padding-bottom: 6rem;
  margin-bottom: -50rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop {
    width: 100dvw;
    transform: translateY(-28rem);
    padding-bottom: 5rem;
    margin-bottom: -28rem;
  }
}
.p-goldTop__image {
  width: 120rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 70;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__image {
    width: 76rem;
    margin-left: -3.6rem;
  }
}
.p-goldTop__imageDeco {
  width: 16.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 8rem;
  right: 8rem;
  z-index: 90;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__imageDeco {
    width: 11.2rem;
    top: 4rem;
    right: 6rem;
  }
}
.p-goldTop__deco01 {
  width: 33.5rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -8rem;
  top: 63.9rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__deco01 {
    width: 22rem;
    left: -6rem;
    top: 40.9rem;
  }
}
.p-goldTop__deco02 {
  width: 27.4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: -3.9rem;
  top: 41.7rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__deco02 {
    width: 18rem;
    top: 13.4rem;
  }
}
.p-goldTop__blink {
  width: 140rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  top: -11rem;
  z-index: 80;
}
.p-goldTop__blink picture {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}
.p-goldTop__blink picture:nth-child(2) {
  animation: blink 3.5s ease infinite;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__blink {
    width: 70rem;
    top: -6rem;
  }
}
.p-goldTop__title {
  width: 72.2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__title {
    width: 46.7rem;
    margin-top: 4rem;
  }
}
.p-goldTop__text {
  margin-top: 1.8rem;
  width: 39.8rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__text {
    width: 36.5rem;
  }
}
.p-goldTop__product {
  width: 63.1rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__product {
    width: 52.5rem;
  }
}
.p-goldTop__productDeco {
  width: 20.7rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: -4rem;
  right: -4rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__productDeco {
    width: 16rem;
  }
}
.p-goldTop__desc {
  margin-top: -1rem;
  width: 78.7rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__desc {
    width: 58.5rem;
  }
}
.p-goldTop__button {
  margin-top: 5rem;
}
@media screen and (max-width: 768px ) {
  .p-goldTop__button {
    margin-top: 4rem;
  }
}
.p-goldTop__image > img,
.p-goldTop__image .p-goldTop__imageDeco {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s, transform 1s;
}
.p-goldTop__image .p-goldTop__imageDeco {
  transition-delay: 0.6s;
}
.p-goldTop__image.is-active > img,
.p-goldTop__image.is-active .p-goldTop__imageDeco {
  opacity: 1;
  transform: translateY(0);
}
.p-goldTop__product > img,
.p-goldTop__product .p-goldTop__productDeco {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s, transform 1s;
}
.p-goldTop__product .p-goldTop__productDeco {
  transition-delay: 0.6s;
}
.p-goldTop__product.is-active > img,
.p-goldTop__product.is-active .p-goldTop__productDeco {
  opacity: 1;
  transform: translateY(0);
}
.p-goldTop__text, .p-goldTop__desc {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-goldTop__text.is-active, .p-goldTop__desc.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-goldTop__deco01, .p-goldTop__deco02 {
  transform: rotate(-360deg);
  opacity: 0.3;
  transition: opacity 2.2s ease, transform 2.2s ease;
}
.p-goldTop__deco01.is-active, .p-goldTop__deco02.is-active {
  transform: rotate(0);
  opacity: 1;
}

.p-goldSet {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet {
    padding-block: 5rem;
  }
}
.p-goldSet__inner {
  width: 107.3rem;
  height: 205.5rem;
  margin-inline: auto;
  background: url(../images/gold_set_bg.jpg) no-repeat center center/cover;
  padding-top: 4.2rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__inner {
    width: 62.4rem;
    height: 227.6rem;
    background-image: url(../images/gold_set_bg_sp.jpg);
  }
}
.p-goldSet__title {
  width: 82.8rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__title {
    width: 43.1rem;
  }
}
.p-goldSet__block01 {
  margin-top: 6rem;
}
.p-goldSet__block01Title {
  width: 60.2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block01Title {
    width: 34.7rem;
  }
}
.p-goldSet__block01Row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block01Row {
    flex-direction: column;
    row-gap: 4.8rem;
  }
}
.p-goldSet__block01Image01 {
  width: 63.4rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block01Image01 {
    width: 57.5rem;
  }
}
.p-goldSet__block01Image02 {
  width: 36.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block01Image02 {
    margin-left: 11rem;
  }
}
.p-goldSet__block01Image02Deco {
  width: 12.1rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: 8rem;
  top: -4rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block01Image02Deco {
    left: -13rem;
    top: 6rem;
    right: auto;
  }
}
.p-goldSet__block02 {
  margin-top: 6.7rem;
}
.p-goldSet__block02Title {
  width: 60.2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Title {
    width: 43.2rem;
  }
}
.p-goldSet__block02Content {
  margin-top: 8rem;
  width: 74rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Content {
    width: 56rem;
    margin-top: 7.5rem;
  }
}
.p-goldSet__block02Image {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  z-index: 50;
}
.p-goldSet__block02Text {
  width: 24.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 24rem;
  top: 36rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Text {
    left: 15rem;
    top: 27.5rem;
  }
}
.p-goldSet__block02Blink {
  width: 73rem;
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  animation: blink 3.5s ease infinite;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Blink {
    width: 55.2rem;
    top: -3rem;
    left: 0rem;
  }
}
.p-goldSet__block02Deco01 {
  width: 29.2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: -11rem;
  top: -2rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Deco01 {
    width: 22rem;
    left: 0rem;
    top: -4.5rem;
  }
}
.p-goldSet__block02Deco02 {
  width: 23.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 18rem;
  right: -8.6rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block02Deco02 {
    width: 18rem;
    top: 13rem;
    right: -1rem;
  }
}
.p-goldSet__block03 {
  margin-top: 9rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block03 {
    margin-top: 9rem;
  }
}
.p-goldSet__block03Title {
  width: 60.2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block03Title {
    width: 51.7rem;
  }
}
.p-goldSet__block03Image {
  margin-top: 1.8rem;
  width: 60.3rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-goldSet__block03Image {
    width: 50.5rem;
    padding-left: 3rem;
  }
}
.p-goldSet__title, .p-goldSet__block01Image01, .p-goldSet__block02Image, .p-goldSet__block02Text, .p-goldSet__block03Image {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-goldSet__title.is-active, .p-goldSet__block01Image01.is-active, .p-goldSet__block02Image.is-active, .p-goldSet__block02Text.is-active, .p-goldSet__block03Image.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-goldSet__block01Image02 > img,
.p-goldSet__block01Image02 .p-goldSet__block01Image02Deco {
  opacity: 0;
  transform: translateY(6rem);
  transition: opacity 1s, transform 1s;
}
.p-goldSet__block01Image02 .p-goldSet__block01Image02Deco {
  transition-delay: 0.6s;
}
.p-goldSet__block01Image02.is-active > img,
.p-goldSet__block01Image02.is-active .p-goldSet__block01Image02Deco {
  opacity: 1;
  transform: translateY(0);
}

.p-goldProduct {
  width: 100dvw;
  padding-block: 6rem 23rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 768px ) {
  .p-goldProduct {
    padding-block: 5rem 16rem;
  }
}
.p-goldProduct__inner {
  width: 108rem;
  height: 149.8rem;
  margin-inline: auto;
  background: url(../images/gold_product_bg.png) no-repeat center center/cover;
  padding-top: 8rem;
}
@media screen and (max-width: 768px ) {
  .p-goldProduct__inner {
    width: 61.5rem;
    height: 171.5rem;
    background-image: url(../images/gold_product_bg_sp.png);
    padding-top: 7.2rem;
  }
}
.p-goldProduct__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-goldProduct__text {
  padding-top: 4rem;
}
.p-goldProduct__text span {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-goldProduct__image {
  width: 86rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px ) {
  .p-goldProduct__image {
    width: 50rem;
    margin-top: 4.5rem;
  }
}
.p-goldProduct__button {
  margin-top: 11.9rem;
}
@media screen and (max-width: 768px ) {
  .p-goldProduct__button {
    margin-top: 10rem;
  }
}
.p-goldProduct__title, .p-goldProduct__text span, .p-goldProduct__image {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-goldProduct__title.is-active, .p-goldProduct__text span.is-active, .p-goldProduct__image.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-goldDeco__item01 {
  width: 41.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: calc((100dvw - 140rem) / 2 - 10rem);
  bottom: 15rem;
}
@media screen and (max-width: 768px ) {
  .p-goldDeco__item01 {
    width: 30.5rem;
    left: -9rem;
    bottom: 4rem;
  }
}
.p-goldDeco__item02 {
  width: 41.9rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: calc((100dvw - 140rem) / 2 - 26.6rem);
  bottom: 35rem;
}
.p-goldDeco__item03 {
  width: 30.2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: calc((100dvw - 140rem) / 2 - 7rem);
  bottom: 14rem;
}
@media screen and (max-width: 768px ) {
  .p-goldDeco__item03 {
    width: 22rem;
    right: -8rem;
    bottom: 11.8rem;
  }
}
.p-goldDeco__item04 {
  width: 29.3rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  right: calc((100dvw - 140rem) / 2 + 12rem);
  bottom: -6.8rem;
}
@media screen and (max-width: 768px ) {
  .p-goldDeco__item04 {
    width: 21.3rem;
    right: 5.2rem;
    bottom: -4.3rem;
  }
}
.p-goldDeco__item01, .p-goldDeco__item02, .p-goldDeco__item03, .p-goldDeco__item04 {
  transform: rotate(-360deg);
  opacity: 0.3;
  transition: opacity 2.2s ease, transform 2.2s ease;
}
.p-goldDeco__item01.is-active, .p-goldDeco__item02.is-active, .p-goldDeco__item03.is-active, .p-goldDeco__item04.is-active {
  transform: rotate(0);
  opacity: 1;
}

.p-care {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-care {
    padding-block: 5rem;
  }
}
.p-care__title {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px ) {
  .p-care__title {
    width: 50rem;
  }
}
.p-care__titleIcon {
  width: 4rem;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0.5rem;
  left: 60.5rem;
}
@media screen and (max-width: 768px ) {
  .p-care__titleIcon {
    left: 41rem;
  }
}
.p-care__blocks {
  margin-top: 4.5rem;
  width: 80rem;
  height: 137rem;
  margin-inline: auto;
  background: url(../images/care_block_bg.png) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
@media screen and (max-width: 768px ) {
  .p-care__blocks {
    row-gap: 3.3rem;
    width: 52.5rem;
    height: 156.4rem;
    background-image: url(../images/care_block_bg_sp.png);
  }
}
.p-care__block {
  width: 100%;
  height: 43rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-care__block:nth-child(1) {
    height: 32.4rem;
  }
  .p-care__block:nth-child(2) {
    height: 81.4rem;
  }
  .p-care__block:nth-child(3) {
    height: 36rem;
  }
}
.p-care__block picture {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.p-care__line {
  display: block;
  margin-top: 4.5rem;
  max-width: 90rem;
  height: 2px;
  margin-inline: auto;
  background: #e73d75;
}
@media screen and (max-width: 768px ) {
  .p-care__line {
    max-width: 52.5rem;
    margin-top: 3.8rem;
  }
}
.p-care__image {
  margin-top: 4.5rem;
  width: 68.5rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-care__image {
    width: 50rem;
    margin-top: 3.8rem;
  }
}
.p-care__button {
  margin-top: 3rem;
}
@media screen and (max-width: 768px ) {
  .p-care__button {
    margin-top: 3.4rem;
  }
}
.p-care__content {
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px ) {
  .p-care__content {
    padding-bottom: 1rem;
  }
}
.p-care__title.is-open {
  pointer-events: none;
}
.p-care__title.is-open .p-care__titleIcon {
  opacity: 0;
}
.p-care__content {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 1s;
}
.p-care__block picture {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-care__block picture:nth-child(2) {
  transition-delay: 0.2s;
}
.p-care__block picture:nth-child(3) {
  transition-delay: 0.4s;
}
.p-care__block picture:nth-child(4) {
  transition-delay: 0.6s;
}
.p-care__block picture:nth-child(5) {
  transition-delay: 0.8s;
}
.p-care__block picture:nth-child(6) {
  transition-delay: 1s;
}
.p-care__block picture:nth-child(7) {
  transition-delay: 1.2s;
}
.p-care__block.is-active picture {
  opacity: 1;
  transform: translateY(0);
}
.p-care__line.is-active {
  animation: line 1.3s cubic-bezier(0.33, 1, 0.68, 1) both;
}
.p-care__image {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-care__image.is-active {
  opacity: 1;
  transform: translateY(0);
}
.p-care__title:not(.is-open) + .p-care__content .p-care__block.is-active picture {
  opacity: 0;
  transform: translateY(3rem);
  transition: none;
}
.p-care__title:not(.is-open) + .p-care__content .p-care__line.is-active {
  animation: none;
}
.p-care__title:not(.is-open) + .p-care__content .p-care__image.is-active {
  opacity: 0;
  transform: translateY(3rem);
  transition: none;
}

.p-lotion {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion {
    padding-block: 5rem;
  }
}
.p-lotion__title {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__title {
    width: 51.2rem;
  }
}
.p-lotion__text {
  width: 75.1rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 6rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text {
    width: 50.1rem;
    margin-top: 5.6rem;
  }
}
.p-lotion__text picture,
.p-lotion__text img {
  position: relative;
  z-index: 50;
}
.p-lotion__text span {
  width: auto;
  height: 1.4rem;
  background: #ffc5d1;
  position: absolute;
  width: 0;
  z-index: 0;
}
.p-lotion__text span:nth-child(2) {
  left: 72rem;
  top: 5.5rem;
  transition: width 0.2s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text span:nth-child(2) {
    left: 22.4rem;
    top: 13.8rem;
    transition: width 0.4s;
  }
}
.p-lotion__text span:nth-child(3) {
  top: 10rem;
  transition: width 0.6s linear 0.2s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text span:nth-child(3) {
    top: 22.8rem;
    transition: width 0.8s linear 0.4s;
  }
}
.p-lotion__text span:nth-child(4) {
  top: 18.4rem;
  transition: width 1s linear 0.8s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text span:nth-child(4) {
    top: 35.4rem;
    transition: width 0.4s linear 1.2s;
  }
}
.p-lotion__text span:nth-child(5) {
  top: 31.6rem;
  transition: width 0.6s linear 1.8s;
}
.p-lotion__text.is-active span:nth-child(2) {
  width: 3.2rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text.is-active span:nth-child(2) {
    width: 17.8rem;
  }
}
.p-lotion__text.is-active span:nth-child(3) {
  width: 15.2rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text.is-active span:nth-child(3) {
    width: 36.7rem;
  }
}
.p-lotion__text.is-active span:nth-child(4) {
  width: 36.7rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__text.is-active span:nth-child(4) {
    width: 18.3rem;
  }
}
.p-lotion__text.is-active span:nth-child(5) {
  width: 18.3rem;
}
.p-lotion__block {
  margin-top: 11rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__block {
    margin-top: 5rem;
  }
}
.p-lotion__blockTitle {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockTitle {
    width: 49.9rem;
  }
}
.p-lotion__blockContent {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent {
    width: 51rem;
    margin-top: 3.4rem;
  }
}
.p-lotion__blockContent picture,
.p-lotion__blockContent img {
  position: relative;
  z-index: 50;
}
.p-lotion__blockContent span {
  width: auto;
  height: 1.4rem;
  background: #ffc5d1;
  position: absolute;
  width: 0;
  z-index: 0;
}
.p-lotion__blockContent--01 span:nth-child(2) {
  left: 38rem;
  top: 16rem;
  transition: width 0.4s linear;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--01 span:nth-child(2) {
    left: 20.8rem;
    top: 9.7rem;
  }
}
.p-lotion__blockContent--01 span:nth-child(3) {
  left: 58rem;
  top: 20.5rem;
  transition: width 0.2s linear 0.4s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--01 span:nth-child(3) {
    left: 0;
    top: 18.3rem;
    transition: width 1.2s linear 0.4s;
  }
}
.p-lotion__blockContent--01 span:nth-child(4) {
  left: 17rem;
  top: 25.3rem;
  transition: width 1s linear 0.8s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--01 span:nth-child(4) {
    left: 0;
    top: 22.3rem;
    transition: width 0.3s linear 1.6s;
  }
}
.p-lotion__blockContent--01.is-active span:nth-child(2) {
  width: 16.8rem;
}
.p-lotion__blockContent--01.is-active span:nth-child(3) {
  width: 4.9rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--01.is-active span:nth-child(3) {
    width: 40rem;
  }
}
.p-lotion__blockContent--01.is-active span:nth-child(4) {
  width: 42.3rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--01.is-active span:nth-child(4) {
    width: 9.7rem;
  }
}
.p-lotion__blockContent--02 span:nth-child(2) {
  left: 36rem;
  top: 17.7rem;
  transition: width 0.4s linear;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02 span:nth-child(2) {
    left: 19.2rem;
    top: 13rem;
    transition: width 0.5s linear;
  }
}
.p-lotion__blockContent--02 span:nth-child(3) {
  left: 53.4rem;
  top: 22.5rem;
  transition: width 0.3s linear 0.4s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02 span:nth-child(3) {
    left: 35rem;
    top: 18rem;
    transition: width 0.3s linear 0.5s;
  }
}
.p-lotion__blockContent--02 span:nth-child(4) {
  left: 17rem;
  top: 27rem;
  transition: width 1s linear 0.7s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02 span:nth-child(4) {
    left: 0;
    top: 22rem;
    transition: width 1.2s linear 0.8s;
  }
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02 span:nth-child(5) {
    left: 0;
    top: 26rem;
    transition: width 0.3s linear 2s;
  }
}
.p-lotion__blockContent--02.is-active span:nth-child(2) {
  width: 18.8rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02.is-active span:nth-child(2) {
    width: 19.1rem;
  }
}
.p-lotion__blockContent--02.is-active span:nth-child(3) {
  width: 9.3rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02.is-active span:nth-child(3) {
    width: 4.6rem;
  }
}
.p-lotion__blockContent--02.is-active span:nth-child(4) {
  width: 39.5rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02.is-active span:nth-child(4) {
    width: 40rem;
  }
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--02.is-active span:nth-child(5) {
    width: 5rem;
  }
}
.p-lotion__blockContent--03 span:nth-child(2) {
  left: 36rem;
  top: 17.7rem;
  transition: width 0.5s linear;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--03 span:nth-child(2) {
    left: 19.7rem;
    top: 13.5rem;
  }
}
.p-lotion__blockContent--03 span:nth-child(3) {
  left: 57rem;
  top: 22rem;
  transition: width 0.3s linear 0.5s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--03 span:nth-child(3) {
    left: 0;
    transition: width 1.2s linear 0.5s;
  }
}
.p-lotion__blockContent--03 span:nth-child(4) {
  left: 17rem;
  top: 27rem;
  transition: width 1.2s linear 0.8s;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--03 span:nth-child(4) {
    left: 0;
    top: 26.5rem;
    transition: width 1s linear 1.7s;
  }
}
.p-lotion__blockContent--03 span:nth-child(5) {
  left: 17rem;
  top: 31.6rem;
  transition: width 0.5s linear 2s;
}
.p-lotion__blockContent--03.is-active span:nth-child(2) {
  width: 19.2rem;
}
.p-lotion__blockContent--03.is-active span:nth-child(3) {
  width: 5.6rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--03.is-active span:nth-child(3) {
    width: 40rem;
  }
}
.p-lotion__blockContent--03.is-active span:nth-child(4) {
  width: 46rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockContent--03.is-active span:nth-child(4) {
    width: 25.9rem;
  }
}
.p-lotion__blockContent--03.is-active span:nth-child(5) {
  width: 14.4rem;
}
.p-lotion__blockLink {
  width: 28.1rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockLink {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px ) {
  .p-lotion__blockLink--01 {
    margin-top: 2.5rem;
  }
}
.p-lotion__image {
  width: 78rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 8rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__image {
    width: 50rem;
  }
}
.p-lotion__bin {
  margin-top: 9rem;
  width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-block: 6rem 5rem;
  background: #ffc5d1;
  border-radius: 1.8rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__bin {
    width: 53rem;
    margin-top: 7.6rem;
    padding-block: 5.2rem;
  }
}
.p-lotion__binTitle {
  width: 65rem;
  margin-inline: auto;
  row-gap: 0.2rem;
}
.p-lotion__binTitle img {
  width: 47.2rem;
  height: auto;
  margin-inline: auto;
  margin-top: -4.6rem;
  position: relative;
  z-index: 30;
}
@media screen and (max-width: 768px ) {
  .p-lotion__binTitle {
    width: 47.2rem;
  }
}
.p-lotion__binImage {
  width: 46.4rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-lotion__use {
  margin-top: 8.8rem;
}
.p-lotion__useTitle {
  row-gap: 2rem;
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-lotion__useTitle {
    width: 51.2rem;
  }
}
.p-lotion__useContent {
  width: 66.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 5.5rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-lotion__useContent {
    width: 44.6rem;
    margin-top: 6rem;
  }
}
.p-lotion__useContent span {
  display: block;
  width: 4.8rem;
  height: 3.3rem;
  position: absolute;
  background: url(../images/icon_check.png) no-repeat center center/cover;
  left: -0.5rem;
}
.p-lotion__useContent span:nth-child(2) {
  top: -0.8rem;
}
.p-lotion__useContent span:nth-child(3) {
  top: 5.5rem;
}
.p-lotion__useContent span:nth-child(4) {
  top: 12rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__useContent span:nth-child(4) {
    top: 18rem;
  }
}
.p-lotion__useImage {
  width: 68.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 7rem;
}
@media screen and (max-width: 768px ) {
  .p-lotion__useImage {
    width: 55.1rem;
    margin-top: 5.5rem;
  }
}
.p-lotion__useContent span {
  opacity: 0;
  transition: opacity 1.3s;
}
.p-lotion__useContent span:nth-child(2) {
  transition-delay: 0.2s;
}
.p-lotion__useContent span:nth-child(3) {
  transition-delay: 0.6s;
}
.p-lotion__useContent span:nth-child(4) {
  transition-delay: 1s;
}
.p-lotion__useContent.is-active span {
  opacity: 1;
}

.p-na5 {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-na5 {
    padding-block: 5rem;
  }
}
.p-na5__title {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__title {
    width: 50rem;
  }
}
.p-na5__content {
  margin-top: 2rem;
  width: 71.7rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-na5__content {
    width: 42.5rem;
  }
}
.p-na5__text {
  width: 75rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 768px ) {
  .p-na5__text {
    width: 50rem;
  }
}
.p-na5__text picture,
.p-na5__text img {
  position: relative;
  z-index: 50;
}
.p-na5__text span {
  width: auto;
  height: 1.4rem;
  background: #ffc5d1;
  position: absolute;
  width: 0;
  left: 0;
  z-index: 0;
}
.p-na5__text span:nth-child(2) {
  left: 0;
  top: 1.6rem;
  transition: width 0.6s;
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(2) {
    left: 0;
    top: 1.4rem;
    transition: width 0.8s;
  }
}
.p-na5__text span:nth-child(3) {
  left: 62rem;
  top: 1.6rem;
  transition: width 0.3s linear 0.6s;
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(3) {
    left: 14.3rem;
    top: 5.8rem;
    transition: width 0.8s linear 0.8s;
  }
}
.p-na5__text span:nth-child(4) {
  top: 6rem;
  transition: width 1s linear 0.9s;
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(4) {
    left: 0;
    top: 10.2rem;
    transition: width 1s linear 1.6s;
  }
}
.p-na5__text span:nth-child(5) {
  left: 15.4rem;
  top: 14.7rem;
  transition: width 0.4s linear 1.9s;
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(5) {
    left: 0;
    top: 14.4rem;
    transition: width 0.2s linear 2.6s;
  }
}
.p-na5__text span:nth-child(6) {
  top: 19rem;
  transition: width 1s linear 2.3s;
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(6) {
    left: 16rem;
    top: 23.2rem;
    transition: width 0.6s linear 2.8s;
  }
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(7) {
    left: 0;
    top: 27.4rem;
    transition: width 1s linear 3.4s;
  }
}
@media screen and (max-width: 768px ) {
  .p-na5__text span:nth-child(8) {
    left: 0;
    top: 31.6rem;
    transition: width 0.4s linear 4.4s;
  }
}
.p-na5__text.is-active span:nth-child(2) {
  width: 31rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(2) {
    width: 32.3rem;
  }
}
.p-na5__text.is-active span:nth-child(3) {
  width: 13.2rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(3) {
    width: 36rem;
  }
}
.p-na5__text.is-active span:nth-child(4) {
  width: 69.4rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(4) {
    width: 50.3rem;
  }
}
.p-na5__text.is-active span:nth-child(5) {
  width: 20.1rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(5) {
    width: 3rem;
  }
}
.p-na5__text.is-active span:nth-child(6) {
  width: 59.2rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(6) {
    width: 20.6rem;
  }
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(7) {
    width: 50.3rem;
  }
}
@media screen and (max-width: 768px ) {
  .p-na5__text.is-active span:nth-child(8) {
    width: 10.1rem;
  }
}
.p-na5__image {
  width: 78rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__image {
    width: 53.2rem;
  }
}
.p-na5__block {
  margin-top: 5rem;
  width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-block: 6rem 5rem;
  background: #ffc5d1;
  border-radius: 1.8rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__block {
    width: 53rem;
    margin-top: 7.6rem;
    padding-block: 5.2rem;
  }
}
.p-na5__blockTitle {
  width: 65rem;
  margin-inline: auto;
  row-gap: 2rem;
}
.p-na5__blockTitle img {
  width: 35rem;
  height: auto;
  margin-inline: auto;
  margin-top: 1rem;
}
@media screen and (max-width: 768px ) {
  .p-na5__blockTitle {
    width: 46.6rem;
  }
}
.p-na5__blockImage {
  width: 47.1rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-na5__button {
  margin-top: 5rem;
}
.p-kikumasa {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-kikumasa {
    padding-block: 5rem;
  }
}
.p-kikumasa__inner {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px ) {
  .p-kikumasa__inner {
    padding-bottom: 8rem;
  }
}
.p-kikumasa__title {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 3rem;
}
.p-kikumasa__title img {
  width: 23.1rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-kikumasa__title {
    width: 53.6rem;
  }
}
.p-kikumasa__text {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px ) {
  .p-kikumasa__text {
    width: 100%;
  }
}
.p-kikumasa__button {
  display: block;
  width: 49.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 768px ) {
  .p-kikumasa__button {
    width: 44.4rem;
    margin-top: 6rem;
  }
}
.p-kikumasa__text {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-kikumasa__text.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-touken {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-touken {
    padding-block: 5rem;
  }
}
.p-touken__inner {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px ) {
  .p-touken__inner {
    padding-bottom: 8rem;
  }
}
.p-touken__title {
  width: 90rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  row-gap: 3rem;
}
.p-touken__title img {
  width: 40.5rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-touken__title {
    width: 53.6rem;
  }
}
.p-touken__text {
  display: flex;
  flex-direction: column;
  row-gap: 7rem;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.p-touken__text span {
  display: block;
}
.p-touken__text span:nth-child(1) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-touken__text span:nth-child(2) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.p-touken__text span:nth-child(3) {
  width: 58.5rem;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px ) {
  .p-touken__text span:nth-child(3) {
    width: 100%;
  }
}
.p-touken__button {
  margin-top: 7rem;
  width: 55.3rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 768px ) {
  .p-touken__button {
    width: 44.4rem;
  }
}
.p-touken__text span {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-touken__text span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-contact {
  padding-block: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-contact {
    padding-block: 5rem;
  }
}
.p-contact__inner {
  width: 105rem;
  height: auto;
  margin-inline: auto;
  padding-block: 2.6rem 5.3rem;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px ) {
  .p-contact__inner {
    width: 60rem;
    padding-block: 2.6rem 5.3rem;
  }
}
.p-contact__title {
  width: 99.5rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-contact__title {
    width: 54.5rem;
  }
}
.p-contact__text {
  width: 36.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px ) {
  .p-contact__text {
    margin-top: 3rem;
  }
}

.p-end {
  padding-block: 2rem 4rem;
}
@media screen and (max-width: 768px ) {
  .p-end {
    padding-block: 1rem 2.6rem;
  }
}
.p-end__banner {
  display: block;
  width: 72rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px ) {
  .p-end__banner {
    width: 57.1rem;
  }
}
.p-end__copy {
  width: 21.6rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 768px ) {
  .p-end__copy {
    width: 26.7rem;
    margin-top: 4rem;
  }
}
.p-end__banner img {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1s, transform 1s;
}
.p-end__banner.is-active img {
  opacity: 1;
  transform: translateY(0);
}

.p-floating {
  position: fixed;
  right: 3rem;
  bottom: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}
@media screen and (max-width: 768px ) {
  .p-floating {
    right: 2rem;
    bottom: 2rem;
  }
}
.p-floating__button01 {
  display: block;
  width: 10rem;
  height: -moz-fit-content;
  height: fit-content;
  filter: drop-shadow(0.4rem 0.4rem 0.5rem rgba(216, 57, 57, 0.75));
}
.p-floating__button02 {
  display: block;
  width: 10.2rem;
  height: -moz-fit-content;
  height: fit-content;
  filter: drop-shadow(0.4rem 0.4rem 0.5rem rgba(216, 57, 57, 0.75));
}
.p-floating__button03 {
  display: block;
  width: 10.2rem;
  height: -moz-fit-content;
  height: fit-content;
  filter: drop-shadow(0.25rem 0.375rem 0.5rem rgba(255, 255, 255, 0.75));
}
.p-floating.is-active {
  opacity: 1;
  pointer-events: all;
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */
/*# sourceMappingURL=maps/style.css.map */
