@charset "utf-8";

/* *{
  outline: solid 1px red;
} */

/* * * 全体設定 * * */
:root{
  --color-bg: #f6f6f6;
  --color-yellow: #ffe953;
  --color-white: #fff;
  --color-black: #000;

  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;

  --anime-speed: 1s;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--font-weight-medium);

  width: 100%;
  overflow-x: hidden;

  background-image: url(../img/bg-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
}

main{ 
  height: 100svh;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

img{
  width: 100%;
}

a{
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s;
}

a:hover{
  opacity: 0.5;
}


.l-container{
  max-width: 750px;
  margin: 0 auto;
}


.pc{
  display: block;
}

.sp{
  display: none !important;
}

@media screen and (max-width: 750px) {
  body{
    width: 100vw;
  }

  main{
    height: auto;
    width: 100vw;
    overflow-x: hidden;
  }

  .pc{
    display: none !important;
  }

  .sp{
    display: block !important;
  }
}
/* * * 全体設定 /E * * */



/* * * 離脱防止ポップアップ * * */
.p-wait-pop{
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;

  display: none;
}

.p-wait-pop-contents{
  max-width: 400px;
  padding: 0 25px;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-wait-pop__close-btn{
  font-size: 32px;
  color: var(--color-white);
  position: absolute;
  left: calc(100% - 50px);
  bottom: 100%;

  cursor: pointer;
  transition: opacity .3s;
}

.p-wait-pop__close-btn:hover{
  opacity: 0.5;
}

.p-wait-pop__link:hover{
  opacity: 1 !important;
}
/* * * 離脱防止ポップアップ /E * * */



/* * * メインコンテンツ（PC用） * * */
.l-body-info__logo{
  width: 6.1vw;
  display: block;
  
  position: fixed;
  left: 3.1%;
  top: 5%;
  transition: opacity .5s;
}

.l-body-info__banner{
  width: 20vw;
  display: block;
  
  position: fixed;
  right: 7%;
  top: 5%;
}

.l-body-info__name{
  width: 24%;
  display: block;

  position: fixed;
  left: 3.6%;
  top: 52.5%;

  transition: width 1s, opacity 1s;
}

.l-body-nav{  
  position: fixed;
  right: 14%;
  bottom: 25.5%;

  transition: right var(--anime-speed), opacity 1s;
}

.l-body-nav-link{
  display: flex;
  justify-content: flex-start;
  align-items: center;

  margin-bottom: 2.2vw;
}

.l-body-nav-link img{
  object-fit: contain;
  height: 13px;
}

.l-body-nav-link__arrow{
  width: auto;
  margin-right: 1vw;
}

.l-body-nav-link__text{
  width: auto;
}

.l-body-info__logo,
.l-body-info__name,
.l-body-nav{
  opacity: 1;
}

@media screen and (max-width: 1650px) {
  .l-body-info__banner{
    right: 0%;
  }

  .l-body-nav{
    right: 2%;
  }

  .l-body-info__name{
    width: 14%;
  }
}

@media screen and (max-width: 1200px) {
  .l-body-info__logo,
  .l-body-info__name,
  .l-body-nav{
    opacity: 0;
    pointer-events: none;
  }

  .l-body-info__banner{
    max-width: 750px;
    width: 100%;
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.7);

    right: initial;
    left: 50%;
    top: initial;
    bottom: 0%;
    z-index: 998;
    transform: translateX(-50%);

    display: none;
  }

  .l-body-info__banner a{
    width:100%;
    height:100%;
    display:block;
  }
}

@media screen and (max-width: 750px) {
  .l-body-info__banner{
    left: 0;
    transform: translate(0, 0);
  }
}
/* * * メインコンテンツ（PC用）/E * * */



/* * * ファーストビュー * * */
header{
  background-color: var(--color-bg);
  position: relative;
}

.p-fv{
  background-image: url(../img/fv-bg-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;

  padding-bottom: 4vw;
  position: relative;
  
  opacity: 0;
  transition: opacity .5s ease;
}

.p-fv.active{
  opacity: 1;
}


.p-fv-title{
  position: relative;
}

.p-fv-title__title{
  display: block;
  width: 76vw;
  margin: 0 auto;  
  padding-top: 1.3vw;

  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);

  transition: clip-path .5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
}

.p-fv-title__title.active{
  clip-path: inset(0 0% 0 0);
  -webkit-clip-path: inset(0 0% 0 0);
}

.p-fv-title__badge{
  display: block;
  width: 10.3%;
  position: absolute;
  right: 5.8%;
  bottom: -62%;

  opacity: 0;
  transition: opacity .5s ease;
}

.p-fv-title__badge.active{
  opacity: 1;
}

.p-fv-products{
  position: relative;
}

.p-fv-products-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  opacity: 0;
  transition: opacity .5s ease;
}

