@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
html, body {
  background-color: #fff;
  font-size: 16px;
  font-feature-settings: "palt";
  margin: 0;
  scrollbar-gutter: stable;
}

* {
  font-family: "Zen Maru Gothic", sans-serif;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  pointer-events: none;
}

a, button {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  border: none;
}

li {
  list-style: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.delay-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.is-show .delay-item {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.is-show .delay-item:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-up.is-show .delay-item:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-up.is-show .delay-item:nth-child(3) {
  transition-delay: 0.6s;
}
.fade-up.is-show .delay-item:nth-child(4) {
  transition-delay: 0.8s;
}
.fade-up.is-show .delay-item:nth-child(5) {
  transition-delay: 1s;
}
.fade-up.is-show .delay-item:nth-child(6) {
  transition-delay: 1.2s;
}
.fade-up.is-show .delay-item:nth-child(7) {
  transition-delay: 1.4s;
}
.fade-up.is-show .delay-item:nth-child(8) {
  transition-delay: 1.6s;
}
.fade-up.is-show .delay-item:nth-child(9) {
  transition-delay: 1.8s;
}
.fade-up.is-show .delay-item:nth-child(10) {
  transition-delay: 2s;
}

.water-btn {
  display: block;
  width: 41.1290322581%;
  aspect-ratio: 255/59;
  margin: 16px auto 24px;
  border: none;
  border-radius: 40vw;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  border: 2px solid #41647d;
  box-shadow: 2px 2px 0px #41647d;
  transition: all 0.1s ease;
  position: relative;
}
.water-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #41647d;
}
.water-btn .label {
  display: flex;
  height: 100%;
  width: 71.7647058824%;
  position: relative;
  z-index: 2;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-5%);
}
.water-btn .wave {
  position: absolute;
  bottom: -270%;
  left: 0;
  width: 100%;
  height: 300%;
  fill: #4fa3ff;
  transition: transform 1s ease, bottom 1s ease;
}
.water-btn:hover .wave {
  bottom: -100%;
}
.water-btn::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 5%;
  height: 38%;
  aspect-ratio: 1;
  background-image: url(../img/next.svg);
}

