@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
/*
===== original reset ===========================
*/
/* 1: universal reset
------------------------------------- */
html {
  cursor: default;
  font-size: 62.5%;
}

/* box sizing
------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
}

/* general params
------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
body,
div,
p,
pre,
ul,
ol,
dl,
dt,
dd,
address,
form,
blockquote,
figure {
  margin: 0;
  padding: 0; /* margin&padding reset */
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

/* word break
------------------------------------- */
p {
  word-break: normal;
}

/* image
------------------------------------- */
img {
  vertical-align: bottom;
  border-style: none;
}

/* 2: form setting
------------------------------------- */
option {
  padding-right: 10px;
}

input,
select {
  vertical-align: middle;
}

*:focus {
  outline: none;
}

@-webkit-keyframes fade-bottom {
  from {
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes fade-bottom {
  from {
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-anim-trigger {
  opacity: 0;
  /*-------------------------------------------> delay */
  /*-------------------------------------------> setting */
}
.js-anim-trigger.--delay-1 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
.js-anim-trigger.--delay-2 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.js-anim-trigger.--delay-3 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.js-anim-trigger.--delay-4 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.js-anim-trigger.--delay-5 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.js-anim-trigger.--delay-6 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.js-anim-trigger.--delay-7 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
.js-anim-trigger.--delay-8 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
.js-anim-trigger.--delay-9 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
.js-anim-trigger.--delay-10 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
.js-anim-trigger.--fade.js-anim-active {
  -webkit-animation: fade 1.6s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: fade 1.6s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.js-anim-trigger.--fade-bottom.js-anim-active {
  -webkit-animation: fade-bottom 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
          animation: fade-bottom 1s 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #ffffff;
  background-color: #111111;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-feature-settings: "palt";
}

* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
}

img,
svg {
  width: 100%;
  height: auto;
  vertical-align: top;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.page-wrapper {
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .page-wrapper {
    width: 750px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.common-btn {
  cursor: pointer;
  width: 67rem;
  height: 10rem;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 5rem;
  position: relative;
  transition: all 0.2s ease-out;
}
.common-btn::before {
  content: "";
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #29b3fa;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  z-index: 0;
}
.common-btn::after {
  content: "";
  width: 1.45rem;
  height: 1.45rem;
  border-top: solid 0.2rem #ffffff;
  border-right: solid 0.2rem #ffffff;
  position: absolute;
  top: 50%;
  right: 4.6rem;
  transform: translateY(-50%) rotate(45deg);
  z-index: 10;
  transition: all 0.1s ease-out;
}
.common-btn + .common-btn {
  margin-top: 3rem;
}
.common-btn.--amazon img {
  width: 31.6rem;
  margin-top: 1rem;
}
.common-btn.--nature img {
  width: 41.4rem;
}
.common-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-btn span {
  font-size: 3rem;
  letter-spacing: -0.025em;
  font-weight: 900;
  color: #000000;
}
.common-btn.--bk {
  background-color: #000000;
}
.common-btn.--bk::after {
  border-top: solid 0.2rem #ffffff;
  border-right: solid 0.2rem #ffffff;
}
.common-btn.--bk > span {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .common-btn:hover {
    background-color: #cfed00;
  }
  .common-btn:hover::after {
    right: 4.3rem;
  }
}

.header {
  width: 100%;
  height: 12rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo {
  width: 17.7rem;
  height: auto;
}

.footer {
  height: 12rem;
  padding: 0 3.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer {
    width: 100%;
  }
}
.footer .footer__links {
  display: flex;
}
.footer .footer__links > a {
  font-size: 2.2rem;
  line-height: 1;
  color: #000000;
  position: relative;
}
.footer .footer__links > a:first-child {
  padding-right: 1rem;
  margin-right: 1rem;
}
.footer .footer__links > a:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #000000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer .copy {
  color: #000000;
  font-size: 2.2rem;
  line-height: 1;
}

section.mv {
  background-color: #29b3fa;
  padding-top: 5.8rem;
  padding-bottom: 14.1rem;
  position: relative;
  z-index: 0;
  opacity: hidden;
}
section.mv::before, section.mv::after {
  content: "";
  width: 14.5rem;
  height: 16.5rem;
  background-image: url("../img/icon-bay-maro-easy.png");
  background-size: 100%;
  position: absolute;
  z-index: -10;
}
section.mv::before {
  top: 78rem;
  left: -1rem;
}
section.mv::after {
  top: 33rem;
  left: 61rem;
}
section.mv .mv-head {
  width: 68rem;
  margin-left: 3.5rem;
}
section.mv .--img-1 {
  width: 50.1rem;
  margin-top: -5.6rem;
  margin-left: 13.8rem;
}
section.mv .--img-2 {
  width: 68rem;
  margin-top: 5.1rem;
  margin-left: 3.6rem;
}
section.mv .mv-title {
  width: 71.2rem;
  margin-top: 2.4rem;
  margin-left: 2.3rem;
}
section.mv .mv-name {
  margin-top: 4.2rem;
  margin-left: 3.8rem;
}
section.mv .name {
  font-weight: 900;
  display: block;
  font-feature-settings: normal;
}
section.mv .name .price {
  font-size: 3.2rem;
}
section.mv .name .tax {
  font-weight: 400;
}
section.mv .--name-1 {
  font-size: 3.2rem;
}
section.mv .--name-2 {
  font-size: 2.4rem;
  margin-top: 2rem;
}
section.mv .mv-btn {
  margin-top: 7.5rem;
}

.problems {
  height: 68rem;
  padding-top: 8rem;
  background-image: url("../img/problems-bg.jpg");
  background-size: cover;
}
.problems .problems-head {
  width: 62.8rem;
  margin: 0 auto;
}
.problems .problems-list {
  margin-top: 4rem;
  margin-left: 4.4rem;
}
.problems .problems-item {
  height: 6rem;
  display: flex;
  align-items: center;
  padding-left: 10rem;
  position: relative;
}
.problems .problems-item::before {
  content: "";
  width: 6.5rem;
  height: 6rem;
  background-image: url("../img/icon-check.png");
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.problems .problems-item + .problems-item {
  margin-top: 3.5rem;
}
.problems .problems-item img {
  width: auto;
  height: 3.1rem;
}

.points {
  padding-bottom: 6.7rem;
}
.points .point {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.points .point .point-img {
  width: 100%;
}
.points .point .point-head {
  position: relative;
}
.points .point .point-head span {
  display: block;
}
.points .point .point-head .tag {
  width: 19.8rem;
  position: absolute;
}
.points .point .point-text {
  color: #29b3fa;
  font-size: 2.8rem;
  line-height: 2;
  font-weight: 900;
  text-align: center;
  font-feature-settings: normal;
  margin-top: 4.2rem;
}
.points .point .point-desc {
  height: 21.4rem;
  margin-top: 4.6rem;
}
.points .point .point-desc img {
  width: auto;
  height: 100%;
}
.points .point.--01 {
  padding-top: 10.7rem;
}
.points .point.--01 .point-head {
  margin-top: -6.5rem;
}
.points .point.--01 .point-head .tag {
  top: -8rem;
  left: -3rem;
}
.points .point.--01 .point-head .head {
  width: 50.5rem;
}
.points .point.--02 {
  padding-top: 14rem;
}
.points .point.--02 .point-head {
  margin-top: 2.2rem;
}
.points .point.--02 .point-head .tag {
  top: -7.9rem;
  left: -1.2rem;
}
.points .point.--02 .point-head .head {
  width: 46.3rem;
}
.points .point.--03 {
  padding-top: 14.2rem;
}
.points .point.--03 .point-head {
  margin-top: 6.1rem;
}
.points .point.--03 .point-head .tag {
  top: -7.7rem;
  left: -5.8rem;
}
.points .point.--03 .point-head .head {
  width: 54.7rem;
}
.points .note {
  color: #29b3fa;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  text-align: center;
  margin-top: 5.2rem;
}

.product {
  background-color: #29b3fa;
  padding-top: 14.1rem;
  padding-bottom: 16rem;
  position: relative;
  z-index: 0;
}
.product::before, .product::after {
  content: "";
  width: 14.5rem;
  height: 16.5rem;
  background-image: url("../img/icon-bay-maro-easy.png");
  background-size: 100%;
  position: absolute;
  z-index: -10;
}
.product::before {
  top: 30rem;
  left: -1rem;
}
.product::after {
  top: 57rem;
  left: 61rem;
}
.product .product-head {
  width: 68rem;
  margin-left: 3.5rem;
}
.product .product-img {
  width: 31.2rem;
  margin-top: -20.4rem;
  margin-left: 13.2rem;
}
.product .product-name {
  margin-top: 1.4rem;
  margin-left: 3.8rem;
}
.product .product-name .name {
  font-weight: 900;
  font-feature-settings: normal;
  display: block;
}
.product .product-name .--name-1 {
  font-size: 3.2rem;
}
.product .product-name .--name-2 {
  font-size: 4rem;
  margin-top: 1.6rem;
}
.product .product-name .--name-3 {
  font-size: 2.8rem;
  margin-top: 3.2rem;
}
.product .product-name .--name-3 .price {
  font-size: 3.6rem;
}
.product .product-name .--name-3 .tax {
  font-weight: 400;
}
.product .product-btn {
  margin-top: 6.3rem;
}
.product .lineup {
  margin-top: 16.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}
.product .lineup::before, .product .lineup::after {
  content: "";
  width: 14.5rem;
  height: 16.5rem;
  background-image: url("../img/icon-bay-maro-easy.png");
  background-size: 100%;
  position: absolute;
  z-index: -10;
}
.product .lineup::before {
  top: 22.3rem;
  left: 0rem;
}
.product .lineup::after {
  top: 46rem;
  left: 62rem;
}
.product .lineup-head {
  width: 29.3rem;
}
.product .lineup-wrap {
  margin-top: 6rem;
  display: flex;
}
.product .lineup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .lineup-item .lineup-name {
  color: #fff;
  margin-top: 2.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .lineup-item .lineup-name span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  padding-bottom: 1rem;
  display: inline-block;
  position: relative;
}
.product .lineup-item .lineup-name span::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.product .lineup-item .lineup-name span + span {
  margin-top: 2rem;
}
.product .lineup-item.--01 {
  margin-top: 10.1rem;
}
.product .lineup-item.--01 .lineup-img {
  width: 32.1rem;
}
.product .lineup-item.--02 .lineup-img {
  width: 32.8rem;
}
.product .lineup-item.--03 {
  margin-left: 6.8rem;
}
.product .lineup-item.--03 .lineup-img {
  width: 32.8rem;
}
.product .lineup-btn {
  margin-top: 7.8rem;
}
