@charset "UTF-8";

html,
body {
  color: #666;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

img {
  max-width: 100%;
}
sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
.a-font-en {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

section > .inner {
  max-width: 960px;
  margin: 0 auto;
}
section > .inner-wide {
  max-width: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  animation: fadeIn 0.5s forwards; /* 0.5秒かけてフェードイン */
}
.fade-out {
  animation: fadeOut 0.5s forwards; /* 0.5秒かけてフェードアウト */
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes glow-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glow-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

/* PC*/
.pc {
  display: block;
}
.sp {
  display: none;
}
.pc_none {
  display: none !important;
}
.sp_none {
  display: inline-block !important;
}
.tr {
  text-align: right;
}
.h3 {
  text-align: center;
}


.l-main{
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.l-inner{
  position: relative;
  width: 100%;
  max-width: 1020px;
  height: inherit;
  padding: 0 40px;
  margin-inline: auto;
}

.l-inner-narrow{
  max-width: 900px;
}

.p-fv{
  position: relative;
}


.p-fv__img{
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  
}
.p-fv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fv__wrap{
  position: relative;
}

.p-fv__bg{
  width: calc(100% + 227px);
  height: auto;
  aspect-ratio: 2187 / 543;
  background: #BBC7DC;
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
  position: absolute;
 top: 50px;
  left: 50%;
  translate: -50% -50%;
  z-index: 0;
}

@media screen and (max-width: 1500px) {
  .p-fv__bg{
    top: 50%;
  }
}


.p-fv__container{
  position: relative;
  z-index: 1;
  padding-top: 0px;
}

.p-fv__title{
  text-align: center;
  color: #fff;
}


.p-fv__title-sub{
  font-size:  18px;
 }
 

.p-fv__title-main{
  font-size: 50px;
  line-height: 1.2;
  margin-top: 24px;
}


.p-fv__text{
  margin-top: 40px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.p-fv__nav{
  margin-top: 140px;
  width: 100%;
  padding-block: 9px;
}

.p-fv__navList{
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv__navItem{
  position: relative;
  max-width: 122px;
flex: 1;
height: 33px;
text-align: center;
border-right: 1px solid #707070;
&:last-child{
  border-right: none;
}
}

.p-fv__navLink{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
font-family: "itc-avant-garde-gothic-pro", sans-serif;
transition: opacity 0.3s ease-out;
font-size:  12px;
color: #666666;
position: relative;
line-height: 1;
z-index: 1;
}

.p-fv__navLink::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
height: 50px;
  width: 50px;
  aspect-ratio: 1 / 1;

  background: #DDE9FF;

  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.p-fv__navLink:hover::after {
  opacity: 1;
}

.p-cta{
padding-top: 80px;
}



.p-cta__wrap{
  border: 1px solid #E8E8E8;
  padding: 15px 33px;
  display: flex;
  align-items: center;
  gap: 48px;

}

.p-cta__img{
  width: 232px;
  height: auto;
}

.p-cta__img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-cta__body{
  flex: 1;
}

.p-cta__title{
  font-size: 20px;
  color: #707070;
}

.p-cta__title-sp{
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.p-cta__text{
  font-size: 14px;
  color: #666666;
  font-size: 12px;
  margin-top: 20px;
  font-weight: 500;
}

.p-cta__text2{
  font-size: 12px;
  color: #666666;
  margin-top: 20px;
}



.c-headline1__sub {
  font-size: 14px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  color: #333333;
}

.c-headline1__main {
  font-size: 20px;
  margin: 0;
  color: #333333;
  font-weight: 500;
}

.c-headline2__sub {
  font-size: 20px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 500;
  color: #333333;
}

.c-headline2__main {
  font-size: 13px;
  margin: 0;
  color: #333333;
}

.p-campaign{
  padding-top: 123px;
  position: relative;
}

.p-campaign__bg{
  position: absolute;
 
z-index: 0;
  width: 345px;
  height: auto;
  aspect-ratio: 1;
  z-index: 0;
}

.p-campaign__bg.--1{
  top: -10px;
  right: 0;
  translate: 50%;
}

.p-campaign__bg.--2{
 bottom: 0;
 left: 0;
 translate: -50% 50%;
}

.p-campaign__bg img{
  width: 100%;
  height: auto;
  object-fit: cover;
}


.p-campaign__title{
  font-size: 35px;
  color: #666666;
  text-align: center;
  margin: 0;
}
.p-campaign__wrap{
 display: grid;
 grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.p-campaign__img{
  width: 100%;
  height: auto;
}
.p-campaign__img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-campaign__text{
  font-size: 8px;
  color: #666666;
  margin-top: -12px;
  text-align: center;
}

.p-recommend{
  padding-block: 109px 158px;
}

.p-recommend__text{
  font-size: 8px;
  color: #707070;
  text-align: center;
}

.c-item__wrap{
}

.c-item{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap:35px;
}

.c-item__title{
  font-size: 30px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: #666666;
  margin: 0;

}

.c-item__img{
  width:  calc(calc(337 / 820) * 100%);
  height: auto;
  position: relative;
}

.c-item__img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-item__body{
  flex: 1;
}

.c-item__head{

}

.c-item__head-sub{
  font-size: 15px;
}


.c-item__head-title{
  font-size: 36px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: #666666;
  white-space: nowrap;
}

.c-item__head-title span{
  font-size:  26px;
}

.c-item__head-title-text{
  font-size: 20px;
  color: #666666;
}

.c-item__head-text{
    font-size: 16px;
  color: #333333;
}

.c-item__price{
  font-size: 16px;
  color: #666666;
}

.c-item__text{
  font-size: 13px;
  color: #333333;
}

.c-item__text span.small{
  font-size: 10px;
  vertical-align: super;
}

.c-item__item-text-text{
  font-size: 14px;
  color: #666666;
}


.c-item__text-small{
  display: block;
  font-size: 6px;
  color: #666666;
  margin-top: 20px;
}


.c-item__item-text-text span.small{
  font-size: 10px;
  vertical-align: super;
}

.c-item__link{
  display: inline-block;
  font-size:  17px;
  border: 1px solid #707070;
  border-radius: 100px;
  text-align: center;
  padding: 12px 15px;
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
  max-width: 230px;
  width: 100%;
}


.c-item__link:hover{
  background: #BCC6DC;
  border: 1px solid #BCC6DC;
  color: #fff;
}


.c-item__swiper-container,
.c-item__swiper,
.c-item__swiper-wrapper,
.c-item__swiper-slide {
  position: relative;
}
.c-item__swiper-container {
  position: relative;
 

}
.c-item__swiper {

}
.c-item__swiper-wrapper {

}
.c-item__swiper-slide {
  position: relative;
  z-index: 1;

}


.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% + 12px);

}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  opacity: 1;
  width: 14px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #EAEAEA;
  margin-inline: calc(16px / 2);
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #BCC6DC;
}


.c-review{
margin-top: 55px;
}

.c-review__title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.c-review__title span.bar{
  flex: 1;
  height: 1px;
  background: #707070;
}

.c-review__title span{
  font-size: 18px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: #666666;
}

.c-review__wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  border-bottom: 1px solid #707070;
  padding: 8px 10px 17px 8px;
}

.c-review__content{
  display: flex;
  align-items: center;
  column-gap: 10px;
  max-width: 370px;
}

.c-review__icon{
  width: 47px;
  height: auto;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.c-review__icon img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

.c-review__text{
  font-size: 11px;
  color: #666666;
}


.p-recommend__head-text{
  margin-top: 30px;
}

.p-recommend__price{
  margin-top: 15px;
}

.p-recommend__item-text{
  margin-top: 30px;
}

.p-recommend__item-link{
  margin-top: 45px;
}

.p-trial{
  position: relative;
  background: #F2F5F8;
  margin-top: 100px;
  padding-block: 115px 330px;
}

.p-trial__label{
  position: absolute;
  top: 57px;
  left: 50%;
  translate: -50% -50%;
  width: 375px;
  height: 290px;

}

.p-trial__label img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.c-title{
  font-size:  35px;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  color: #666666;
  text-align: center;
  margin: 0;
  font-weight: 300;
}

.p-trial__text{
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-top: 10px;
}

.p-trial__content{
  position: relative;
  z-index: 2;
}

.p-trial__item{
  display: flex;
  align-items: center;
  column-gap: 46px;
}

.p-trial__item-img{
  width: calc(calc(402 / 820) * 100%);
  height: auto;
  flex-shrink: 0;
}

.p-trial__item-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-trial__item-body{
  flex: 1;
    }

.p-trial__item-title{
  font-size:  16px;
  color: #666666;
  font-weight: 500;

}

.p-trial__item-price{
  font-size:  14px;
  color: #666666;
  margin-top: 10px;
}

.p-trial__item-price span{
  font-size:  10px;
}


.p-trial__item-text{
  font-size:  10px;
  color: #666666;
  margin-top: 20px;
}


.p-trial__step{
  margin-top: 32px;

}

.p-trial__step-title{
  font-size:  14px;
  color: #fff;
background: #BCC6DC;
display: block;
text-align: center;
padding-block: 12px 9px;
position: relative;
}

.p-trial__step-img{
  width: 100%;
  height: auto;
  margin-top: 35px;
}

.p-trial__step-img img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-trial__step-link{
 margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}


.p-product{
border-radius: 30%;
position: relative;
}

.p-product__bg{
  position: absolute;
  width: 2324px;
  height: 693px;
  border-radius: 50%;
  background: #FFFFFF;
  top: -191px;
  left: 50%;
  translate: -50%;
  z-index: 0;
}

.p-product__bg2{
  position: absolute;
  width: 2324px;
  height: 693px;
  border-radius: 50%;
  background: #fff;
  bottom: -191px;
  left: 50%;
  translate: -50%;
  z-index: 0;
}

.p-product__label{
  position: absolute;
  top: 0;
  left: 0;
  translate: -50% -50%;
  width: 121px;
  height: auto;
  aspect-ratio: 1;
  background: #EFF4FF;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: #666666;
  z-index: 10;
}

.p-product__container{
  display: flex;
  flex-direction: column;
  row-gap: 130px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}


.p-product__head-text{

}

.p-product__price{
  margin-top: 20px;

}

.p-product__item-text{
margin-top: 40px;
}

.p-product__item-link{
margin-top: 25px;
}


.p-foot{
  padding-block: 320px 107px;
  background:#F3F5F8 ;
}

.p-foot__wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.p-foot__btn{
  background: #BCC6DC;
  width: 100%;
  text-align: center;
  padding: 33px 10px 30px 10px;
  color: #fff;
  font-size: 24px;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

.p-foot__btn:hover{
  background: #fff;
  color: #BCC6DC;
}

.p-foot__text{
  font-size: 8px;
  color: #666666;
  text-align: center;
  margin-top: 35px;
}


.p-foot__scroll{
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 200px;
  margin-inline: auto;
}

.p-foot__scroll:hover{
  opacity: 0.7;
  cursor: pointer;
}

.p-foot__scroll-img{
  width: 28px;
  height: auto;
}
.p-foot__scroll-img img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-foot__scroll span{
  font-size: 13px;
  color: #666666;
font-family: "itc-avant-garde-gothic-pro", sans-serif;
padding-inline: 10px;
}


.mt--45{
  margin-top: -45px;
}


.mt-10{
  margin-top: 10px;
}

.mt-15{
  margin-top: 15px;
}

.mt-20{
  margin-top: 20px;
}

.mt-25{
  margin-top: 25px;
}

.mt-30{
  margin-top: 30px;
}

.mt-35{
  margin-top: 35px;
}

.mt-45{
  margin-top: 45px;
}

.mt-50{
  margin-top: 50px;
}

.animated__fadeIn{
  translate: 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
}

.animated__fadeIn.js-show {
  translate: 0 0;
  opacity: 1;
}

.js-animation {
  position: relative;
  z-index: 10;
}



.block-cookie-consent{
  display: none;
}