@media (max-width: 768px) {
  .water-btn {
    display: block;
    width: 67.9525222552%;
    max-width: 300px;
  }
}
body header {
  position: fixed;
  height: 64px;
}
@media (max-width: 768px) {
  body header {
    height: 60px;
  }
}
body header {
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 101;
  border-bottom: 1px solid #f1f2f6;
}
body header .logo {
  display: flex;
  width: 195px;
  height: 100%;
  margin-left: 60px;
}
body header .logo img {
  width: 100%;
}
@media (max-width: 768px) {
  body header .logo {
    height: 45px;
    margin-left: 18px;
    margin-top: 8px;
    width: 138px;
  }
}
body header .hamburger {
  width: 28px;
  height: 26px;
  right: 50px;
}
@media (max-width: 768px) {
  body header .hamburger {
    width: 20px;
    height: 18px;
    right: 18px;
  }
}
body header .hamburger {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 100;
}
body header .hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #41647d;
  left: 0;
  transition: 0.5s;
}
body header .hamburger span:nth-child(1) {
  top: 0;
}
body header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
body header .hamburger span:nth-child(3) {
  bottom: 0;
}
body header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11.5px;
}
@media (max-width: 768px) {
  body header .hamburger.active span:nth-child(1) {
    top: 7.5px;
  }
}
body header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
body header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11.5px;
}
@media (max-width: 768px) {
  body header .hamburger.active span:nth-child(3) {
    bottom: 7.5px;
  }
}
body main .fixed-links {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
}
body main .fixed-links a {
  pointer-events: auto;
  display: block;
  position: fixed;
  width: 9.5168374817%;
  aspect-ratio: 130/109;
  max-width: 195px;
  max-height: 163.5px;
  border-radius: 9.5168374817% 0 0 9.5168374817%;
  border: 1px solid white;
  right: 0;
  color: white;
  font-size: min(28px, 1.61vw);
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
body main .fixed-links a::after {
  position: absolute;
  content: "";
  transform: translateX(-50%);
  left: 50%;
  aspect-ratio: 1;
}
body main .fixed-links a .text {
  margin-top: 8%;
  display: block;
}
body main .fixed-links a.apply {
  background-color: black;
  top: calc(144px + 11.5vw);
}
body main .fixed-links a.apply::after {
  width: 22.3076923077%;
  bottom: 6.9230769231%;
  background-image: url(../img/X-fixed.svg);
}
body main .fixed-links a.check-howto, body main .fixed-links a.anchor1 {
  top: calc(144px + 11.5vw);
  transform: translateY(-120%);
  background-color: #e65082;
}
body main .fixed-links a.check-howto::after, body main .fixed-links a.anchor1::after {
  width: 17.6923076923%;
  bottom: 10%;
  background-image: url(../img/anchor-arrow.svg);
}
body main .fixed-links a.anchor2 {
  background-color: #7dc8eb;
  top: calc(144px + 11.5vw);
}
body main .fixed-links a.anchor2 .text {
  margin-top: 17%;
}
body main .fixed-links a.anchor2::after {
  width: 22.3076923077%;
  bottom: 6.9230769231%;
  background-image: url(../img/anchor-arrow-blue.svg);
}
body main .fixed-links {
  height: 45px;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 768px) {
  body main .fixed-links a {
    width: 45.6%;
    aspect-ratio: 171/47;
    max-width: 300px;
    max-height: 82px;
    border-radius: 12px 12px 0 0;
    bottom: 0;
    color: white;
    font-size: min(16px, 4.3vw);
    text-align: center;
    display: inline-block;
  }
  body main .fixed-links a::after {
    position: absolute;
    content: "";
    transform: translate(-50%, 50%);
    left: initial;
    aspect-ratio: 1;
  }
  body main .fixed-links a .text {
    position: absolute;
    margin-top: 8%;
    white-space: nowrap;
    transform: translate(-55%, 50%);
    bottom: 50%;
    left: 50%;
  }
  body main .fixed-links a .text .hiragana {
    font-size: min(14px, 3.76vw);
  }
  body main .fixed-links a.anchor1, body main .fixed-links a.check-howto {
    left: 3.2%;
    top: initial;
    transform: translateY(0);
    background-color: #e65082;
  }
  body main .fixed-links a.anchor1::after, body main .fixed-links a.check-howto::after {
    width: 11.1111111111%;
    right: 0%;
    bottom: 50%;
    background-image: url(../img/anchor-arrow.svg);
  }
  body main .fixed-links a.anchor1 .text {
    font-size: min(14px, 3.76vw);
    transform: translate(-58%, 50%);
  }
  body main .fixed-links a.apply {
    right: 3.2%;
    top: initial;
    background-color: black;
  }
  body main .fixed-links a.apply::after {
    right: -2%;
    width: 15.7894736842%;
    bottom: 50%;
    background-image: url(../img/X-fixed.svg);
  }
  body main .fixed-links a.anchor2 .text {
    margin-top: 17%;
  }
  body main .fixed-links a.anchor2 {
    right: 3.2%;
    top: initial;
    background-color: #7dc8eb;
  }
  body main .fixed-links a.anchor2::after {
    right: -2%;
    width: 11.1111111111%;
    bottom: 50%;
    background-image: url(../img/anchor-arrow-blue.svg);
  }
  body main .fixed-links {
    height: 45px;
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 1000;
    transition: 0.3s;
  }
  body main .fixed-links.hide {
    opacity: 0;
    pointer-events: none;
  }
  body main .fixed-links.hide a {
    pointer-events: none;
  }
}
body main .nav {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: calc(100dvh - 60px);
  transition: 0.5s;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}
body main .nav .nav-inner {
  position: relative;
  background: #e6f5fa;
  width: 89.3333333333%;
  height: 100%;
}
body main .nav .nav-inner .nav-content {
  width: 100%;
}
@media (min-width: 769px) {
  body main .nav .nav-inner .nav-content {
    width: 550px;
    position: absolute;
    transform: translateX(50%);
    right: 50vw;
    height: 100%;
  }
}
body main .nav .nav-inner .nav-content .anchor-list {
  padding-top: 16px;
  margin: 0 28px;
  list-style: none;
}
body main .nav .nav-inner .nav-content .anchor-list li {
  padding: 5% 0;
  border-bottom: 1px solid white;
  position: relative;
}
body main .nav .nav-inner .nav-content .anchor-list li::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-image: url(../img/hamburger-arrow.svg);
}
body main .nav .nav-inner .nav-content .anchor-list li a {
  display: block;
  text-decoration: none;
  color: #41647d;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  height: 100%;
}
body main .nav .nav-inner .official-sns {
  position: absolute;
  transform: translate(-50%, 50%);
  left: 50%;
  bottom: 25%;
  background-color: white;
  border-radius: 100vw;
  width: 82.3880597015%;
  max-width: 300px;
  aspect-ratio: 276/130;
  margin: min(5%, 32px) auto;
}
body main .nav .nav-inner .official-sns .official-sns-text {
  padding-top: 4%;
  text-align: center;
  color: #41647d;
  font-weight: 700;
  font-size: min(16px, 3.5vw);
}
body main .nav .nav-inner .official-sns .sns-list {
  display: flex;
  justify-content: center;
  gap: 4.776119403%;
  margin-top: 4%;
}
body main .nav .nav-inner .official-sns .sns-list li {
  width: 21.7391304348%;
}
body main .nav .nav-inner .official-sns .sns-list li a {
  display: block;
  width: 100%;
  height: 100%;
}
body main .nav .nav-inner .water-btn {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 82.3880597015%;
  aspect-ratio: 276/59;
  max-width: 350px;
}
body main .nav .nav-inner .water-btn span {
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 55%;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: min(18px, 4.2vw);
  z-index: 100;
  color: black;
}
body main .nav .nav-inner .water-btn::before {
  position: absolute;
  content: "";
  transform: translate(-50%, -50%);
  left: 13%;
  top: 50%;
  height: 66.1016949153%;
  aspect-ratio: 32/33;
  background-image: url(../img/saniel-icon.svg);
  z-index: 100;
}
body main .nav .nav-inner .water-btn::after {
  background-image: none;
}
body main .nav.active {
  right: 0;
}
body main {
  overflow: hidden;
}
body main .kv {
  margin-top: 45px;
  display: flex;
  width: 100%;
  aspect-ratio: 1366/415;
}
body main .kv .kv-title {
  width: 51.0248901903%;
  height: 100%;
  background-image: url(../img/kv-bg.png);
  background-size: 100%;
  background-position: 50% 50%;
  position: relative;
}
body main .kv .kv-title img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 60%;
  width: 71.1621233859%;
}
body main .kv .kv-movie {
  width: 48.9751098097%;
  height: 100%;
  clip-path: ellipse(100% 117% at 100% 50%);
  background-size: 100%;
  background-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  position: relative;
}
body main .kv .kv-movie video {
  position: absolute;
  transform: translate(-50%, -50%) scale(1.03);
  left: 50%;
  top: 50%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  body main .kv {
    display: block;
    width: 100%;
    aspect-ratio: 375/405;
    position: relative;
  }
  body main .kv .kv-title {
    width: 100%;
    height: 60%;
    background-image: url(../img/kv-bg-sp.png);
    background-size: 100%;
    background-position: center -5%;
    background-repeat: no-repeat;
  }
  body main .kv .kv-title img {
    transform: translate(-50%, 0%);
    top: 10%;
    left: 50%;
    width: 92%;
  }
  body main .kv .kv-movie {
    position: relative;
    width: 100%;
    height: 80%;
    margin-top: -15%;
    clip-path: ellipse(100% 100% at 50% 100%);
    background-color: transparent;
    background-size: 100%;
    background-position: 50% 50%;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
  body main .kv .kv-movie .kv-movie-content {
    transform: translate(-50%, -50%) scale(1.6);
    width: 100%;
  }
}
body main .about {
  position: relative;
  width: 100%;
  background-image: url(../img/about-bg.png);
  background-size: 60%;
  background-position: center 0%;
  background-repeat: no-repeat;
  margin-top: -4%;
  z-index: 2;
}
body main .about.about-closed {
  aspect-ratio: 1366/740;
  background-size: 100%;
  background-image: url(../img/about-bg-closed.png);
  margin: -11% auto 0;
  padding-top: 11%;
}
@media (min-width: 1625px) {
  body main .about.about-closed {
    margin-top: -180px;
    padding-top: 190px;
    height: 880px;
    background-size: 100% 100%;
  }
}
body main .about .about-title {
  width: 27.7452415813%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  padding-top: min(32px, 2.5vw);
}
body main .about .about-detail p {
  margin: min(54px, 3vw) auto min(18px, 1.5vw);
  color: #41647d;
  font-size: min(16px, 1.15vw);
  line-height: min(32px, 2.2vw);
  font-weight: 700;
  text-align: center;
}
body main .about .movie-area {
  width: 37.5549048316%;
  max-width: 650px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
body main .about .movie-area .movie-thumbnail {
  position: relative;
  width: 100%;
  border: 2px solid #7dc8eb;
  border-radius: 4px;
  padding-top: 56.25%;
  overflow: hidden;
}
body main .about .movie-area .movie-thumbnail #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body main .about .movie-area .movie-thumbnail #player iframe {
  width: 100%;
  height: 100%;
  display: block;
}
body main .about .movie-area .movie-button-area {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}
body main .about .movie-area .movie-button-area button {
  aspect-ratio: 1;
  background: transparent;
  border: none;
  width: 10%;
  max-width: 50px;
  margin-top: 8px;
  padding: 0;
}
@media (max-width: 768px) {
  body main .about {
    position: relative;
    width: 100%;
    background-image: url(../img/about-bg-sp.png);
    background-size: 70%;
    background-position: center 0%;
    background-repeat: no-repeat;
    margin-top: -4%;
    z-index: 2;
    padding-bottom: min(40px, 10vw);
  }
  body main .about .about-title {
    width: 77.0666666667%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    padding-top: min(32px, 8vw);
  }
  body main .about .about-detail p {
    margin: min(24px, 6.5vw) auto;
    font-size: min(16px, 4.3vw);
    line-height: min(26px, 6.9vw);
  }
  body main .about.about-closed {
    aspect-ratio: 375/540;
    max-height: 670px;
    background-size: 100% 100%;
    background-image: url(../img/about-bg-closed-sp.png);
    margin: -11% auto 0;
  }
  body main .about.about-closed .about-detail p {
    margin: min(32px, 8vw) auto;
  }
  body main .about .movie-area {
    width: 89.6%;
    max-width: 500px;
    margin: 0 auto 0;
    z-index: 2;
    display: block;
    position: relative;
  }
  body main .about .movie-area .movie-thumbnail {
    position: relative;
    width: 100%;
    border-radius: 4px;
    padding-top: 56.25%;
    border: 2px solid #7dc8eb;
    display: block;
  }
  body main .about .movie-area .movie-thumbnail iframe {
    transform: scale(1.01);
  }
  body main .about .movie-area .movie-button-area {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }
  body main .about .movie-area .movie-button-area button {
    aspect-ratio: 1;
    background: transparent;
    border: none;
    width: 15%;
    max-width: 60px;
    justify-content: flex-end;
    margin: 8px 0 0;
  }
}
body main .customers-voice {
  aspect-ratio: 1366/660;
  display: block;
  margin-top: -1%;
}
body main .customers-voice::before {
  content: "";
  display: block;
  height: 60px;
  margin-top: -60px;
}
@media (max-width: 768px) {
  body main .customers-voice::before {
    height: 1vw;
    margin-top: 0;
  }
}
body main .customers-voice::before {
  visibility: hidden;
  pointer-events: none;
}
body main .customers-voice .customers-voice-inner {
  display: block;
  position: relative;
  width: 50.2196193265%;
  max-width: 900px;
  height: 100%;
  margin: 0 auto;
}
body main .customers-voice .customers-voice-inner .customers-voice-title {
  position: absolute;
  width: 37.5690607735%;
  transform: translateX(-50%);
  left: 50%;
}
body main .customers-voice .customers-voice-inner .customers-voice-img {
  position: absolute;
  width: 95.0276243094%;
  transform: translateX(-50%);
  left: 50%;
  top: 43%;
}
body main .customers-voice .customers-voice-inner .modal-button {
  position: absolute;
}
body main .customers-voice .customers-voice-inner .modal-button.modal-button-1 {
  top: 20%;
  left: 0;
  width: 36.6022099448%;
}
body main .customers-voice .customers-voice-inner .modal-button.modal-button-2 {
  top: 29%;
  left: 35%;
  width: 36.7403314917%;
}
body main .customers-voice .customers-voice-inner .modal-button.modal-button-3 {
  top: 21%;
  right: 2%;
  width: 32.7348066298%;
}
body main .customers-voice .customers-voice-inner .water-btn {
  position: absolute;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 2%;
}
body main .customers-voice .customers-voice-inner .water-btn:active {
  transform: translate(calc(-50% + 2px), 2px);
}
@media (max-width: 768px) {
  body main .customers-voice {
    aspect-ratio: 375/739;
    display: block;
    margin-top: 0;
  }
  body main .customers-voice .customers-voice-inner {
    display: block;
    position: relative;
    width: 89.8666666667%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    margin-top: 12%;
  }
  body main .customers-voice .customers-voice-inner .customers-voice-title {
    position: absolute;
    width: 62.3145400593%;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
  }
  body main .customers-voice .customers-voice-inner .customers-voice-img {
    position: absolute;
    width: 102%;
    transform: translateX(-50%);
    left: 50%;
    top: -4%;
    z-index: 0;
  }
  body main .customers-voice .customers-voice-inner .modal-button {
    position: absolute;
  }
  body main .customers-voice .customers-voice-inner .modal-button.modal-button-1 {
    top: 17%;
    left: 0;
    width: 71.5133531157%;
  }
  body main .customers-voice .customers-voice-inner .modal-button.modal-button-2 {
    top: 33%;
    left: 33%;
    width: 71.5133531157%;
  }
  body main .customers-voice .customers-voice-inner .modal-button.modal-button-3 {
    top: 48%;
    left: 2%;
    width: 64.0949554896%;
  }
  body main .customers-voice .customers-voice-inner .water-btn {
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    bottom: 2%;
  }
  body main .customers-voice .customers-voice-inner .water-btn:active {
    transform: translate(calc(-50% + 2px), 2px);
  }
}
body main .cleaning-life-hack {
  background-image: url(../img/life-hack-bg.png);
  background-size: cover;
  background-position: top center;
  width: 100%;
  padding-bottom: 1%;
  margin-top: -5%;
}
body main .cleaning-life-hack .cleaning-life-hack-title {
  width: 27.0131771596%;
  max-width: 430px;
  margin: 0 auto;
  padding-top: 10%;
  pointer-events: none;
}
body main .cleaning-life-hack .life-hack-list {
  width: 39.5314787701%;
  max-width: 680px;
  display: flex;
  margin: 1% auto;
  gap: 4.8571428571%;
}
body main .cleaning-life-hack .insta-button {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 2% 0% 2.5%;
  width: 25.6222547584%;
  max-width: 350px;
  aspect-ratio: 331.5/50;
  border-radius: 40vw;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}
body main .cleaning-life-hack .insta-button .button-inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, #ea33a6, #ea3f5e, #942bf6);
  transition: transform 0.2s ease, background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: min(17px, 1.4vw);
  overflow: hidden;
}
body main .cleaning-life-hack .insta-button .button-inner::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 17%;
  height: 50%;
  aspect-ratio: 1;
  background-image: url(../img/instagram-icon.svg);
}
body main .cleaning-life-hack .insta-button .button-inner::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  right: 3%;
  height: 38%;
  aspect-ratio: 1;
  background-image: url(../img/arrow-instagram.svg);
}
body main .cleaning-life-hack .insta-button .button-inner .label {
  position: relative;
  transform: translate(5%, -7%);
}
body main .cleaning-life-hack .insta-button::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 100px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #ea33a6, #ea3f5e, #942bf6) border-box;
  border: 3px solid transparent;
  z-index: -1;
}
body main .cleaning-life-hack .insta-button:active .button-inner {
  transform: translateY(8px);
}
body main .cleaning-life-hack .housework-title {
  width: 23.0600292826%;
  max-width: 315px;
  margin: 5% auto 0;
}
body main .cleaning-life-hack .housework-title .water-btn {
  width: 91.1111111111%;
  max-width: 287px;
  margin: 4% auto 20%;
}
body main .cleaning-life-hack .housework-title .water-btn .label {
  width: 58.8235294118%;
}
@media (max-width: 768px) {
  body main .cleaning-life-hack {
    background-image: url(../img/life-hack-bg-sp.png);
  }
  body main .cleaning-life-hack .cleaning-life-hack-title {
    width: 75.4666666667%;
    padding-top: 15%;
  }
  body main .cleaning-life-hack .life-hack-list {
    width: 89.8666666667%;
    margin: 5% auto;
    gap: 2.3738872404%;
  }
  body main .cleaning-life-hack .insta-button {
    margin: 2% 0% 15%;
    width: 89.8666666667%;
  }
  body main .cleaning-life-hack .insta-button .button-inner {
    font-size: min(17.5px, 4.5vw);
  }
  body main .cleaning-life-hack .housework-title {
    width: 76.5333333333%;
  }
  body main .cleaning-life-hack .housework-title .water-btn {
    width: 88.850174216%;
    margin: 3% auto 12%;
  }
}
body main .modal {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
}
body main .modal.open {
  opacity: 1;
  pointer-events: auto;
}
body main .modal .modal-inner {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 90%;
  width: 90%;
  max-width: 600px;
  max-height: 750px;
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
}
body main .modal .modal-inner .modal-header {
  height: 68px;
  background-color: #bedcff;
  border-radius: 16px;
  position: relative;
  border: 2px solid #41647d;
  margin-bottom: 20px;
}
body main .modal .modal-inner .modal-header img {
  position: absolute;
  width: 71.4%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
body main .modal .modal-inner .modal-header .modal-close {
  position: absolute;
  width: 5.6%;
  max-width: 28px;
  aspect-ratio: 1/1;
  transform: translate(0%, -50%);
  top: 50%;
  right: 20px;
  border-radius: 50%;
  background-image: url(../img/close.svg);
}
body main .modal .modal-inner .modal-main {
  height: calc(100% - 68px);
  padding-left: 20px;
  padding-right: 45px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area {
  z-index: 2;
  position: relative;
  height: calc(100% - 100px);
  padding: 0;
  border-radius: 0 0 10px 10px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-content-wrapper {
  padding-right: 0px !important;
  scroll-behavior: smooth !important;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}
body main .modal .modal-inner .modal-main .modal-scroll-area::-webkit-scrollbar {
  display: none;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track {
  z-index: 3;
  background: #e6e6e6;
  height: 100%;
  margin: auto 0;
  width: 6px;
  align-items: center;
  border-radius: 3px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track .simplebar-scrollbar {
  height: 26px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track .simplebar-scrollbar::before {
  position: absolute;
  background: #7dc8eb;
  opacity: 1;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 3px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track.simplebar-vertical {
  top: 100%;
  transform: translateY(-50%);
  right: -26px;
  overflow: hidden;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .modal-image {
  display: flex;
  width: 44%;
  margin-top: 20px;
  margin: 0 auto;
  border-radius: 4px;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .customer {
  color: #41647d;
  font-size: 18px;
  font-weight: 700;
  margin-top: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #41647d;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .customer .customer-info li::before {
  content: "・";
  color: #7dc8eb;
}
body main .modal .modal-inner .modal-main .modal-scroll-area .customer-voice-text {
  margin-top: 16px;
  color: #41647d;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}
body main .modal .modal-inner .modal-main .modal-close-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0;
  background-color: #a0b1be;
  color: white;
  width: 140px;
  height: 35px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 768px) {
  body main .modal .modal-inner {
    width: 89.6%;
    border-radius: 12px;
    padding-bottom: 12px;
  }
  body main .modal .modal-inner .modal-header {
    height: 74px;
    border-radius: 12px;
  }
  body main .modal .modal-inner .modal-header img {
    width: 55.3571428571%;
    max-width: 186px;
  }
  body main .modal .modal-inner .modal-header .modal-close {
    width: 8.3333333333%;
    right: 16px;
  }
  body main .modal .modal-inner .modal-main {
    height: calc(100% - 74px);
    padding-left: 16px;
    padding-right: 30px;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area {
    height: calc(100% - 70px);
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area::-webkit-scrollbar {
    display: none;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track.simplebar-vertical {
    right: -22px;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area .simplebar-track {
    width: 4px;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area .modal-image {
    width: 65.4761904762%;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area .customer {
    font-size: 14px;
    margin-top: 16px;
  }
  body main .modal .modal-inner .modal-main .modal-scroll-area .customer-voice-text {
    font-size: 13px;
    line-height: 22px;
  }
  body main .modal .modal-inner .modal-main .modal-close-bottom {
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 18px;
  }
  body main .modal.modal-2 .modal-inner .modal-header img {
    width: 57.4404761905%;
    max-width: 193px;
  }
  body main .modal.modal-3 .modal-inner .modal-header img {
    width: 78.2738095238%;
    max-width: 263px;
  }
}
body main .fixed-links {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  body main .fixed-links {
    height: 100dvh;
  }
}
body main .fixed-links {
  pointer-events: none;
  z-index: 100;
  background-color: transparent;
}
body footer {
  width: 100%;
  height: 80px;
  background-color: #41647d;
}
body footer .footer-inner {
  height: 80px;
  width: min(80%, 500px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body footer .footer-inner .footer-link {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: min(16px, 3vw);
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}
body footer .footer-inner .footer-link a {
  color: white;
}
body footer .footer-inner .copyright {
  text-align: center;
  color: white;
  font-size: min(13px, 2.5vw);
  line-height: 30px;
  font-weight: 500;
}
@media (max-width: 768px) {
  body footer {
    height: 125px;
  }
  body footer .footer-inner {
    height: 80px;
    display: block;
    flex-direction: column;
  }
  body footer .footer-inner .footer-link {
    display: flex;
    flex-direction: column;
    line-height: 22px;
    padding-top: 12px;
    text-align: center;
  }
  body footer .footer-inner .copyright {
    font-size: min(13px, 2.5vw);
    margin-top: 12px;
    line-height: 30px;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */