@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  overflow-x: hidden;
  font-weight: 500;
  line-height: 1.45;
  font-size: 1.4rem;
  color: #333;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: block;
  }
}
/* —————————————————
  ヘッダー header
  —————————————————*/
.l-header {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  padding: 0 60px 0 80px;
  transition: 0.3s ease all;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header .l-header__logo {
  margin-top: 20px;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 9;
}
.l-header .l-header__logo:hover {
  opacity: 0.7;
}
.l-header .l-header__inner {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  transition: 0.5s;
  height: 100%;
}

.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  mix-blend-mode: multiply;
  z-index: 9;
}
.l-header__list li {
  margin-left: 20px;
}
.l-header__list li:first-child {
  margin-left: 0;
}
.l-header__list li.nav__contact {
  display: none;
}
.l-header__list li a {
  font-size: 1.4rem;
  position: relative;
  display: block;
  text-decoration: none;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: #026D33;
  transition: opacity 0.3s ease;
}
.l-header__list li a:hover {
  opacity: 0.7;
}
.l-header__list .nav__sp {
  display: none;
}

.c-hamburger {
  display: none;
}

.l-header.fixed {
  background-color: #fff;
  position: fixed;
  z-index: 999999;
}
.l-header.fixed .l-header__logo {
  margin-top: 0;
}
.l-header.fixed .l-header__logo svg path {
  fill: #026D33;
}

@media screen and (max-width: 1200px) {
  .l-header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 45px;
    padding: 0;
    background-color: #fff;
  }
  .l-header .l-header__inner {
    padding: 0 15px;
  }
  .l-header .l-header__logo {
    margin-top: 0;
  }
  .l-header .l-header__logo svg {
    width: 30px;
  }
  .l-header .l-header__logo svg path {
    fill: #026D33;
  }
  .l-header__nav {
    z-index: 99999;
    width: 100%;
    background: #026D33;
    padding: 80px 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: none;
    position: fixed;
    top: 45px;
    left: 0;
    height: 100vh;
  }
  .l-header__nav .l-header__list {
    display: block;
    padding-bottom: 0;
    mix-blend-mode: inherit;
  }
  .l-header__nav .l-header__list li {
    text-align: center;
    margin-left: 0;
  }
  .l-header__nav .l-header__list li:not(:last-child) {
    margin-bottom: 45px;
  }
  .l-header__nav .l-header__list li a {
    font-size: 1.8rem;
    line-height: 1.44;
    color: #fff;
    font-weight: bold;
  }
  .l-header__nav .l-header__list li.nav__contact {
    display: block;
  }
  .l-header__nav .l-header__list li.nav__contact a {
    width: 80%;
    max-width: 248px;
    margin: auto;
    height: 50px;
    color: #026D33;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background-color: #fff;
  }
  .l-header__nav .l-header__list .nav__pc {
    display: none;
  }
  .l-header__nav .l-header__list .nav__sp {
    display: inline-block;
  }
  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 15px;
    width: 45px;
    height: 45px;
    z-index: 999;
    display: block;
  }
  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    width: 25px;
    left: 15px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 18px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 24px;
    width: 14px;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(6px) rotate(-45deg);
        transform: translateY(6px) rotate(-45deg);
  }
  .c-hamburger.is-active span:nth-of-type(2) {
    width: 25px;
    -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg);
  }
  .p-float__btn {
    width: 100%;
    max-width: 100%;
    height: 70px;
    left: 50%;
    bottom: 0;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .p-float__btn a {
    width: 94%;
    max-width: 360px;
    height: 50px;
    border-bottom: 4px solid #C8B149;
    font-size: 1.4rem;
    transition: none;
  }
  .p-float__btn a:hover {
    opacity: 1;
  }
}
/* —————————————————
  フッター footer
  —————————————————*/
.l-footer {
  background-color: #F3F1F1;
  padding-top: 60px;
}
.l-footer .l-footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
.l-footer .l-footer__logo .c-copyLight {
  text-align: right;
  font-size: 1.6rem;
}

.l-footer__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding-bottom: 40px;
  border-bottom: 2px solid #fff;
}
.l-footer__list li {
  margin-left: 34px;
}
.l-footer__list li a {
  font-size: 1.6rem;
  position: relative;
  transition: opacity 0.3s ease;
}
.l-footer__list li a:hover {
  opacity: 0.7;
}
.l-footer__list li a .fa-chevron-right {
  color: #026D33;
  margin-right: 2px;
}

.c-copyLight {
  padding: 25px 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #9A9A9A;
}