.p-fv-products-grid.active{
  opacity: 1;
}

.p-fv-products__image{
  width: 100%;
  position: relative;
}

.p-fv-products__image:nth-child(odd){
  animation: fluffy 4s ease-in-out infinite alternate-reverse;
}

.p-fv-products__image:nth-child(even){
  animation: fluffy-rev 4s ease-in-out infinite alternate-reverse;
}

.p-fv-products__image--1{
  width: 102%;
  
}

.p-fv-products__image--2{
  width: 122%;
  left: -27%;
  top: 7%;
}

.p-fv-products-image__donki-text{
  opacity: 0;

  transition: opacity .5s;
}

.p-fv-products-image__donki-text.active{
  opacity: 1;
}

.p-fv-products__image--3{
  width: 130%;
  left: -14%;
  top: -10%;
}

.p-fv-products-image__donki-text{
  width: 43%;
  position: absolute;
  right: -19%;
  bottom: 4%;
}

.p-fv-products__image--4{
  width: 102%;
  left: 25.5%;
  top: -5%;
}

.p-fv-products__image--5{
  width: 80%;
  left: 16%;
  top: 19%;  
}

/* 20250421 調整 */
body.iphone .p-fv-products__image--5{
  top: 8vw;
}

.p-fv-products__100-text{
  width: 20vw;
  position: absolute;
  left: 11.8%;
  bottom: 10%;

  opacity: 0;
  transition: opacity .5s;
}

.p-fv-products__100-text.active{
  opacity: 1;
}

.p-fv-catch-text{
  width: 100%;

  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path .5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
}

.p-fv-catch-text.active{
  clip-path: inset(0 0% 0 0);
  -webkit-clip-path: inset(0 0% 0 0);
}

.p-fv-catch-text__text{
  display: block;
  /* width: 76%; */
  width: auto; /* 20250606 修正 */
  margin: -1vw auto;
  padding-bottom: 0.5vw;
  position: relative;
  right: 0.6%;

  /* 20250606 既存コード削除 */
}

/* 20250606 既存コード削除 */

.p-fv-catch-text__warning{
  font-size: 16px;
  margin-left: 11.5vw;
  margin-top: 20px;
}

/* 20250606 追加 start */
.p-fv-catch-text__text.marker{
  background: linear-gradient(transparent 80%, var(--color-yellow) 20%);
  background-size: 0;  
  background-repeat: no-repeat;
  background-position: left bottom;

  transition: background-size .3s;
}

.p-fv-catch-text__text.marker.active{
  background-size: 100%;
}

