* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

/*フォントスタイル*/
body {
  color: #4d4d4d;
  background-color: #f6f2e8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.mincho {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho",
    "ヒラギノ明朝", "MS P明朝", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  line-height: 1;
}

.Onishi {
  font-family: "ta-oonishi", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.font-mincho-50 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.5rem;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Hiragino Mincho",
    "ヒラギノ明朝", "MS P明朝", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(125deg, #b6d163, #8cb924);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.font-35 {
  font-size: 3.5rem;
}

.font-25 {
  font-size: 2.5rem;
}

.font-56 {
  font-size: 4.3rem;
}

/*カラー*/

.gradRed-right {
  background: linear-gradient(to right, #fc686f, #ff934c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.2rem;
}

.gradGreen-125deg {
  background: linear-gradient(125deg, #b6d163, #8cb924);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradRed-125deg {
  background: linear-gradient(-125deg, #fc686f, #ff934c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*個別CSS*/

.firstViewContainer {
  background-image: url("../images/first-woman.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}

.firstView {
  padding: 2.8rem 2rem;
  letter-spacing: -0.0025rem;
}

.font-12 {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.firstView__subtext {
  margin-left: -0.08rem;
}

.firstView__catchCopy {
  filter: drop-shadow(0 0 0.3rem rgba(255, 255, 255, 0.4));
  @media screen and (min-width: 700px) {
    .text-10 {
      font-size: 6.5rem;
    }
    .font-35 {
      font-size: 4.5rem;
    }
    .font-25 {
      font-size: 3.5rem;
    }
    .font-56 {
      font-size: 5.5rem;
    }
  }
}

.text-10 {
  font-size: 5rem;
  margin-left: -0.76rem;
  letter-spacing: -0.2rem;
}

.fontSeconds {
  color: #8cb924;
  margin-left: 0.5rem;
}

.font-Onishi-15 {
  font-size: 1.5rem;
  margin-top: 0.7rem;
}

.font-Onishi-12 {
  font-size: 1.2rem;
}

.point3-appeal {
  width: 50%;
  height: auto;
  margin-top: 0.7rem;
  @media screen and (min-width: 500px) {
    width: 35%;
    margin-left: 0.5rem;
  }
}

/*サイズを半分にして表示したい*/
.package {
  width: 85%;
  height: auto;
  margin: auto;
  display: block;
  margin-top: -9.8rem;
  filter: drop-shadow(-1px 1px 3px #707070cc);
  position: relative;
  z-index: 9999;
}

.CTA01 {
  background: linear-gradient(to bottom, #b6d163, #8cb924);
  padding: 0 0.7rem 0.7rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -0.8rem;
  position: relative;
}

.font-mincho-20 {
  font-size: 2rem;
}

.CTA01__trial {
  color: white;
  text-shadow: 0 0 3px #8cb924;
  margin: 1.2rem 0;
  @media screen and (min-width: 700px){
    font-size: 2.5rem;
  }
}

.CTA01 img {
  width: 100%;
  height: auto;
}

.CTA01__button {
  text-decoration: none;
  color: white;
  width: 86%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 0.15rem solid #e34239;
  border-radius: 0.25rem;
  background-image: linear-gradient(
    to top,
    #f36969,
    #d14545 52%,
    #dd6767 55%,
    #feafaf
  );
  text-shadow: 0px 0px 3px #d1454566;
  box-shadow: 0px 1px 3px #4d4d4d66;
  position: absolute;
  bottom: 5%;
  overflow: hidden;
  &::after{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-30deg);
    animation: shine 4s infinite;
  }
}

@keyframes shine {
  0%{
    left:-100%;
  }
  50%{
    left:200%;
  }
  100%{
    left:200%;
  }
}

.CTA01__button:hover {
  border: 0.15rem solid #f05e31;
  background-image: linear-gradient(
    to top,
    #fe7156,
    #e96a39 52%,
    #ed805e 55%,
    #fca692
  );
  text-shadow: 0px 0px 3px #e96a3966;
}

.worriesContainer {
  position: relative;
}

.worriesContainer img {
  width: 100%;
  display: block;
}

.worriesContainer__text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 2.8rem 2rem;
  color: white;
  width: 100%;
  @media screen and (min-width: 600px) {
    padding: 5rem 2rem;
  }
}

.worriesContainer__text span {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  @media screen and (min-width: 660px) {
    font-size: 3.5rem;
  }
}

.worriesContainer__text-ttl {
  font-size: 2rem;
  filter: drop-shadow(0 1px 3px #707070cc);
  line-height: 3rem;
  @media screen and (min-width: 660px) {
    font-size: 2.5rem;
    line-height: 4rem;
  }
}

.worriesContainer__text-ttl span {
  color: #4d4d4d;
}

.worriesContainer__text ul {
  padding: 0.2rem 0 1.8rem 0;
  @media screen and (min-width: 700px) {
    font-size: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
}

.worriesContainer__text ul li {
  list-style: none;
  position: relative;
  padding: 0.8rem 0 0.8rem 2.5rem;

  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 2rem;
    height: 1.75rem;
    background-image: url("../images/checkBox.png");
    background-repeat: no-repeat;
    background-size: contain;
    /* background-position: center;  必要に応じて調整 */
  }
}

.worriesContainer__text-sub {
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 5px #2a2a2a);
  line-height: 3rem;
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  @media screen and (min-width: 500px) {
    margin-top: 1.5rem;
  }
  @media screen and (min-width: 685px) {
    font-size: 1.8rem;
  }
  @media screen and (min-width: 720px) {
    font-size: 2rem;
  }
}

.worriesContainer__text-sub span {
  transform: rotate(5deg);
  display: inline-block;
  padding: 1rem 0.5rem;
  background: linear-gradient(to bottom, #d8a0fe, #7683d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.speechBublle {
  width: 50%;
  position: absolute;
  bottom: 16.7rem; /* 元の margin-bottom: 13.3rem を参考に調整 */
  right: 2rem; /* 元の margin-right: 2rem を参考に調整 */
  z-index: 10;
}

.speechBublle img {
  width: 100%;
}

.speechBublle__text {
  position: absolute;
  font-size: 1rem;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-27%, -50%);
  width: 85%;
  line-height: 1.7;
  @media screen and (min-width: 620px) {
    width: 65%;
    font-size: 1.1rem;
  }
}

.proposal {
  position: relative;
  margin-top: -10rem;
}

.proposal__sub {
  margin-top: 6rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
  width: 75%;
}

path {
  fill: none;
}

textPath {
  letter-spacing: -0.02rem;
}

.proposal__catchCopy {
  text-align: center;
  margin-top: -2rem;
}

.proposal__explanation {
  position: relative;
  overflow: hidden;
  > img {
    width: 100%;
    display: block;
    margin-top: 5rem;
  }
  .proposal__explanation-text {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 1.5rem;
    left: 0;
    z-index: 10;
    padding: 0 4rem;
    img {
      width: 40%;
    }
  }
  .bar {
    height: 2rem;
    background-color: #8cb924;
    display: flex;
    align-items: center;
    justify-content: center;
    .bar__text {
      color: white;
    }
  }
}

.myTime {
  padding: 6rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.25rem;
  background-color: white;
  .myTime__main {
    background: linear-gradient(to bottom, #4d4d4d, #84b67c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .myTime__mirror {
    transform: scaleY(-0.8);
    background: linear-gradient(to bottom, #00000000, #84b67c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 50%;
    margin-top: -0.3rem;
  }
}

.point3Container {
  background-color: white;
  padding: 2rem;

  .point3Container__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    .point3Container__ttl {
      background-color: #f8f5ed;
      border-radius: 50% 50% 0 0 / 8rem 8rem 0 0;
      width: 75%;
      text-align: center;
      z-index: 2;
      padding-top: 1rem;
      svg text {
        letter-spacing: 0.02rem;
        textPath {
          letter-spacing: 0.02em;
        }
      }
      p {
        font-size: 2.5rem;
        margin-top: -2rem;
        &::first-letter {
          font-size: 5rem;
        }
        span {
          font-size: 2rem;
        }
      }
    }
    .point3Container__body {
      background-color: #f8f5ed;
      margin-top: -1.5rem;
      padding: 2rem 2rem 1rem 2rem;
      position: relative;
      z-index: 1;

      .point__header {
        padding: 0.7rem 0;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;

        .point__header-left {
          width: 30%;
          display: flex;
          flex-direction: column;
          align-items: center;
          position: relative;
          .deco-vege {
            width: 60%;
            height: auto;
            max-width: 80px;
            margin-bottom: 1rem;
            filter: drop-shadow(-1px 1px 3px #7070704d);
          }

          .point-label {
            color: #8bc34a;
            font-size: 1.5rem;
            line-height: 1;
            margin-bottom: -0.6rem;

            span {
              font-size: 5rem;
              display: inline-block;
              transform: translateY(0.1rem);
            }
          }
        }

        .point__header-right {
          width: 80%;

          .main-photo {
            width: 100%;
            height: auto;
            display: block;
          }
        }
      }

      .point-title {
        color: #84b67c; /* テキストの色 */
        font-size: 1.5rem;
        line-height: 2rem;
        span {
          font-size: 2rem;
        }
      }
      .point-desc {
        line-height: 1.5;
        margin-top: 0.3rem;
        margin-bottom: 2rem;
      }
      .point2 {
        .deco-vege {
          transform: scale(1.2);
          transform-origin: center bottom;
        }
        .point3 {
          .deco-vege {
            transform: scale(1.5);
            transform-origin: center bottom;
          }
        }
      }
    }
  }
}

.usersVoice__container {
  padding: 2.8rem 2rem;
  position: relative;
  .usersVoice__container-body {
    background-color: white;
    text-align: center;
    padding: 2rem 0;
    height: 55rem;
    p {
      margin-bottom: 0.5rem;
    }
    .orange-bubble {
      position: absolute;
      font-size: 1.5rem;
      color: white;
      background: linear-gradient(120deg, #ff934ccc, #fc686fcc);
      padding: 0.8rem 1.5rem 0.8rem 0.5rem;
      margin-top: 2rem;
      right: 0;
      z-index: 10;
      img {
        position: absolute;
        transform: scale(0.5);
        left: -2rem;
        top: -2rem;
        @media screen and (min-width: 500px) {
          left: -1.5rem;
          top: -1.5rem;
        }
      }
      .profile {
        font-size: 0.7rem;
        color: #4d4d4d;
        position: absolute;
        right: 2rem;
        bottom: -1rem;
        font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
          sans-serif;
        font-weight: 300;
      }
    }
    img {
      transform: scale(0.5);
      transform-origin: left top;
      position: absolute;
      left: 0;
      top: 14.5rem;
      z-index: 5;
      @media screen and (min-width: 500px) {
        transform: scale(0.6);
      }
      @media screen and (min-width: 670px) {
        transform: scale(0.7);
      }
      @media screen and (min-width: 768px) {
        transform: scale(0.8);
      }
    }
    .voice-detail {
      position: absolute;
      background-color: #f6f2e8cc;
      padding: 1rem 2rem 1rem 1.5rem;
      margin-top: 8rem;
      right: 0;
      z-index: 10;
      width: 24rem;
      text-align: left;
    }
    .aoi-voice {
      .orange-bubble {
        margin-top: 25rem;
        left: 0;
        right: auto;
        padding: 0.8rem 0.5rem 0.8rem 1.5rem;
        @media screen and (min-width: 540px) {
          margin-top: 27rem;
        }

        img {
          left: auto;
          top: -3rem;
          right: -4rem;
          transform: scale(-0.5, 0.5);
          transform-origin: center;
          @media screen and (min-width: 500px) {
            right: -2.5rem;
            top: -2.5rem;
          }
        }
        .profile {
          right: auto;
          left: 2rem;
          bottom: -1rem;
        }
      }
      img {
        right: 0;
        transform-origin: right top;
        left: auto;
        top: 38rem;
      }
      .voice-detail {
        right: auto;
        left: 0;
        margin-top: 30.5rem;
        padding: 1rem 1.5rem 1rem 2rem;
        @media screen and (min-width: 540px) {
          margin-top: 32rem;
        }
      }
    }
  }
}

.stepContainer {
  position: relative;
  img {
    width: 100%;
    display: block;
    @media screen and (min-width: 550px) {
      max-height: 48.5rem;
    }
    @media screen and (max-width: 500px) {
      max-height: 50rem;
    }
  }
  .stepContainer__text {
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.8rem 2rem 2.8rem 2rem;
    .stepContainer__text-ttl {
      h2 {
        margin-top: -3.5rem;
        filter: drop-shadow(0 0px 5px #fff);
        margin-bottom: 2rem;
        @media screen and (min-width: 500px) {
          margin-top: -3rem;
          margin-bottom: 2rem;
        }

        span {
          font-size: 5rem;
        }
      }
    }
    .stepContainer__step {
      background-color: #f6f2e8cc;
      padding: 2rem 0.75rem 2rem 0.75rem;
      width: 35rem;
      height: 9rem;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 5;
      .stepContainer__step-number {
        position: relative;
        width: 5.3rem;
        height: 6rem;
        img {
          width: 100%;
          transform: translateY(-1px);
        }
        p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 4.1rem;
        }
      }
      .stepContainer__step-explanation {
        margin-left: 1rem;
        .ttl {
          font-size: 2rem;
          margin-bottom: 0.5rem;
        }
      }
      .stepContainer__step-photo01 {
        display: flex;
        align-items: center;
        position: absolute;
        right: 0.75rem;
        top: -1rem;

        .water {
          height: 5.8rem;
          width: 3.7rem;
          object-fit: contain;
          margin: 0.5rem;
          filter: drop-shadow(-1px 1px 3px #a4a4a4b3);
        }
        p {
          color: #8cb924;
        }
        .stick {
          height: 8.8rem;
          object-fit: contain;
          filter: drop-shadow(-1px 1px 3px #a4a4a4b3);
        }
      }
      .stepContainer__step-photo02 {
        display: flex;
        align-items: center;
        position: absolute;
        right: 1rem;
        .shaker {
          width: 9rem;
          object-fit: contain;
          filter: drop-shadow(-1px 1px 3px #a4a4a4b3);
          position: absolute;
          right: 0.75rem;
          z-index: 10;
        }
        p {
          color: #8cb924;
        }
        .shakerCopy {
          height: 8em;
          object-fit: contain;
          margin-bottom: 2rem;
        }
      }
      .stepContainer__step-photo03 {
        display: flex;
        align-items: center;
        position: absolute;
        right: 4rem;
        img {
          width: 6.7rem;
          filter: drop-shadow(-1px 1px 3px #a4a4a4b3);
        }
      }
    }
    .next {
      margin-top: -0.75rem;
    }
    .triangle {
      width: 9rem;
      height: 2.5rem;
      background: linear-gradient(to bottom, #b6d163, #8cb924);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      z-index: 10;
    }
  }
}

.QandA__container {
  position: relative;
  padding-bottom: 5rem;
  img {
    transform: scale(0.5);
    transform-origin: right top;
    position: absolute;
    right: 0;
  }
  .QandA__container-ttl {
    padding-top: 6rem;
    svg {
      transform: rotate(-15deg);
      overflow: visible;
    }
    h2 {
      font-size: 5rem;
      margin-top: -5rem;
      span {
        font-size: 2rem;
      }
    }
  }
  .QandA__container-body {
    .question {
      margin-top: 2.2rem;
      background-color: #b6d163b3;
      padding: 0.8rem 1.6rem 0.8rem 7rem;
      width: fit-content;
      position: relative;
      p {
        font-size: 1.5rem;
      }
      .question__ttl {
        font-size: 3.75rem;
        line-height: 3.75rem;
        position: absolute;
        left: 2rem;
        top: -1rem;
      }
    }
    .anser {
      margin: -1rem 0 0 auto;
      background-color: #b6d16380;
      padding: 1.5rem 2rem 1.5rem 7rem;
      width: 80%;
      position: relative;
      p {
        span {
          color: #e34239;
        }
      }
      .anser__ttl {
        font-size: 3.75rem;
        line-height: 3.75rem;
        position: absolute;
        left: 2rem;
      }
    }
  }
}

.selfCharge {
  position: relative;
  z-index: 10;
  .selfCharge__back {
    display: block;
    max-height: 38rem;
    object-fit: cover;

    @media (min-width: 500px) and (max-width: 550px) {
      height: 40rem;
      object-fit: cover;
    }
  }
  .selfCharge__container {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 1.8rem;
    text-align: center;
    width: 100%;
    img {
      display: block;
      width: 100%;
    }
    .selfCharge__container-subttl {
      font-size: 1.2rem;
      img {
        width: 8.25rem;
        margin: -2rem auto 0 auto;
      }
    }
    .selfCharge__container-ttl {
      p {
        color: #8cb924;
        font-size: 2rem;
        line-height: 2.8rem;
        span {
          font-size: 3.2rem;
        }
      }
    }
    .selfCharge__container-womantop {
      display: flex;
      gap: 4.5rem;
      align-items: flex-end;
      justify-content: center;
      margin-top: -3rem;
      img {
        width: 11.7rem;
      }
      .vegetableHeart {
        width: 8rem;
      }
    }
    .selfCharge__container-womanbottom {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -2rem;
      img {
        width: 16.5rem;
      }
    }
    .triangle__red {
      width: 9rem;
      height: 2.5rem;
      background: linear-gradient(to bottom, #ff934c, #fc686f);
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      margin: 0.5rem auto 0 auto;
    }
  }
}

.cta__last {
  padding: 2.5rem 2rem 2.8rem 2rem;
  z-index: 5;
  .CTA01__button {
    height: 9%;
    bottom: 11%;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 115%;
    body {
      background-color: #f6f2e8;
      .lp-wrapper {
        max-width: 750px;
        margin: 0 auto;
        box-shadow: 0 0 3rem rgba(0, 0, 0, 0.15);
      }
    }
  }
}

@media screen and (min-width: 400px) {
  html {
    font-size: 65%;
  }
}

@media screen and (min-width: 450px) {
  html {
    font-size: 75%;
  }
}

@media screen and (min-width: 500px) {
  html {
    font-size: 80%;
  }
}

@media screen and (min-width: 550px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 90%;
  }
}