@media screen and (max-width: 768px) {
  .l-footer .l-footer__logo {
    text-align: center;
    max-width: 235px;
    margin: 0 auto 30px auto;
  }
  .l-footer__list li {
    margin-left: 20px;
  }
  .l-footer__list li a {
    font-size: 1.3rem;
  }
  .l-footer__list li a .fa-chevron-right {
    margin-right: 2px;
  }
  .c-copyLight {
    padding: 10px 0 80px 0;
    font-size: 1rem;
  }
}
/* ------- animation ------- */
.js-fadeIn {
  opacity: 0;
  transition: 1s ease;
}

.js-fadeIn.active {
  opacity: 1;
}

.c-fixed {
  position: sticky;
  top: 0;
}
.c-fixed .vibes {
  width: 442px;
}
.c-fixed.fixed-right {
  right: 0;
}

.js-bg {
  position: relative;
  display: inline-block;
}
.js-bg span {
  position: relative;
}

.js-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f7e800;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 0;
  transition: width 1s ease;
}

.js-bg.active::before {
  width: 100%;
}

/* ------- utility ------- */
sup,
sub {
  font-size: 1rem;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-note {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 992px) {
  sup,
  sub {
    font-size: 0.8rem;
  }
  .u-note {
    font-size: 1rem;
  }
}
/* ------- layout ------- */
.l-side__left {
  width: 29%;
  padding: 0 3rem;
}
.l-side__left .c-fixed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100vh;
}

.l-side__right {
  width: 29%;
  padding: 0 3rem;
}
.l-side__right .c-fixed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100vh;
}
.l-side__right .p-product__item {
  text-align: center;
  width: 100%;
  max-width: 240px;
  position: relative;
  top: -8%;
}
.l-side__right .p-product__item .ttl {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 2rem;
}
.l-side__right .p-product__item .buy__text {
  background-color: #3eabea;
  color: #f7e800;
  font-size: max(1.7rem, 16px);
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  max-width: 240px;
  border-radius: 60px;
  margin-top: 3rem;
  transition: 0.3s ease;
  cursor: pointer;
}
.l-side__right .p-product__item .btn__list {
  margin-left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: -2;
  position: absolute;
}
.l-side__right .p-product__item .btn__list li {
  margin-top: 1rem;
}
.l-side__right .p-product__item .btn__list li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 60px;
  border: 1px solid #3eabea;
  transition: 0.3s ease;
  cursor: pointer;
}
.l-side__right .p-product__item .btn__list li a:hover {
  opacity: 0.7;
}
.l-side__right .p-product__item .buy__area:hover .btn__list {
  opacity: 1;
  pointer-events: inherit;
  z-index: 1;
}

.l-container {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
}

.l-main__contents {
  width: 42%;
  overflow: hidden;
}

@media (max-width: 992px) {
  .l-side__left {
    display: none;
  }
  .l-side__right {
    display: none;
  }
  .l-main__contents {
    width: 100%;
  }
}
/* ------- mv ------- */
.p-mv {
  position: relative;
  z-index: 100;
  position: relative;
  min-height: 100rem;
  background: url("../img/mv_bg.jpg") no-repeat top center/cover;
  padding-bottom: 2rem;
}

.p-mv__img {
  display: none;
}

.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__container {
  width: 100%;
  height: 100%;
}

.p-mv__wrap {
  width: calc(100% - 18rem);
  max-width: 1080px;
  margin: auto;
  padding-top: 2.5rem;
}

.p-mv__item {
  width: 68%;
  height: auto;
}
.p-mv__item p {
  line-height: 1;
}