.p-fv-catch-text-wrapper{
  width: 70%;
  height: auto; /* 20250820 修正 */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.p-fv-catch-text__text{
  width: auto;
  margin: 0 min(19.2px, 1vw); /* 20250820 修正 */
}

.p-fv-catch-text__text--2{ /* 20250820 修正 */
  padding-top: min(42.24px, 2.2px);
}

.p-fv-catch-text__dot{
  width: auto;
  margin: 0 min(15px, 2vw);
}
/* 20250606 追加 end */

@keyframes fluffy{
  0%{
    transform: translateY(-2%);
  }
  100%{
    transform: translateY(2%);
  }
}

@keyframes fluffy-rev{
  0%{
    transform: translateY(2%);
  }
  100%{
    transform: translateY(-2%);
  }
}

@media screen and (max-width: 750px) {
  .p-fv{
    background-image: url(../img/fv-bg-sp.png);
    background-size: 100%;
    overflow-x: hidden;

    padding-bottom: max(30px, 4vw);
  }

  .p-fv-title__title {
    width: 90.5vw;
    padding-top: 5.3vw;
    position: relative;
  } 

  .p-fv-title__badge{
    width: 26%;
    right: 3.5%;
    bottom: initial;
    top: 4vw;
  }

  .p-fv-products-grid{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .p-fv-products__100-text{    
    width: 51vw;
    position: absolute;
    left: 5%;
    top: 1.7%;
    bottom: initial;
    z-index: 1;
  }

  .p-fv-products__image--1{
    width: 144%;
    left: 0;
    top: 22.5%;
    z-index: 0;
  }

  .p-fv-products__image--2 {
    width: 132%;
    left: -12%;
    top: 24%;
    z-index: 2;
  }

  .p-fv-products-image__donki-text{
    width: 75%;
    position: absolute;
    right: -52%;
    bottom: -2%;
  }

  .p-fv-products__image--3 {
    width: 117.5%;
    left: -14%;
    top: -4%;
    z-index: 0;
  }

  .p-fv-products__image--4 {
    width: 149%;
    left: -47.5%;
    top: 16.5%;
  }

  .p-fv-products__image--5 {
    width: 100%;
    left: 8%;
    top: 27%;
  }

  .p-fv-products__image--6{
    width: 104%;
    right: 10%;
    top: 20.5%;
  }

  /* 20250421 調整 */
  body.iphone .p-fv-products__image--1{
    top: 11vw !important;
  }

  body.iphone .p-fv-products__image--2{
    top: 15vw !important;
  }

  body.iphone .p-fv-products__image--3{
    top: -2vw !important;
  }

  body.iphone .p-fv-products__image--4{
    top: 10vw !important;
  }

  body.iphone .p-fv-products__image--5{
    top: 15vw !important;
  }

  body.iphone .p-fv-products__image--6{
    top: 13vw !important;
  }
  /* 20250421 調整 /E */

  .p-fv-catch-text{
    margin-top: max(-37.5px, -5vw);
    position: relative;
  }

  .p-fv-catch-text__text{ /* 20250820 修正 */
    margin: 0;
  }


  .p-fv-catch-text__text--1{
    object-fit: contain;
    display: block;
    margin: initial; /* 20250606 修正 */
    /* 20250820 修正 ▼ */
    width: 35%;
    margin-right: 3vw;
  }

  .p-fv-catch-text__text--1.maker{
    background: linear-gradient(transparent 80%, var(--color-yellow) 20%);
    background-size: 0;  
    background-repeat: no-repeat;
    background-position: left bottom;

    transition: background-size .5s;
  }

  .p-fv-catch-text__text--1.maker.active{
    background-size: 90%;
  }

  .p-fv-catch-text__text--2{
    width: 55%; /* 20250820 修正 */
    object-fit: contain;
    display: block;
    margin: 0; /* 20250820 修正 */
    
  }

  .p-fv-catch-text__text--3{
    width: auto; /* 20250606 修正 */
  }

  .p-fv-catch-text__warning{    
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    left: 8%;
    top: 47%;
    font-size: 2.5vw;
  }

  /* 20250606 修正 start */
  .p-fv-catch-text-wrapper{
    /* 20250820 修正 start */
    width: 100%;
    position: relative;
    left: -4vw;
    /* 20250820 修正 end */
  }

  .p-fv-catch-text__text.marker{ /* 既存コード修正（既存：mker スペルミス） */
    background: linear-gradient(transparent 70%, var(--color-yellow) 30%);
    background-size: 0;
    background-repeat: no-repeat;
    background-position: left bottom;

    transition: background-size .3s;
  }
  /* 20250606 修正 end */
}

/* 20250529 テキスト変更 start */
.retouch-p-fv-catch-text__text{
  display: block;
  width: 65%;
  margin: 0 auto; /* 20250825 修正 */
}

@media screen and (max-width: 750px) {
  .retouch-p-fv-catch-text__text{
    width: 90%;
    margin-bottom: min(10vw, 75px);
  }
}
/* 20250529 テキスト変更 end */
/* * * ファーストビュー /E * * */



/* * * トップ * * */
.p-top{
  background-color: #fff;
  padding-bottom: min(22.5px, 3vw);
  overflow-x: hidden;
  
  position: relative;
}

.p-top-bg__arrow{
  width: 40%;

  position: absolute;
  left: -9%;
  top: 0%;
}

.p-top-text-amie{
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);

  transition: clip-path .5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
}

.p-top-text-amie.active{
  clip-path: inset(0 0% 0 0);
  -webkit-clip-path: inset(0 0% 0 0);
}

.p-top__date{
  display: block;

  width: 58%;
  margin: 0 auto min(3.25px, 0.5vw); /* 20250606　既存コード修正 */
  padding-top: min(90px, 12vw);
  position: relative;
}

.p-top__start{
  display: block;
  width: 60%;
  margin: 0 auto min(7.5px, 1vw); /* 20250606　既存コード修正 */
}

.p-top__donki{
  display: block;
  width: 61%;
  margin: 0 auto min(30px, 4vw);
  position: relative;
  left: 1.2%;
}

.p-top-product{
  position: relative;

  opacity: 0;
  transform: translateY(10%);
  transition: opacity .5s, transform .5s;
}

.p-top-product.active{
  opacity: 1;
  transform: translateY(0);
}

.p-top__product-text{
  display: block;
  width: 9.8%;
  position: absolute;
  right: 9%;
  top: 2%;
}

.p-top-info{
  margin-top: max(-86.25px, -11.5vw);
}

.p-top-info__logo{
  display: block;
  width: 20%;
  margin: 0 auto min(22.5px, 3vw);
}

.p-top-info__whey{
  display: block;
  width: 87%;
  margin: 0 auto min(15px, 2vw);
}

.p-top-info__price{
  display: block;
  width: 53%;
  margin: 0 auto min(36.75px, 4.9vw);
  
  position: relative;
  left: 2.8%;
}

/* 20250529 テキスト変更 start */
.retouch-p-top-text{
  display: block;
  width: 65%;
  margin: min(15vw, 112.5px) auto min(5vw, 37.5px);
  position: relative;
  z-index: 1;
}
/* 20250529 テキスト変更 end */
/* * * トップ /E * * */


/* * * YouTuber * * */
.p-youtuber{
  padding: min(3vw, 22.5px) 0 min(5vw, 37.5px);
  background-color: var(--color-white);
}

.p-youtuber-container{
  padding: 0 min(6.66vw, 50px);
}

/* 20250606 .p-youtuber__text 削除 */

.p-youtuber__video{
  width: 100%;
}

/* 20250606 追加 start */
.p-youtuber__text--1{
  padding-bottom: min(15px, 2vw);
}

.p-youtuber__text--2{
  padding-bottom: min(15px, 2vw);
  margin-bottom: min(30px, 4vw);

  /* ClipPath */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path .5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
  
  /* Marker */
  background: linear-gradient(transparent 70%, var(--color-yellow) 30%);
  background-size: 0;  
  background-repeat: no-repeat;
  background-position: left bottom;

  transition: all .3s;
}

.p-youtuber__text--2.active{
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.p-youtuber__text--2.marker{
  background-size: 100%;
}
/* 20250606 追加 end */
/* * * YouTuber /E * * */



/* * * ゴール * * */
/* 20250606 追加 & 修正 */
.p-goal{
  background-image: url('../img/goal-bg-v20250602.jpg');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-color: #FFF;

  padding: min(45px, 6vw)0 min(5vw, 37.5px) ;
}

.p-goal img{
  display: block;
}

.p-goal__label{
  width: min(270px, 36vw);
  margin: 0 auto 0;
}

.p-goal__title{
  width: min(587px, 78.26vw);
  margin: 0 auto 0;

  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);

  transition: clip-path .5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
}

.p-goal__title.active{
  left: 0;

  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.p-goal__photo{
  width: min(720px, 96vw);
  margin: max(-15px, -2vw) auto 0;

  animation: fluffy-rev 4s ease-in-out infinite alternate-reverse;
}

.p-goal__point{
  width: min(606px, 80.8vw);
  margin: max(-45px, -6vw) auto min(30px, 3vw);

  position: relative;
  z-index: 1;
}

.p-goal__text{
  width: min(402px, 53.6vw);
  margin: 0 auto min(60px, 8vw);
}
/* * * ゴール /E * * */



/* * * 特徴 * * */
.p-features{
  background-color: var(--color-white);
  margin-top: max(-15.75px, -2.1vw);
  padding-bottom: min(30px, 4vw);

  position: relative;
  overflow: hidden;
}

.p-features__guide{
  width: 92%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;

  transform: translateX(-50%);
}

.p-features-item{
  position: relative;
}

.p-features-item::before,
.p-features-item::after{
  content: "";
  position: absolute;
  display: block;
  background-color: var(--color-black);
  transition: all .5s linear;
}

.p-features-item--1{
  padding-bottom: min(86.25px, 11.5vw);
  margin-left: min(30px, 4vw);
}

.p-features-item--1::before{
  width: 2px;
  height: 0%;
  left: 0;
  top: 0;
}

.p-features-item--1.active::before{
  height: 100%;
}

.p-features-item--1::after{
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
}

.p-features-item--1.active::after{
  width: calc(100% - min(30px, 4vw));
  transition-delay: .5s;
}

.p-features-item--2{
  padding-bottom: min(75px, 10vw);
  margin-right: min(30px, 4vw);
}

.p-features-item--2::before{
  width: 2px;
  height: 0;
  right: 0;
  top: 0;
}

.p-features-item--2.active::before{
  height: 100%;
}

.p-features-item--2::after{
  width: 0;
  height: 2px;
  right: 0;
  bottom: 0;
}

.p-features-item--2.active::after{
  width: calc(100% - min(30px, 4vw));
  transition-delay: .5s;
}

.p-features-item--3{
  padding-bottom: min(67.925px, 9.5vw);
  margin-left: min(30px, 4vw);
}

.p-features-item--3::before{
  width: 2px;
  height: 0;
  left: 0;
  top: 0;
  z-index: 1;
}

.p-features-item--3.active::before{
  height: calc(100% + min(142.5px, 19vw));
}

.p-features-item__num{
  display: block;

  transition: clip-path.5s ease-out;
  -webkit-transition: -webkit-clip-path .5s ease-out;
}

.p-features-item__num.active{
  clip-path: inset(0 0% 0 0);
  -webkit-clip-path: inset(0 0% 0 0);
}

.p-features-item-1__num{
  width: 31.5%;
  margin-bottom: min(26.25px, 3.5vw);

  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
}

.p-features-item-2__num{
  width: 31.5%;
  margin-bottom: min(26.25px, 3.5vw);
  margin-left: auto;

  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
}

.p-features-item-3__num{
  width: 31.5%;
  margin-bottom: min(26.25px, 3.5vw);

  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
}

.p-features-item__text{
  position: relative;
  z-index: 1; 

  opacity: 0;
}

.p-features-item__text.active{
  transform: translateX(0);
  opacity: 1;
  transition: transform var(--anime-speed), opacity var(--anime-speed);
}

.p-features-item-1__text{
  width: 47.5%;
  margin-left: min(30px, 4vw);

  transform: translateX(-10%);
}

.p-features-item-2__text{
  display: block;
  width: 50%;
  margin-left: auto;

  position: relative;
  right: 4%;
  transform: translateX(10%);
}

.p-features-item-3__text{
  width: 91.7%;
  margin-left: min(30px, 4vw);

  transform: translateX(-10%);
}

.p-features-item__image{
  position: absolute;
  display: block;

  opacity: 0;
  transition: transform .5s, opacity .5s;
}

.p-features-item__image.active{
  transform: translate(0);
  opacity: 1;
}

.p-features-item-1__image{
  width: 55%;
  right: 0%;
  top: 8%;

  transform: translateX(10%);
}

.p-features-item-2__image{
  width: 46%;
  left: 0%;
  top: 0%;

  transform: translateX(-10%);
}

.p-features-item-3__image{
  width: 75.6%;
  left: -4%;
  top: 29%;

  transform: translateX(-10%);
}
/* * * 特徴 /E * * */



/* * * Point * * */
.p-point{
  background-image: url(../img/point-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-color: var(--color-white);

  /* margin-top: min(112.5px, -15vw); */
  padding-top: min(150px, 20vw);
  padding-bottom: min(93.75px, 12.5vw);
  position: relative;
  z-index: 1;
}

.p-point__title{
  display: block;
  width: 31%;

  position: absolute;
  left: 50%;
  top: 1.5%;
  transform: translateX(-50%);
}

.p-point-slides{
  width: 92%;
  margin: 0 auto;
  position: relative;
}

.swiper-pagination{
  position: absolute;
  bottom: -7% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.swiper-pagination-bullet{
  background: #e3d6c2 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 10px !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active{
  background: #b1894e !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 10px !important;
}
/* * * Point /E * * */



/* * * AWARD * * */
.p-award{
  position: relative;
}

.p-award__image{
  width: 100%;
}

.p-award__text{
  display: block;
  width: 92%;

  position: absolute;
  left: 49.5%;
  top: 19.5%;
  transform: translateX(-50%);

  opacity: 0;
  transition: opacity var(--anime-speed);
}

.p-award__text.active{
  opacity: 1;
}
/* * * AWARD /E * * */


/* 20250815 レビュー追加 start */
/* * * レビュー * * */
.p-review{
  background-color: #000;
  padding: min(45px, 6vw) 0;
}

.p-review-swiper-wrapper{
  overflow-x: hidden;
}

.swiper-review .swiper-wrapper {
  transition-timing-function: linear;
}

.p-review__image{
  width: 97%;
  margin: 0 auto;
}
/* * * レビュー /E * * */
/* 20250815 レビュー追加 end */


/* * * LINE特典情報 * * */
/* 20250606 追加 start */
.p-line-info{
  background-color: #f4f5f5;
  padding: min(30px, 4vw) 0;
  overflow-x: hidden;
}

.p-line-info img{
  display: block;
}

.p-line-info__title,
.p-line-info__point-1,
.p-line-info__point-2        
{
  width: min(692px, 92.27vw);
  position: relative;
  transition: all .5s ease;
}

.p-line-info__title{
  margin: 0 auto min(30px, 4vw);
}

.p-line-info__point-1{
  margin: 0 auto min(30px, 4vw);
  left: -100%;
}

.p-line-info__point-1.active{
  left: 0;
}

.p-line-info__point-2{
  margin: 0 auto;
  right: -100%;
}

.p-line-info__point-2.active{
  right: 0;
}
/* 20250606 追加 end */
/* * * LINE特典情報 /E * * */



/* * * LINE追加フロー * * */
.p-line-flow{
  background-color: #f4f5f5;
}

.p-line-flow-btn{
  display: block;
  width: 85%;
  margin: 0 auto;
  padding-bottom: min(5vw, 37.5px);

  /* 20250606 コート追加 */
  cursor: pointer;
  animation: scalerAnime 0.5s ease 0s infinite alternate;
}

/* 20250606 追加 start */
.p-line-flow__image{
  padding: 0 min(30px, 4vw);
  margin: 0 auto min(60px, 8vw);
}
/* 20250606 追加 end */
/* * * LINE追加フロー /E * * */



/* * * Flavor * * */
.p-flavor{
  background-image: url(../img/flavor-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;

  padding-top: min(91.5px, 12.2vw);

  overflow-x: hidden;
}

.p-flavor__title{
  display: block;
  width: 55%;
  margin: 0 auto min(67.5px, 9vw);
  position: relative;
  left: 0.5%;
}


.p-flavor-item{
  position: relative;
}

.p-flavor-item img{
  display: block;
}

.p-flavor__prodcut{
  position: absolute;
  opacity: 0;
  
}

.p-flavor__prodcut.active{
  opacity: 1;

  transition: opacity var(--anime-speed);
}

.p-flavor__image--fruits{
  margin-left: auto;
  margin-bottom: min(105px, 14vw);

  width: 86%;
}

.p-flavor__prodcut--fruits{
  width: 55%;
  left: 0;
  top: 27%;
}

.p-flavor__image--cafe{
  width: 86%;
  margin-bottom: min(120px ,16vw);
}

.p-flavor__prodcut--cafe{
  width: 63%;
  right: 2%;
  top: 33%;
}

.p-flavor__image--berry{
  margin-bottom: min(103.5px ,13.8vw);
  margin-left: auto;

  width: 86%;  
}

.p-flavor__prodcut--berry{
  width: 48%;
  left: 0%;
  top: -10%;
}

.p-flavor__image--choco{
  width: 86%;
  margin-bottom: min(120px, 16vw);
}

.p-flavor__prodcut--choco{
  width: 55%;
  right: 2%;
  top: 33%;
}

.p-flavor__image--milk{
  display: block;
  width: 86%;
  margin-left: auto;
  margin-bottom: min(70.5px, 9.4vw);  
}

.p-flavor__prodcut--milk{
  width: 53%;
  left: 1.5%;
  top: 25%;
}

.p-flavor__image--yogurt{
  width: 86%;
  position: relative;
}

.p-flavor__prodcut--yogurt{
  width: 46.5%;
  right: 1.5%;
  top: 30%;
}

.p-flavor-yogurt-bg{
  background: linear-gradient(transparent 76%, var(--color-white) 24%);
}


@media screen and (min-width: 751px) {
  .p-flavor{
    background-size: cover;
  }
}

/* 20250421 調整 */
@media screen and (max-width: 750px) {
  .p-flavor{
    background-image: none;
  }
  
  .p-flavor::before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-image: url(../img/flavor-bg.jpg);
    background-size: cover;
  }
}
/* 20250421 調整 /E */
/* * * Flavor /E * * */



/* * * 国内製造 * * */
.p-made{
  background-color: var(--color-white);
  padding: min(108.75px, 14.5vw) 0 min(144px, 19.2vw);
  /* padding: min(108.75px, 14.5vw) 0 min(165px, 22vw); */
}

.p-made__image{
  display: block;
  width: 96%;
  margin: 0 auto;

  position: relative;
  left: 2%;
}
/* * * 国内製造 /E * * */



/* * * YouTube 20250327 追加 * * */
.p-movie {
  padding: min(8vw, 75px) 30px min(187.5px, 25vw); /* 20250529 調整 */
  background-color: var(--color-white);
}

.p-movie__title {
  width: 31%;
  display: block;
  margin: 0 auto min(37.5px, 5vw);
}

.p-movie-contents {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-movie-contents__movie {
  width: 100%;
  height: 100%;
}
/* * * YouTube 20250327 追加　/E * * */



/* * * AREA * * */
.p-area{
  background-color: #f6f6f6;
  padding-bottom: min(135px, 18vw);
  scroll-margin-top: min(22.5px, 3vw);
}

.p-area__title{
  display: block;
  width: 69.4%;
  margin: 0 auto min(57.75px, 7.7vw);

  position: relative;
  transform: translateY(-22%);
}

.p-area-contents{
  width: 92%;
  margin: 0 auto min(37.5px, 5vw);
}

.p-area-item:not(:last-child){
  margin-bottom: min(15.75px ,2.1vw);
}

.p-area-header{
  background-color: var(--color-black);
  position: relative;
}

.p-area-header::after{
  content: "";
  display: block;
  height: 12px;
  width: 20px;
  background-image: url(../img/area-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  right: 3.5%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  
  transition: transform .3s;
}

.p-area-header.active::after{
  transform: translate(-50%, -50%) rotate(180deg);
} 

.p-area-header__text{
  font-size: clamp(18px, 3.73vw, 28px);
  color: var(--color-white);

  padding: min(32.25px, 4.3vw) min(22.5px, 3vw);
}

.p-area-list{
  display: none;
}

.p-area-list a{
  background-color: var(--color-white);
  font-size: clamp(18px, 3.73vw, 28px);
  padding: min(15px, 2vw) min(24.75px, 3.3vw);

  display: block;
}

.p-area__warning{
  font-size: clamp(20px, 3.2vw, 24px);
  letter-spacing: 0.075em;

  display: block;
  width: 92%;
  margin: 0 auto;
}
/* * * AREA /E * * */



/* * * フッター * * */
.l-footer{
  background-image: url(../img/footer-bg.jpg);
  background-color: #f6f6f6;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;

  padding-bottom: min(120px, 16vw);
}

.l-footer-contents{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

@keyframes footer-fluffy{
  0%{
    transform: translateY(-4%);
  }
  100%{
    transform: translateY(4%);
  }
}

@keyframes fluffy-rev{
  0%{
    transform: translateY(4%);
  }
  100%{
    transform: translateY(-4%);
  }
}

.l-footer-item__image{
  position: relative;

  animation: footer-fluffy 4s ease-in-out infinite alternate-reverse;
}

.l-footer-item__image--1{
  width: 89.5%;
  top: -18%;
  
  grid-area: 1 / 1 / 2 / 2; 
}

.l-footer-item__image--2{
  left: 39%;
  top: -21%;
  z-index: 3;

  grid-area: 1 / 2 / 2 / 3;
}

.l-footer-item__image--3{
  left: 48%;
  top: -11%;

  grid-area: 1 / 3 / 2 / 4;
}

.l-footer-item__image--4 {
  width: 48%;
  right: -50%;
  top: 1%;

  grid-area: 1 / 4 / 2 / 5; 
}

.l-footer-item__image--title {
  top: -97%;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 100% 0 0);

  transition: clip-path 1s ease-out;
  -webkit-transition: -webkit-clip-path 1s ease-out;

  grid-area: 2 / 1 / 3 / 5; 
  
}

.l-footer-item__image--title.active {
  clip-path: inset(0 0 0% 0);
  -webkit-clip-path: inset(0 0 0 0);
}

.l-footer-item__image--6 { 
  width: 113%;
  top: -20%;  
  z-index: 3;

  grid-area: 3 / 1 / 4 / 2; 
}

.l-footer-item__image--7 { 
  width: 202%;
  top: -2%;
  left: -48%;
  z-index: 4;

  grid-area: 3 / 2 / 4 / 3; 
}

.l-footer-item__image--8 { 
  width: 89%;
  top: -26%;
  left: 3%;
  z-index: 0;

  grid-area: 3 / 3 / 4 / 5; 
}

.l-footer__text{
  display: block;
  width: 72%;
  margin: min(-48.75px, -6.5vw) auto min(22.5px, 3vw);
}

/* 20250331 アニメーション追加 */
@keyframes scalerAnime {
  0% {
    transform: scale(0.9, 0.9);
  }
  
  100% {
    transform: scale(1, 1);
  }
}

.l-footer__link-link{
  display: block;
  width: 92%;
  margin: min(5vw, 37.5px) auto 0; /* 20250529 調整 */
  cursor: pointer;

  animation: scalerAnime 0.5s ease 0s infinite alternate;
}
/* * * フッター /E * * */