*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
  color: currentColor;
}

.page-inner {
  width: min(540px, 100%);
  padding: 0 17px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .page-inner {
    width: min(1030px, 100%);
    padding: 0 25px;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

._blend_flex{
    display: flex;
    flex-direction: column;
    margin: auto;
}
@media screen and (min-width: 768px){
    ._blend_flex{
        display: flex;
        flex-direction: row;
    }
}

/*  余白
------------------------------- */
.lead_inner,
.features_inner,
.recipe_inner,
.product_inner{
  padding: 0 20px;
}
@media screen and (min-width: 768px){
  .features_inner,
  .product_inner{
    padding: 0 144px;
  }
}

/*  フォント
------------------------------- */
._ff-en{
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}
._fw-700{
  font-weight: 700;
}
._ff-head{
  font-family: "Noto Serif JP";
  text-align: left;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 1.2px;
  margin-top: 4px;
  text-align: center;
}
._ff-head._mid{
  font-size: 18px;
  letter-spacing: 0.9px;
  margin-top: 0;
  text-align: left;
  line-height: 1.6;
}
.blend_subttl{
  color: #AA8123;
  position: relative;
  padding-left: 17px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.9px;

  &::before{
    content: '';
    display: block;
    width: 13px;
    height: 12px;
    background-image: url('/img/blend/features/icon_goma.svg');
    background-size: contain;
    position: absolute;
    left: 0;
    top: 27%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 768px){
  ._ff-head{
    font-size: clamp(22px, calc(28 / 1440 * 100vw), 28px);
    letter-spacing: 1.4px;
    margin-top: 8px;
  }
  ._ff-head._mid{
    font-size: clamp(18px, calc(20 / 1440 * 100vw), 20px);
    line-height: 1.4;
    letter-spacing: 1px;
  }
  .blend_subttl{
    font-size: clamp(18px, calc(20 / 1440 * 100vw), 20px);
    padding-left: 26px;
    line-height: 1.4;
    letter-spacing: 1px;
    &::before{
      width: 18px;
      height: 15px;
      top: 23%;
    }
  }
}
.bottom-contact{
  background: url(/img/common/bg.jpg) left top repeat;
}
footer{
  background: rgba(71, 69, 68);
}

/*  共通パーツ
------------------------------- */
.blend_subttl{
    margin: auto;
    width: fit-content;
}


/*  mv_アニメーション
------------------------------- */
@keyframes mvItemFadeIn{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes mvItemWobbleLeft{
  0%{
    transform: translateX(var(--mv-start-x)) rotate(0deg);
  }
  10%{
    transform: translateX(calc(var(--mv-start-x) * 0.8)) rotate(10deg);
  }
  20%{
    transform: translateX(calc(var(--mv-start-x) * 0.62)) rotate(-10deg);
  }
  30%{
    transform: translateX(calc(var(--mv-start-x) * 0.46)) rotate(10deg);
  }
  40%{
    transform: translateX(calc(var(--mv-start-x) * 0.32)) rotate(-10deg);
  }
  50%{
    transform: translateX(calc(var(--mv-start-x) * 0.2)) rotate(10deg);
  }
  60%{
    transform: translateX(calc(var(--mv-start-x) * 0.11)) rotate(-10deg);
  }
  70%{
    transform: translateX(calc(var(--mv-start-x) * 0.05)) rotate(10deg);
  }
  80%{
    transform: translateX(0) rotate(-10deg);
  }
  90%{
    transform: translateX(0) rotate(10deg);
  }
  100%{
    transform: translateX(0) rotate(0deg);
  }
}

/*  features_アニメーション
------------------------------- */
@keyframes featuresItemWobbleLeft{
  0%, 100%{
    transform: rotate(-12deg);
  }
  10%, 30%, 50%, 70%, 90%{
    transform: rotate(-5deg);
  }
  20%, 40%, 60%, 80%{
    transform: rotate(-19deg);
  }
}
@keyframes featuresItemWobbleRight{
  0%, 100%{
    transform: rotate(12deg);
  }
  10%, 30%, 50%, 70%, 90%{
    transform: rotate(5deg);
  }
  20%, 40%, 60%, 80%{
    transform: rotate(19deg);
  }
}
@keyframes mvItemWobbleRight{
  0%{
    transform: translateX(var(--mv-start-x)) rotate(0deg);
  }
  10%{
    transform: translateX(calc(var(--mv-start-x) * 0.8)) rotate(-5deg);
  }
  20%{
    transform: translateX(calc(var(--mv-start-x) * 0.62)) rotate(5deg);
  }
  30%{
    transform: translateX(calc(var(--mv-start-x) * 0.46)) rotate(-5deg);
  }
  40%{
    transform: translateX(calc(var(--mv-start-x) * 0.32)) rotate(5deg);
  }
  50%{
    transform: translateX(calc(var(--mv-start-x) * 0.2)) rotate(-5deg);
  }
  60%{
    transform: translateX(calc(var(--mv-start-x) * 0.11)) rotate(5deg);
  }
  70%{
    transform: translateX(calc(var(--mv-start-x) * 0.05)) rotate(-5deg);
  }
  80%{
    transform: translateX(0) rotate(5deg);
  }
  90%{
    transform: translateX(0) rotate(-5deg);
  }
  100%{
    transform: translateX(0) rotate(0deg);
  }
}

/*  .blend_mv
------------------------------- */
.blend{
  max-width: 1700px;
  margin: auto;
  background-color: #F7F5F2;
  .blend_mv{
    padding: 120px 0 174px;
    background-image: url('/img/blend/bg_sp.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;

    &::before{
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(/img/blend/parts_line_sp.png);
      mix-blend-mode: multiply;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }
    .blend_inner{
        padding: 0 15px;
        position: relative;
        z-index: 5;
    }
    .mv_img{
        flex-direction: row;
        width: calc(280 / 375 * 100vw);
        gap: 12px;
        margin-top: 24px;
        padding: 0 9px;
  
        img{
            flex: 1 1 0;
            min-width: 0;
            max-width: none;
        }
    }
  }
  .mv_item-left-top{
    position: absolute;
    top: calc(-90 / 375 * 100vw);
    left: calc(-100 / 375 * 100vw);
    width: calc(240 / 375 * 100vw);
    height: calc(230 / 375 * 100vw)  ;
    background-image: url(/img/blend/mv_irigoma.png);
    background-repeat: no-repeat;
    background-size: cover;
    --mv-start-x: -100vw;
    animation: mvItemFadeIn 1.4s ease-out forwards,
               mvItemWobbleLeft 1.4s steps(1, jump-end) forwards;
  }
  .mv_item-left-bottom{
    position: absolute;
    bottom: calc(10 / 375 * 100vw);
    left: calc(-20 / 375 * 100vw);
    width: calc(150 / 375 * 100vw);
    height: calc(140 / 375 * 100vw);
    background-image: url(/img/blend/parts_sirogoma.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mv_item-right-top{
    position: absolute;
    top: calc(-47 / 375 * 100vw);
    right: calc(9 / 375 * 100vw);
    width: calc(140 / 375 * 100vw);
    height: calc(130 / 375 * 100vw);
    background-image: url(/img/blend/parts_kingoma.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .mv_item-right-bottom{
    position: absolute;
    bottom: calc(15 / 375 * 100vw);
    right: calc(-56 / 375 * 100vw);
    width: calc(250 / 375 * 100vw);
    height: calc(175 / 375 * 100vw);
    background-image: url(/img/blend/mv_surigoma.png);
    background-repeat: no-repeat;
    background-size: cover;
    --mv-start-x: 100vw;
    animation: mvItemFadeIn 1.4s ease-out forwards,
               mvItemWobbleRight 1.4s steps(1, jump-end) forwards;
  }
}
@media screen and (min-width: 480px){
  .blend{
    .blend_mv{
      &::before{
        background-image: url(/img/blend/parts_line.png);
        background-position: 50% 60%;
      }
    }
  }
}
@media screen and (min-width: 768px){
  .blend{
    .blend_mv{
      padding: 56px 0 calc(270/1440*100vw);
      background-image: url('/img/blend/bg.jpg');
  
      .blend_inner{
          padding: 0;
         max-width: min(calc(548 / 1440 * 100vw), 548px);
          margin: auto;
        }
      .mv_ribbon{
          width: min(calc(485 / 1440 * 100vw),485px);
          margin: auto;
          display: block;
        }
      .mv_ttl{
          width: max(548px, calc(548 / 1440 * 100vw));
          margin: auto;
          display: block;
      }
      .mv_img{
        width: min(calc(424 / 1440 * 100vw), 475px);
        gap: 24px;
          margin-top: 32px;
          padding: 0;
      }
      .mv_item-left-top{
        position: absolute;
        top: max(-135px, calc(-135 / 1440 * 100vw));
        left: max(-130px, calc(-130 / 1440 * 100vw));
        width: min(470px, calc(470 / 1440 * 100vw));
        height: min(450px, calc(450 / 1440 * 100vw));
        --mv-start-x: -50vw;
      }
      .mv_item-left-bottom{
        position: absolute;
        bottom: min(200px, calc(200 / 1440 * 100vw));
        left: min(50px, calc(50 / 1440 * 100vw));
        width: min(265px, calc(265 / 1440 * 100vw));
        height: min(252px, calc(252 / 1440 * 100vw));
      }
      .mv_item-right-top{
        position: absolute;
        top: min(110px, calc(110 / 1440 * 100vw));
        right: min(58px, calc(58 / 1440 * 100vw));
        width: min(235px, calc(235 / 1440 * 100vw));
        height: min(213px, calc(213 / 1440 * 100vw));
      }
      .mv_item-right-bottom{
        position: absolute;
        top: min(calc(420 / 1440 * 100vw), 420px);
        right: max(-30px, calc(-30 / 1440 * 100vw));
        width: min(400px, calc(400 / 1440 * 100vw));
        height: min(337px, calc(337 / 1440 * 100vw));
        bottom: auto;
        --mv-start-x: 50vw;
      }
    }
  }
}
/* @media screen and (min-width: 1441px){
  .blend{
    .blend_mv{
      padding: 56px 0 min(calc(380 / 1700 * 100vw), 380px);

      .mv_img{
        width: min(calc(600 / 1700 * 100vw), 600px);
      }
    }
  }
} */

/*  .blend_lead
------------------------------- */
.blend{
  .blend_lead{
    background: #FBF9F5;
    .lead_inner{
      padding: 0 20px 64px;
    }
    .lead_txt{
      img{
        width: 85%;

      }
      p{
        margin-top: 36px;
      }
    }
    .lead_img{
      margin-top: 72px;
      position: relative;
      img{
        --zigzag-y: 0px;
        width: calc(220 / 375 * 100vw);
        display: block;
        opacity: 0;
        transform: translateY(calc(24px + var(--zigzag-y)));
        transition: opacity .6s ease, transform .6s ease;
      }
      img:nth-child(2){
        margin-left: auto;
        transition-delay: 0.9s;
      }
      img:nth-child(3){
        margin-top: 16px;
        transition-delay: 1.8s;
      }
      &.is-inview img{
        opacity: 1;
        transform: translateY(var(--zigzag-y));
      }
      &::before{
        content: '';
        display: block;
        position: absolute;
        width: calc(585 / 375 * 100vw);
        height: calc(315 / 375 * 100vw);
        background-image: url(/img/blend/lead/parts_paper.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: 0;
        top: 50%;
        left: -130px;
        transform: translateY(-50%) rotate(-20deg);
      }
      &::after{
        content: '';
        display: block;
        position: absolute;
        top: min(-75px, 15%);
        right: -15px;
        width: min(260px, calc(195 / 375 * 100vw));
        height: min(100px, calc(100 / 375 * 100vw));
        background-image: url(/img/blend/lead/parts_up.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        transform: rotate(10deg);
      }
    }
  }
}
@media screen and (min-width: 768px){
  .blend{
    .blend_lead{
      background: #F7F5F2;
      .lead_inner{
        padding: 80px 20px;
      }
      ._blend_flex{
        gap: 40px;
        align-items: center;
      }
      .lead_txt{
        margin-top: 24px;
        p{
          margin-top: 24px;
        }
        img{
          width: 97%;
          margin: 10px 0;
        }
      }
      .lead_img{
        flex-shrink: 0;
        display: flex;
        align-items: center;
        margin-top: 0;
        gap: 24px;
        img{
          width: min(266px, calc(226 / 1440 * 100vw));
          height: fit-content;
        }
        img:nth-child(1),
        img:nth-child(3){
          --zigzag-y: 24px;
        }
        img:nth-child(2){
          --zigzag-y: -24px;
        }
        &::before{
          width: min(550px, calc(550 / 1440 * 100vw));
          height: min(350px, calc(290 / 1440 * 100vw));
          top: 50%;
          right: 10%;
          transform: translateY(-50%) rotate(0deg);
          left: auto;
        }
        &::after{
          top: -10px;
          right: 25px;
          width: min(213px,calc(213 / 1440 * 100vw));
          height: min(61px, calc(61 / 1440 * 100vw));
          transform: rotate(0deg);
        }
      }
    }
  }
}

@media screen and (min-width: 1000px){
  .blend{
    .blend_lead{
      .lead_inner{
        padding: 20px min(5vw, 72px) 120px;
      }
    }
  }
}
@media screen and (min-width: 1400px){
  .blend{
    .blend_lead{
      .lead_img{
        &::before{
          right: 120px;
        }
      }
    }
  }
}

/*  .blend_features
------------------------------- */
.blend{
  .blend_features{
    background-image: url('/img/blend/features/bg_sp.jpg');
    background-size: contain;
    padding: 64px 20px 222px;
    position: relative;

    .features_inner{
      background-color: #FFFFFFCC;
      border-radius: 4px;
      border-top: 5px solid #B2121F;
      border-bottom: 5px solid #B2121F;
      padding: 48px 20px;
    }
    .blend_subttl{
      margin-left: 0;
    }
    ._ff-head{
      text-align: left;
    }
    .features_list{
      margin-top: 32px;
    }
    .features_item + .features_item{
      margin-top: 40px;
    }
    .features_txt{
      margin-top: 8px;
      font-size: 15px;
      line-height: 1.6;
    }
    .features_ttl{
      gap: 8px;
      ._ff-en{
        color: #FFF;
        padding: 0 8px 2px 8px;
        border-radius: 2px;
        background: #B2121F;
        width: fit-content;
        line-height: 1.2;
        span{
          font-size: 22px;
        }
      }
    }
    .features_desc{
      gap: 12px;
    }
    .features_desc_item{
      margin: 20px 0 0;
      gap: 12px;
      img{
        border-radius: 4px;
      }
      p{
        line-height: 1.6;
      }
      p + p{
        margin-top: 4px;
      }
      ._description{
        font-size: 15px;
      }
    }
    .features_desc_item._02{
      gap: 16px;

      p + p{
        margin-top: 8px;
      }
    }
    .features_item-left,
    .features_item-right{
      position: absolute;
      width: min(calc(95 / 375 * 100vw), 95px);
      height: 150px;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 5;
    }
    .features_item-left{
      background-image: url('/img/blend/img_package_red.png');
      bottom: 90px;
      right: min(calc(157 / 375 * 100vw), 157px);
      transform: rotate(-12deg);
      animation: featuresItemWobbleLeft 6s steps(1, jump-end) infinite;
    }
    .features_item-right{
      background-image: url('/img/blend/img_package_wh.png');
      bottom: 0;
      right: 0;
      bottom: 10px;
      right: 35px;
      transform: rotate(12deg);
      animation: featuresItemWobbleRight 6s steps(1, jump-end) infinite;
    }
  }
}

@media screen and (min-width: 768px){
  .blend{
    .blend_features{
      background-image: url('/img/blend/features/bg.jpg');
      padding: 120px min(10vw, 144px) 200px;

      .features_inner{
        padding: 40px 40px 48px;
        max-width: 1152px;
        margin: auto;
        border-radius: 4px;
        border-top: 4px solid #B2121F;
        border-bottom: 4px solid #B2121F;
      }
      .features_list{
        margin-top: 40px;
      }
      .features_txt{
        font-size: 16px;
        margin-top: 8px;
      }
      .features_ttl{
        gap: 8px;
        ._ff-en{
          padding: 0 8px 4px 8px;
          font-size: 18px;
          line-height: 1;
          span{
            font-size: 28px;
          }
        }
      }
      .features_desc{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-start;
        gap: 24px;
      }
      .features_desc_item{
        align-items: flex-start;
        margin: 16px 0 0;
        gap: 16px;
        img{
          border-radius: 4px;
          width: min(calc(160 / 1440 * 100vw), 160px);
          height: min(calc(121 / 1440 * 100vw), 121px);
        }
        p + p{
          margin-top: 8px;
        }
        ._description{
          font-size: 16px;
        }
      }
      .features_item-left,
      .features_item-right{
        position: absolute;
        width: clamp(90px, calc(129 / 1440 * 100vw), 129px);
        height: 205px;
      }
      .features_item-left{
        bottom: 40px;
        right: 21%;
      }
      .features_item-right{
        bottom: -40px;
        right: 9%;
      }
    }
  }
}

@keyframes recipeBorderMarch{
  0%{
    background-position: top left, top right, right bottom, bottom left;
  }
  100%{
    background-position: right top, right bottom, left bottom, left top;
  }
}

@keyframes recipeSlickMarquee{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/*  .blend_recipe
------------------------------- */
.blend{
  .blend_recipe{
    .blend_example{
      background-image: url(/img/blend/arrange/bg_under_sp.png);
      background-repeat: no-repeat;
      background-position: top center;
      position: relative;
      &::before{
        content: '';
        display: block;
        position: absolute;
        top: calc(-32 / 375 * 100vw);
        width: 100%;
        height: calc(32 / 375 * 100vw);
        background-image: url(/img/blend/arrange/bg_top_sp.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
      .recipe_inner{
        padding-top: 31px;
        padding-bottom: 80px;
      }
      .recipe_list{
        margin: 40px auto 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        width: fit-content;
      }
      .recipe_item{
        display: flex;
        flex-direction: column;
        gap: 16px;
        border-radius: 8px;
        background: #FCFBFA;
        max-width: 335px;
        padding: 20px 16px 14px;
        position: relative;
        border: 2px solid transparent;
  
        &::before{
          content: '';
          position: absolute;
          inset: -2px;
          border-radius: inherit;
          overflow: hidden;
          background-image:
            linear-gradient(to left, #B2121F 4px, transparent 4px),
            linear-gradient(to bottom, #B2121F 4px, transparent 4px),
            linear-gradient(to right, #B2121F 4px, transparent 4px),
            linear-gradient(to bottom, #B2121F 4px, transparent 4px);
          background-size: 8px 2px, 2px 8px, 8px 2px, 2px 8px;
          background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
          background-position: left top, right, bottom, left;
          opacity: 0;
          transition: opacity 0.3s;
          pointer-events: none;
        }
      }
      .recipe_parts{
        display: flex;
        gap: 8px;
        flex-direction: column;
      }
      .recipe_img{
        border-radius: 4px;
        height: min(calc(227 / 375 * 100vw), 227px);
        object-fit: cover;
      }
      .recipe_icn{
        display: flex;
        gap: 8px;
        ._airplane{
          margin-right: 2px;
        }
      }
      .recipe_name{
        line-height: 1.6;
      }
      .recipe_btn{
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #AFAFAF;
        padding-top: 12px;
        p{
          font-size: 14px;
        }
        img{
          width: 32px;
          height: 21px;
          padding: 8px 12px;
          border-radius: 2px;
          filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(16%) hue-rotate(95deg) brightness(92%) contrast(95%);
        }
      }
      .recipe_item:hover{
        opacity: 1;
  
        &::before{
          opacity: 1;
          animation: recipeBorderMarch 12s linear infinite;
        }
  
        .recipe_btn{
          img{
            filter: none;
            background-color: #B2121F;
          }
        }
      }
      .recipe_link{
        color: #FFF;
        text-align: center;
        font-size: 15px;
        border-radius: 4px;
        background: #B2121F;
        padding: 10px 12px 10px 16px;
        width: min(calc(300 / 375 * 100vw),300px);
        margin: 40px auto 0;
        display: block;
        position: relative;
        border: 1px solid #B2121F;
        transition: 0.3s;
  
        &::after{
          content: "";
          display: block;
          width: 7px;
          height: 7px;
          border-right: 1px solid #ffffff;
          border-bottom: 1px solid #ffffff;
          transform: rotate(-45deg);
          position: absolute;
          right: 12px;
          top: 41%;
        }

        &:hover{
          opacity: 1;
          background: #FFF;
          color: #B2121F;

          &::after{
            border-color: #B2121F;
          }
        }
      }
    }
    .recipe_slider{
      background-image: url(/img/blend/recipe/bg_under_sp.png);
      background-repeat: no-repeat;
      background-position: top center;
      position: relative;
      padding-bottom: 100px;
      &::before{
        content: '';
        display: block;
        position: absolute;
        top: calc(-33 / 375 * 100vw);
        width: 100%;
        height: calc(34 / 375 * 100vw);
        background-image: url(/img/blend/recipe/bg_top_sp.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
      .recipe_inner{
        padding-top: 60px;
        padding-bottom: 75px;
      }
      .recipe_slick{
        position: relative;
        &::before,
        &::after{
          content: '';
          display: block;
          position: absolute;
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
        }
        &::before{
          top: -60px;
          width: min(190px, calc(140 / 375 * 100vw));
          height: min(170px, calc(125 / 375 * 100vw));
          background-image: url(/img/blend/recipe/parts_hukidasi1.png);
          z-index: 5;
        }
        &::after{
          bottom: -70px;
          right: 0;
          width: min(190px, calc(140 / 375 * 100vw));
          height: min(170px, calc(130 / 375 * 100vw));
          background-image: url(/img/blend/recipe/parts_hukidasi2_sp.png);
        }
      }
      .recipe_slick_track{
        display: flex;
        width: max-content;
        animation: recipeSlickMarquee 80s linear infinite;
        animation-play-state: paused;

        &.is-ready{
          animation-play-state: running;
        }
      }
      .recipe_slick_item{
        flex: none;
        margin-right: -25px;
        img{
          border-radius: 4px;
          border: 7px solid #FFF;
          box-shadow: 3px 3px 0 0 rgba(170, 129, 35, 0.50);
          width: calc(250/375*100vw);
          height: auto;
        }
      }
      ._tilt-1{
        transform: translateY(0) rotate(-5deg);
      }
      ._tilt-2{
        transform: translateY(24px) rotate(5deg);
      }
      ._tilt-3{
        transform: translateY(-16px) rotate(10deg);
      }
      ._tilt-4{
        transform: translateY(-36px) rotate(-5deg);
      }
      ._tilt-5{
        transform: translateY(24px) rotate(5deg);
      }
      ._tilt-6{
        transform: translateY(0) rotate(-5deg);
      }
    }
  }
}

@media screen and (min-width: 768px){
  .blend{
    .blend_recipe{
      .blend_example{
        background-color: #DBCCA6;
        background-image: url(/img/blend/arrange/bg_under.png);
        background-size: cover;
        &::before{
          height: calc(min(calc(120 / 1440 * 1700px), calc(120 / 1440 * 100vw)) + 2px);
          background-image: url(/img/blend/arrange/bg_top.png);
          top: auto;
          bottom: calc(100% - 4px);
        }
        .recipe_inner{
          padding-top: 31px;
          padding-bottom: 144px;
        }
        .recipe_list{
          max-width: 1108px;
          margin-top: 48px;
          grid-template-columns: repeat(3,1fr);
        }
        .recipe_item{
          max-width: none;
          padding: 20px min(calc(16 / 1440 * 100vw), 16px) 14px;
        }
        .recipe_img{
          height: min(calc(237 / 1440 * 100vw), 237px);
        }
        .recipe_link{
          font-size: 16px;
          padding: 12px 16px;
          &::after{
            top: 42%;
            right: 16px;
          }
        }
      }
      .recipe_slider{
        background-image: url(/img/blend/recipe/bg_under.png);
        background-size: cover;
        padding-bottom: 0;
        &::before{
          height: calc(min(calc(124 / 1440 * 1700px), calc(123 / 1440 * 100vw)) + 1px);
          background-image: url(/img/blend/recipe/bg_top.png);
          top: auto;
          bottom: calc(100% - 1px);
        }
        .recipe_inner{
          padding-top: 40px;
        }
        .recipe_content{
          overflow: hidden;
          padding-bottom: 120px;
        }
        .recipe_slick_track{
          animation-duration: 80s;
        }
        .recipe_slick_item{
          img{
            width: min(calc(260 / 1440 * 100vw), 260px);
            border: min(calc(7/1440*100vw),7px) solid #FFF;
          }
        }
        .recipe_slick{
          &::before{
            top: max(-200px, calc(-160 / 1440 * 100vw));
            left: calc(72 / 1440 * 100vw);
            width: clamp(120px, calc(210 / 1440 * 100vw), 210px);
            height: clamp(140px, calc(190 / 1440 * 100vw), 190px);
          }
          &::after{
            bottom: auto;
            top: max(-150px, calc(-120 / 1440 * 100vw));
            right: calc(72 / 1440 * 100vw);
            width: clamp(130px, calc(216 / 1440 * 100vw), 216px);
            height: clamp(110px, calc(190 / 1440 * 100vw), 190px);
            background-image: url(/img/blend/recipe/parts_hukidasi2.png);
          }
        }
      }
    }
  }
}

/*  .blend_product
------------------------------- */
.blend{
  .blend_product{
    position: relative;
    z-index: 0;
  }
  .product_img_sentinel{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
  }
  .product_img_spacer{
    position: relative;
    height: 100vh;
  }
  .product_img{
    position: absolute;
    inset: 0;
    overflow: hidden;

    picture,
    img{
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .product_img_spacer.is-pinned{
    .product_img{
      position: fixed;
      top: var(--product-img-pin-offset, 0px);
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
      pointer-events: none;
    }
  }
  .product_content{
    position: relative;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(5px);

    .product_inner{
      padding-top: 64px;
      padding-bottom: 64px;
    }
    ._ff-head{
      font-size: 28px;
      letter-spacing: 1.4px;
      margin-top: 0;
    }
    .product_item{
      align-items: center;
      gap: 20px;
      margin-top: 40px;
      img{
        width: calc(150/375*100vw);
      }
    }
    .product_item + .product_item{
      margin-top: 56px;
    }
    .product_txt{
      ._ff-head{
        font-size: 24px;
        line-height: 1.4;
        text-align: left;
        letter-spacing: 1.2px;
      }
      p{
        font-size: 15px;
        margin-top: 16px;
        line-height: 1.6;
      }
      a{
        color: #FFF;
        text-align: center;
        font-size: 15px;
        line-height: 160%;
        padding: 10px 12px 10px 16px;
        border-radius: 4px;
        background: #B2121F;
        width: 100%;
        display: block;
        margin-top: 20px;
        position: relative;
        border: 1px solid #B2121F;
        transition: 0.3s;
  
        &::after{
          content: "";
          display: block;
          width: 7px;
          height: 7px;
          border-right: 1px solid #ffffff;
          border-bottom: 1px solid #ffffff;
          transform: rotate(-45deg);
          position: absolute;
          right: 12px;
          top: 41%;
        }

        &:hover{
          opacity: 1;
          background: #FFF;
          color: #B2121F;

          &::after{
            border-color: #B2121F;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 768px){
  .blend{
    .product_content{
      .product_inner{
        padding-top: 80px;
        padding-bottom: 80px;
      }
      ._ff-head{
        font-size: 32px;
        letter-spacing: 1.6px;
      }
      .product_item{
        gap: 32px;
        img{
          width: min(200px,calc(200/1440*100vw));
        }
      }
      .product_item + .product_item{
        margin-top: 40px;
      }
      .product_txt{
        ._ff-head{
          font-size: 28px;
          text-align: left;
          letter-spacing: 1.4px;
        }
        p{
          font-size: 16px;
          margin-top: 24px;
        }
        a{
          font-size: 16px;
          padding: 12px 16px 12px 21px;
          width: 300px;
          margin-top: 24px;

          &::after{
            right: 16px;
          }
        }
      }
    }
  }
}

.blend ~ .bottom-buy-link,
.blend ~ .bottom-banner-area,
.blend ~ .bottom-contact,
.blend ~ footer{
  position: relative;
  z-index: 1;
}