.p-mv__item.item1 .text1 {
  margin-left: -2rem;
  max-width: 28rem;
}
.p-mv__item.item1 .text2 {
  margin-top: -8rem;
  margin-left: 6.5rem;
  max-width: 64rem;
}
.p-mv__item.item2 {
  transition-delay: 0.2s;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.p-mv__item.item2 p {
  max-width: 18rem;
}
.p-mv__item.item3 {
  transition-delay: 0.4s;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 1rem 0 0 2rem;
}

@keyframes scaleAnime {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(0.9);
  }

  45% {
    transform: scale(1.05);
  }

  75% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.p-mv__item.item3 figure {
  width: 38%;
  max-width: 30rem;
  margin-right: 4rem;
}

.p-mv__item.item3.active figure{
  animation: scaleAnime 1.8s ease-in-out 1.2s 3;
}
.p-mv__item.item3 p {
  width: 62%;
  margin-top: -5rem;
  margin-left: -4rem;
  max-width: 50rem;
}

.p-mv__textBg {
  max-width: 58.6rem;
  color: #00adc3;
  background-color: #f7e800;
  border-radius: 40px;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin-top: 1rem;
  transition-delay: 0.5s;
}

.p-mv__bottom {
  transition-delay: 0.6s;
}
.p-mv__bottom img {
  max-width: 68rem;
}
.p-mv__bottom .note {
  font-size: 1rem;
  color: #fff;
}

.p-mv__sp {
  display: none;
}

@media (max-width: 992px) {
  .p-mv__wrap {
    width: calc(100% - 3rem);
  }
}
@media (max-width: 767px) {
  .p-mv {
    height: auto;
    min-height: auto;
    background: none;
  }
  .p-mv__img {
    height: auto;
    display: block;
  }
  .p-mv__container {
    position: absolute;
    top: 0;
    left: 0;
  }
  .p-mv__wrap {
    width: calc(100% - 4rem);
  }
  .p-mv__item {
    width: 100%;
    padding: 0 1rem;
  }
  .p-mv__item.item1 .text1 {
    margin-left: -0.6rem;
    max-width: 18rem;
  }
  .p-mv__item.item1 .text2 {
    margin-top: -4rem;
    margin-left: 0;
    max-width: 100%;
  }
  .p-mv__item.item2 {
    -ms-flex-pack: end;
        justify-content: flex-end;
    bottom: 5rem;
    right: 1rem;
    -ms-transform: translateY(53.8rem);
        transform: translateY(53.8rem);
    transition-delay: 0s;
  }
  .p-mv__item.item2 p {
    max-width: 10rem;
  }
  .p-mv__item.item3 {
    margin: 1rem 0 29rem 2rem;
    transition-delay: 0s;
  }
  .p-mv__item.item3 figure {
    /* display: none; */
    position: absolute;
    width: 41.8%;
    top: 45%;
    left: 3.5%;
  }
  .p-mv__item.item3 p {
    margin-top: 7.6rem;
    margin-left: -4rem;
  }
  .p-mv__textBg {
    font-size: 2.4rem;
    transition-delay: 0s;
  }
  .p-mv__bottom {
    transition-delay: 0s;
  }
  .p-mv__bottom img {
    width: 100%;
  }
  .p-mv__bottom .note {
    font-size: 0.75rem;
    letter-spacing: -0.02em;
  }
  .p-mv__sp {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: end;
        align-items: flex-end;
    padding: 2rem 1.5rem;
    margin-top: -8rem;
  }
  .p-mv__sp p {
    color: #3eabea;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 2;
    width: 70%;
  }
  .p-mv__sp figure {
    width: 28%;
  }
}
/* ------------ intro ------------ */
.p-intro__block.block1 {
  background: url("../img/intro_bg_1.png") no-repeat top center/100%;
  padding-top: 6rem;
  padding: 6rem 4rem 0;
}
.p-intro__block.block1 .ttl {
  margin-bottom: 2.4rem;
}
.p-intro__block.block1 .list {
  width: 98%;
  margin: 0 auto;
}
.p-intro__block.block1 .list li {
  font-size: 3.1rem;
  font-weight: 700;
  color: #3eabea;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.p-intro__block.block1 .list li:not(:last-child) {
  margin-bottom: 2rem;
}
.p-intro__block.block1 .list li::before {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 3.9rem;
  background: url("../img/icon_check.png") no-repeat top right/100%;
  margin-right: 1.6rem;
}
.p-intro__block.block1 .u-note {
  width: 92%;
  margin: 0 auto;
  font-weight: 700;
  margin-top: 2rem;
}
.p-intro__block.block1 .item__img {
  width: 100%;
  margin-left: auto;
  margin-right: -4rem;
}

.p-intro__block {
  overflow: hidden;
}
.p-intro__block.block2 {
  margin-top: -4rem;
  padding: 6rem 4rem 8rem;
  position: relative;
  z-index: 2;
}
.p-intro__block.block2 .ttl {
  max-width: 48rem;
  margin-right: auto;
  margin-left: auto;
}
.p-intro__block.block2 .img__wrap {
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 8rem);
  margin-left: -3rem;
  margin-top: -1rem;
}
.p-intro__block.block2 .img__wrap .item1 {
  margin-top: -1.6rem;
  margin-left: 4.5%;
  width: 28%;
}
.p-intro__block.block2 .img__wrap .item2 {
  transition-delay: 0.5s;
  width: 50%;
}
.p-intro__block.block2 .img__wrap .arrow {
  -ms-transform: translateY(7rem);
      transform: translateY(7rem);
  width: 22%;
}
.p-intro__block.block2 .item__text {
  position: absolute;
  top: 56%;
  left: 6.5rem;
}
.p-intro__block.block2 .lead {
  font-size: 3rem;
  font-size: clamp(1.4rem, 1.563vw, 3rem);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-intro__block.block2 .u-note {
  font-weight: 700;
  margin-top: 0;
}

.p-intro__block.block3 {
  margin-top: -12rem;
  background: url("../img/intro_bg_2.png") no-repeat top center/100% 100%;
  padding-top: 6rem;
  padding: 20rem 4rem 24rem;
  position: relative;
  z-index: 1;
}
.p-intro__block.block3 .block__item {
  margin-top: 2rem;
}
.p-intro__block.block3 .block__item .c-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.p-intro__block.block3 .block__item .c-heading .num {
  margin-right: 2rem;
  max-width: 13rem;
  width: 20%;
  max-width: 130px;
}
.p-intro__block.block3 .block__item .c-heading .ttl {
  font-weight: 700;
  font-size: 2.3rem;
  font-size: clamp(1.4rem, 1.25vw, 2.3rem);
  line-height: 1.6;
}
.p-intro__block.block3 .block__item .c-heading .ttl span {
  display: inline-block;
  position: relative;
}
.p-intro__block.block3 .block__item .c-heading .ttl span::before {
  content: "";
  width: 0;
  height: 40%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.6s ease;
}
.p-intro__block.block3 .block__item .c-heading .ttl .large {
  font-size: 4.8rem;
  font-size: clamp(1rem, 2.5vw, 4.8rem);
  line-height: 1;
  margin-top: 0.8rem;
}
.p-intro__block.block3 .block__item .c-heading .ttl.active span::before {
  width: 100%;
}
.p-intro__block.block3 .block__item .figWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.p-intro__block.block3 .block__item .figWrap .item1 {
  transition-delay: 0.3s;
}
.p-intro__block.block3 .block__item .figWrap .item2 {
  transition-delay: 0.3s;
}
.p-intro__block.block3 .block__item .figWrap .item3 {
  transition-delay: 0.6s;
}
.p-intro__block.block3 .block__item .figWrap img {
  display: block;
  min-width: 0;
}
.p-intro__block.block3 .block__item figure {
  margin-top: 3rem;
}
.p-intro__block.block3 .block__item .text__bg {
  margin-top: 4.4rem;
  position: relative;
  min-height: 14rem;
}
.p-intro__block.block3 .block__item .text__bg img {
  display: inline-block;
  position: relative;
  width: 94%;
  z-index: 1;
}
.p-intro__block.block3 .block__item .text__bg .bg {
  width: 100%;
  height: 14rem;
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-clip-path: inset(100% 0 -20% 0);
          clip-path: inset(100% 0 -20% 0);
  transition: 0.4s ease;
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 0;
  transition-delay: 0.6s;
}
.p-intro__block.block3 .block__item .text__bg .bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  max-width: 492px;
  height: 14rem;
  background: url("../img/intro_text_bg.png") no-repeat top left/100%;
  position: absolute;
  top: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-intro__block.block3 .block__item .text__bg .bg.active {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.p-intro__block.block3 .block__item .text__bg::before {
  width: 100%;
}
.p-intro__block.block3 .block__item.item2 {
  margin-top: 6rem;
}
.p-intro__block.block3 .block__item.item2 .c-heading {
  margin-bottom: 4rem;
}
.p-intro__block.block3 .block__item.item2 .c-heading .ttl {
  transition-delay: 0.2s;
}
.p-intro__block.block3 .block__item.item2 .item__img {
  text-align: center;
  position: relative;
}
.p-intro__block.block3 .block__item.item2 .item__img .arrow {
  position: absolute;
}
.p-intro__block.block3 .block__item.item2 .item__img.item1 .arrow {
  bottom: 4rem;
  left: 45%;
  max-width: 13rem;
}
.p-intro__block.block3 .block__item.item2 .item__img.item2 {
  margin-top: -4.5rem;
}
.p-intro__block.block3 .block__item.item2 .item__img.item2 .arrow {
  bottom: 0;
  left: 45%;
  max-width: 13rem;
}
.p-intro__block.block3 .block__item.item2 .item__img.item3 {
  margin-top: -4.5rem;
  position: relative;
}
.p-intro__block.block3 .block__item.item2 .item__img.item3 .bg {
  left: inherit;
  top: inherit;
  right: -2%;
  bottom: inherit;
  top: 52%;
  width: 64%;
  max-width: 492px;
  height: 100%;
  max-height: 140px;
  transition-delay: 0.2s;
}
.p-intro__block.block3 .block__item.item2 .item__img.item3 .bg::before {
  left: inherit;
  -ms-transform: translateX(0);
      transform: translateX(0);
  right: 0;
}

@media (max-width: 992px) {
  .p-intro {
    margin-bottom: 26rem;
  }
  .p-intro__block.block1 {
    padding: 4rem 4rem 0;
  }
  .p-intro__block.block1 .ttl {
    margin-bottom: 1rem;
  }
  .p-intro__block.block1 .list {
    width: 96%;
  }
  .p-intro__block.block1 .list li {
    font-size: 1.8rem;
  }
  .p-intro__block.block1 .list li::before {
    width: 2.3rem;
    height: 2rem;
  }
  .p-intro__block.block1 .item__img {
    width: 105%;
    margin-right: -4rem;
  }
  .p-intro__block.block2 {
    margin-top: -6rem;
    padding: 6rem 4rem;
  }
  .p-intro__block.block2 .ttl {
    margin: 0 auto;
    max-width: 32rem;
  }
  .p-intro__block.block2 .img__wrap img {
    width: 100%;
  }
  .p-intro__block.block2 .img__wrap .item1 {
    margin-top: 0;
    margin-left: 2rem;
  }
  .p-intro__block.block2 .item__text {
    top: 55%;
  }
  .p-intro__block.block2 .lead {
    font-size: 2rem;
  }
  .p-intro__block.block3 {
    padding: 14rem 3rem 16rem;
    background-size: 100% 100%;
  }
  .p-intro__block.block3 .block__item .c-heading {
    padding: 0;
  }
  .p-intro__block.block3 .block__item .c-heading .num {
    margin-right: 1rem;
    max-width: 8rem;
  }
  .p-intro__block.block3 .block__item .c-heading .ttl {
    font-size: 1.6rem;
    font-size: clamp(1.6rem, 3.22vw, 3.2rem);
    padding-top: 1rem;
  }
  .p-intro__block.block3 .block__item .c-heading .ttl .large {
    font-size: 3rem;
    font-size: clamp(3rem, 6.4vw, 6rem);
  }
  .p-intro__block.block3 .block__item .text__bg {
    text-align: center;
  }
  .p-intro__block.block3 .block__item .text__bg img {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  .p-intro__block.block3 .block__item .text__bg sub {
    position: absolute;
    top: 58%;
    right: -2rem;
    font-size: 0.8rem;
  }
  .p-intro__block.block3 .block__item .text__bg .bg {
    height: 110%;
  }
  .p-intro__block.block3 .block__item .text__bg .bg::before {
    height: 100%;
    width: 94%;
    max-width: 100%;
  }
  .p-intro__block.block3 .block__item.item2 {
    margin-top: 0;
  }
  .p-intro__block.block3 .block__item.item2 .c-heading {
    margin-bottom: 4rem;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item1 .arrow {
    max-width: 5rem;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item2 {
    margin-top: 0;
    width: 92%;
    margin: -2rem 0 0 auto;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item2 .arrow {
    max-width: 5rem;
    left: 40%;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item3 {
    margin-top: -1rem;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item3 .bg {
    top: 50%;
  }
  .p-intro__block.block3 .block__item.item2 .item__img.item3 .bg::before {
    right: 2%;
  }
}
/* ------------ component ------------ */
.p-component {
  background: url("../img/component_bg_1.png") no-repeat bottom left/100%;
  padding-bottom: 29rem;
}

.p-component__block .ttl {
  margin: 0 auto 2rem;
}
.p-component__block figure {
  width: 92%;
  margin: 0 auto;
}
.p-component__block .ttl2 {
  text-align: center;
  margin-top: 10rem;
}
.p-component__block .ttl2 span {
  color: #00adc3;
  font-size: 4.2rem;
  font-size: clamp(1.4rem, 2.188vw, 4.2rem);
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0.5rem 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  display: inline-block;
}
.p-component__block .ttl2 .js-bg {
  margin-bottom: 2rem;
}
.p-component__block .lead {
  text-align: center;
  font-size: 3rem;
  font-size: clamp(1.4rem, 1.563vw, 3rem);
  list-style: 1.6;
  font-weight: 700;
  margin-top: 3rem;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
.p-component__block .list {
  margin-top: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-component__block .list li {
  width: 33.3333333333%;
  max-width: 23.2rem;
}
.p-component__block .text__bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 1rem;
}
.p-component__block .text__bottom .u-note {
  font-size: 1.2rem;
  font-size: clamp(1rem, 0.625vw, 1.2rem);
}
.p-component__block.block1 .ttl {
  width: 81%;
}
.p-component__block.block2 {
  background: url("../img/component_bg_2.png") no-repeat top left/100% 100%;
  padding-top: 16.8rem;
  padding-bottom: 16rem;
}
.p-component__block.block2 .ttl {
  text-align: center;
}
.p-component__block.block2 .ttl span {
  background-color: #00adc3;
  color: #f7e800;
  font-size: 4.6rem;
  font-size: clamp(1.4rem, 2.396vw, 4.6rem);
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  font-weight: 700;
  padding: 0.8rem 1rem;
}
.p-component__block.block2 .list2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 8rem;
  gap: 5.8rem 2.6rem;
  padding: 0 2rem;
  max-width: 700px;
  margin: 8rem auto 0;
}
.p-component__block.block2 .list2 li {
  width: calc(33.3333333333% - 2.6rem);
  max-width: 20rem;
  text-align: center;
}
.p-component__block.block2 .list2 li h3 {
  font-size: clamp(1.4rem, 1.458vw, 2.8rem);
  font-weight: 700;
  margin-top: 1rem;
}
.p-component__block.block2 .list2 li h3 .wh {
  display: inline-block;
  white-space: nowrap;
  text-indent: -2rem;
}
.p-component__block.block2 .list2 li p {
  font-size: 2rem;
  font-size: clamp(1.4rem, 1.042vw, 2rem);
  font-weight: 700;
  margin-top: 0.6rem;
}
.p-component__block.block2 .u-note {
  padding-right: 5rem;
  margin-top: -2rem;
}

@media (max-width: 992px) {
  .p-component {
    background: url("../img/component_bg_1.png") no-repeat bottom left/100%;
    padding-bottom: 0;
    background-size: 100% 100%;
  }
  .p-component__block {
    padding: 0 2rem;
    -ms-transform: translateY(-24rem);
        transform: translateY(-24rem);
  }
  .p-component__block .ttl {
    margin-bottom: 2rem;
  }
  .p-component__block figure {
    width: 100%;
  }
  .p-component__block .ttl2 {
    text-align: center;
    margin-top: 4rem;
    max-width: 54rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-component__block .ttl2 span {
    color: #00adc3;
    font-size: 3rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    padding: 0.5rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    display: inline-block;
  }
  .p-component__block .ttl2 .js-bg {
    min-width: auto;
    margin-bottom: 1rem;
  }
  .p-component__block .lead {
    text-align: center;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
  }
  .p-component__block .list {
    margin-top: 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .p-component__block .list li {
    width: 33.3333333333%;
    max-width: 23.2rem;
  }
  .p-component__block .text__bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 1rem;
  }
  .p-component__block .text__bottom .u-note {
    font-size: 0.8rem;
  }
  .p-component__block.block2 {
    background: url("../img/component_bg_2.png") no-repeat top left/100%;
    padding-top: 8rem;
    padding-bottom: 12rem;
  }
  .p-component__block.block2 .ttl span {
    font-size: 3rem;
  }
  .p-component__block.block2 .list2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-top: 4rem;
    gap: 5rem 1rem;
    padding: 0 1.4rem;
  }
  .p-component__block.block2 .list2 li {
    width: calc(33.3333333333% - 1rem);
    max-width: 20rem;
  }
  .p-component__block.block2 .list2 li h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
  }
  .p-component__block.block2 .list2 li h3 .wh {
    display: inline-block;
    white-space: nowrap;
    text-indent: -2rem;
  }
  .p-component__block.block2 .list2 li p {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .p-component__block.block2 .u-note {
    padding-right: 2rem;
    margin-top: 0;
    font-size: 0.8rem;
  }
}
/* ------------ use ------------ */
.p-use {
  margin-top: -15rem;
  overflow: hidden;
  padding-bottom: 10rem;
}

.p-use__block .ttl {
  width: 80%;
  max-width: 528px;
  margin: 0 auto 4rem;
}
.p-use__block .fBox {
  display: -ms-flexbox;
  display: flex;
}
.p-use__block .fBox .item__img {
  width: 64%;
  margin-left: -4rem;
}
.p-use__block .fBox .item__text {
  width: 38%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-top: 4rem;
  margin-left: 3rem;
}
.p-use__block .fBox .item__text .num {
  width: 40%;
  max-width: 104px;
}
.p-use__block .fBox .item__text .desc {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3rem;
  font-size: clamp(1rem, 1.563vw, 3rem);
  font-weight: 700;
  margin-right: 1rem;
  letter-spacing: 0.1em;
}
.p-use__block .fBox.box2 {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  margin-top: -3rem;
}
.p-use__block .fBox.box2 .item__img {
  margin-left: 0;
  margin-right: -4rem;
  width: 70%;
}
.p-use__block .fBox.box2 .item__text {
  width: auto;
  margin-top: 8rem;
}
.p-use__block .fBox.box3 {
  margin-top: 4rem;
}
.p-use__block .fBox.box3 .item__img {
  width: 72%;
}
.p-use__block .fBox.box3 .item__text {
  width: auto;
  margin-top: 6rem;
  -ms-transform: translateX(-6rem);
      transform: translateX(-6rem);
}

.js-text-bg::after {
  width: 0;
  transition: width 1s ease;
}

.js-text-bg.active:after {
  width: 100%;
  transition-delay: 0.5s;
}

.js-deco.active::before {
  animation: deco 0.5s 2s 2;
}

@keyframes deco {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0px);
  }
  60% {
    transform: translateY(4px);
  }
  70% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
.p-use__text {
  text-align: center;
  margin-top: -3rem;
  position: relative;
}
.p-use__text .text span {
  position: relative;
  display: inline-block;
}
.p-use__text .text .bg1 {
  animation-duration: 0.5s;
  width: 70%;
  max-width: 478px;
}
.p-use__text .text .bg1::before {
  content: "";
  display: inline-block;
  width: 24%;
  max-width: 125px;
  height: 72px;
  position: absolute;
  top: -4rem;
  right: -6rem;
  background: url("../img/use_deco.png") no-repeat top left/100%;
}
.p-use__text .text .bg1::after {
  content: "";
  width: 80%;
  height: 66px;
  display: inline-block;
  background: url("../img/use_line_1.png") no-repeat top left/100%;
  position: absolute;
  bottom: -28%;
  left: -2%;
  z-index: -1;
}
.p-use__text .text .bg2 {
  animation-duration: 0.5s;
  margin-left: 38%;
  margin-top: -5rem;
  width: 45%;
  max-width: 367px;
}
.p-use__text .text .bg2::after {
  content: "";
  width: 100%;
  height: 68px;
  display: inline-block;
  background: url("../img/use_line_2.png") no-repeat top left/100%;
  position: absolute;
  bottom: -24%;
  left: -4%;
  z-index: -1;
}

@media (max-width: 992px) {
  .p-use {
    margin-top: -14rem;
    overflow: hidden;
    padding-bottom: 6rem;
  }
  .p-use__block .ttl {
    margin-bottom: 4rem;
    max-width: 34rem;
    margin: 0 auto 4rem;
  }
  .p-use__block .fBox {
    display: -ms-flexbox;
    display: flex;
  }
  .p-use__block .fBox .item__img {
    width: 68%;
    margin-left: -4rem;
  }
  .p-use__block .fBox .item__text {
    width: 30%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-pack: end;
        justify-content: flex-end;
    margin-top: 4rem;
    margin-left: 1rem;
  }
  .p-use__block .fBox .item__text .desc {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 1rem;
    letter-spacing: 0.1em;
  }
  .p-use__block .fBox .item__text .num {
    max-width: 6.8rem;
  }
  .p-use__block .fBox.box2 {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    margin-top: -3rem;
  }
  .p-use__block .fBox.box2 .item__img {
    margin-left: 0;
    margin-right: -4rem;
    width: 70%;
  }
  .p-use__block .fBox.box2 .item__text {
    width: auto;
    margin-top: 5rem;
  }
  .p-use__block .fBox.box3 {
    margin-top: 3rem;
  }
  .p-use__block .fBox.box3 .item__img {
    width: 74%;
  }
  .p-use__block .fBox.box3 .item__text {
    width: auto;
    margin-top: 4rem;
    -ms-transform: translateX(-4rem);
        transform: translateX(-4rem);
  }
  .p-use__text {
    text-align: center;
    margin-top: -3rem;
    position: relative;
  }
  .p-use__text .text {
    margin: 0 auto;
  }
  .p-use__text .text span {
    position: relative;
    display: inline-block;
  }
  .p-use__text .text .bg1::after {
    height: 68%;
  }
  .p-use__text .text .bg2 {
    margin-top: -20px;
  }
  .p-use__text .text .bg2::after {
    height: 60%;
    top: inherit;
    z-index: -1;
  }
}
/* ------------ voice ------------ */
.p-voice__block .item {
  margin-top: 4rem;
  max-width: 69.5rem;
  margin: 4rem auto 0;
}

@media (max-width: 992px) {
  .p-voice .ttl {
    max-width: 32rem;
    margin: 0 auto 2rem;
  }
  .p-voice__block {
    padding: 0 2.8rem;
  }
  .p-voice__block .item {
    margin-top: 4rem;
    max-width: 69.5rem;
    margin: 3rem auto 0;
  }
}
/* ------------ product bottom ------------ */
.p-product__bottom {
  background: url("../img/bottom_bg.png") no-repeat bottom left/100% 100%;
  padding-top: 1.563vw;
  padding-bottom: 1.563vw;
  margin-top: 4rem;
}
.p-product__bottom .fBox {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  padding-left: 2rem;
}
.p-product__bottom .fBox .item__img {
  width: 40%;
  margin-top: -4rem;
}
.p-product__bottom .fBox .item__text {
  color: #fff;
  width: 60%;
}
.p-product__bottom .fBox .item__text .lead {
  margin-bottom: 1rem;
}
.p-product__bottom .fBox .item__text .name {
  font-size: 3rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.563vw, 2.3rem);
}
.p-product__bottom .fBox .item__text .detail {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 1.25vw, 2.4rem);
}
.p-product__bottom .fBox .item__text .price {
  font-size: 3.6rem;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.875vw, 3.6rem);
}
.p-product__bottom .fBox .item__text .tax {
  font-size: 2rem;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.042vw, 3.6rem);
}
.p-product__bottom .buyBtn {
  margin: 2rem auto 0;
  width: 60%;
  max-width: 50rem;
  position: relative;
}
.p-product__bottom .buyBtn .text {
  transition: 0.3s ease;
  cursor: pointer;
}
.p-product__bottom .buyBtn .text:hover {
  opacity: 0.8;
}
.p-product__bottom .buyBtn .list {
  position: absolute;
  bottom: 108%;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  background-color: rgba(0, 173, 195, 0.6);
  padding: 3rem;
  border-radius: 5rem;
  width: 90%;
  max-width: 420px;
  transition: 0.5s ease;
  z-index: -1;
  opacity: 0;
}
.p-product__bottom .buyBtn .list li {
  text-align: center;
}
.p-product__bottom .buyBtn .list li:not(:last-child) {
  margin-bottom: 2rem;
}
.p-product__bottom .buyBtn:hover .list {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 992px) {
  .p-product__bottom {
    margin-top: 5rem;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .p-product__bottom .fBox {
    padding-left: 2rem;
  }
  .p-product__bottom .fBox .item__img {
    margin-top: -10rem;
  }
  .p-product__bottom .fBox .item__text .name {
    font-size: 2rem;
  }
  .p-product__bottom .fBox .item__text .detail {
    font-size: 1.6rem;
  }
  .p-product__bottom .fBox .item__text .price {
    font-size: 2.6rem;
  }
  .p-product__bottom .fBox .item__text .tax {
    font-size: 1.4rem;
  }
  .p-product__bottom .buyBtn .list {
    display: none;
    padding: 1.5rem 1.8rem;
    border-radius: 40px;
    width: 90%;
    max-width: 30rem;
    transition: none;
    opacity: 1;
    z-index: 0;
  }
  .p-product__bottom .buyBtn .list li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
/* ------- foot ------- */
.p-foot ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem 0;
}

.p-foot ul li {
  line-height: 1;
}

.p-foot ul li:first-child {
  border-right: 1px solid #333;
  margin-right: 2rem;
  padding-right: 2rem;
}

.p-foot ul li a {
  font-size: 1.8rem;
  color: #333333;
  font-weight: 700;
}

@media (max-width: 992px) {
  .p-foot {
    padding-bottom: 30%;
  }
}
/* ------- floating btn ------- */
.c-floating {
  display: none;
}

@media (max-width: 992px) {
  .c-floating {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999999;
    width: 100%;
  }
  .c-floating::before {
    content: "";
    display: block;
    width: 100%;
    height: 75%;
    position: absolute;
    bottom: 0;
    background-color: #54C2F0;
    z-index: -1;
  }
  .c-floating .wrap {
    width: 100%;
    max-width: 780px;
    padding: 1.5rem 1rem 0;
    position: relative;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .c-floating .float__text {
    width: 64%;
  }
  .c-floating .floating__btn {
    position: relative;
    width: 36%;
    cursor: pointer;
  }
  .c-floating .list {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    background-color: rgba(0, 173, 195, 0.6);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    width: 90%;
  }
  .c-floating .list li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .c-floating .wrap {
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }
  .c-floating .float__text {
    width: 64%;
  }
  .c-floating .floating__btn {
    width: 36%;
    bottom: 0;
    right: 0;
  }
}