@charset "UTF-8";
/*ブレークポイント*/
:root {
  --color-black: #222;
  --color-white: #fff;
  --color-blue: #014099;
  --color-brown: #4c2400;
  --color-bg: #e6d8bb;
  --color-fresh: rgb(234, 10, 42);
  --color-blend: rgb(0, 160, 233);
  --color-whip: rgb(0, 155, 70);
  --color-modal-overlay: rgba(230, 216, 187, 0.95);
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  position: relative;
  width: 100%;
  min-width: 375px;
  min-height: 100%;
  font-family: "Noto Sans JP", -apple-system, "BlinkMacSystemFont", HiraginoSans, "Hiragino Sans", "NotoSansJP", "Noto Sans CJK JP", NotoSansCJKjp-Light, "Noto Sans CJK JP Light", "游ゴシック", "Yu Gothic", "Meiryo", monospace, sans-serif;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.4;
  word-wrap: break-word;
  color: var(--color-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: var(--color-bg);
}
@media print, screen and (min-width: 768px) {
  body {
    background: var(--color-bg) url(/business/ll-whipseries/img/bg_pattern.png) repeat center top;
  }
}

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

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

picture {
  display: block;
}

*:focus {
  outline: none;
}

[class*=line-break] {
  display: inline-block;
}

.wbr {
  word-break: keep-all;
}

sup,
sub {
  line-height: 1.4;
}

sup {
  font-size: 60%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

sub {
  font-size: 70%;
  vertical-align: bottom;
  position: relative;
  bottom: 0.1em;
}

.font-80per {
  font-size: 80%;
}

.font-120per {
  font-size: 120%;
}

.font-bold {
  font-weight: bold;
}

#pagetop {
  z-index: 100;
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 70px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.39, 0, 0.25, 1);
}
#pagetop a {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.6));
  transition: opacity 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
#pagetop a:hover {
  opacity: 0.7;
}
.scroll #pagetop {
  opacity: 1;
}

.scroll.sec5 #pagetop {
  bottom: 20px;
}

@media print, screen and (min-width: 768px) {
  #pagetop {
    bottom: 20px;
  }
  #pagetop a {
    width: 70px;
    height: 70px;
  }
}

.button {
  container-type: inline-size;
  width: min(100%, 24em);
  text-align: center;
}
.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em;
  border: solid 3px var(--color-blue);
  border-radius: calc(infinity * 1px);
  font-size: min(8cqw, 2rem);
  font-weight: bold;
  color: var(--color-blue);
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
.button a::after {
  display: inline-block;
  content: "";
  margin-left: 0.5em;
  width: 0.75em;
  height: 0.75em;
  background: url("/business/ll-whipseries/img/arrow_blue_right.svg") no-repeat center center/contain;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
.button a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
.button a:hover::after {
  background: url("/business/ll-whipseries/img/arrow_white_right.svg") no-repeat center center/contain;
  transform: translateX(10px);
}

.content_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

header {
  z-index: 10;
  width: 100%;
  position: absolute;
  inset: 0 0 auto;
  margin: 0 auto;
}
header > .inner {
  margin: 0 auto;
  padding: 0;
  width: min(95%, 1200px);
}
header > .inner h1 {
  width: min(44vw, 200px);
}
header > .inner h1 a {
  display: block;
  padding: clamp(6px, 3.936px + 0.55vw, 10px) 0;
}
@media print, screen and (min-width: 768px) {
  header .inner p {
    width: 17cqw;
  }
}

main {
  z-index: 1;
  width: 100%;
  position: relative;
}
main #mv {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 0;
  clip-path: inset(0); /* 切り抜き */
  background-color: var(--color-white);
}
main #mv::before {
  z-index: 0;
  display: block;
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: var(--mv-height, 100px); /* ← カスタムプロパティを使う chatGPT*/
  background: var(--color-white) url("/business/ll-whipseries/img/bg_whip.jpg") no-repeat center center/cover;
  opacity: 0;
}
.loaded main #mv::before {
  animation-name: anim_fade_in;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

main #mv::after {
  z-index: 1;
  display: block;
  content: "";
  position: absolute;
  inset: auto 0 0;
  transform: translateY(3px);
  width: 100%;
  height: clamp(70px, 54.48px + 4.14vw, 100px);
  background: url("/business/ll-whipseries/img/wave1.svg") no-repeat center bottom/100% 100%;
}
main #mv > .inner {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  padding: clamp(70px, 54.48px + 4.14vw, 100px) 0 clamp(42px, 32.688px + 2.48vw, 60px);
  width: min(95%, 550px);
}
main #mv > .inner figure {
  display: block;
}
@media print, screen and (max-width: 767px) {
  main #mv > .inner figure {
    margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
  }
}
@media print, screen and (min-width: 768px) {
  main #mv::after {
    height: clamp(105px, 81.728px + 6.21vw, 150px);
  }
  main #mv > .inner {
    display: flex;
    justify-items: stretch;
    align-items: center;
    padding: 40px 0 clamp(84px, 65.376px + 4.97vw, 120px);
    width: min(95%, 1200px);
  }
}
main #content {
  z-index: 2;
  position: relative;
  width: 100%;
}
main #content > .inner {
  margin: 0 auto;
  width: min(95%, 1200px);
}
main #content #anchor {
  position: relative;
}
main #content #anchor::after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  inset: -2px 0 auto;
  width: 100%;
  height: 60%;
  background-color: var(--color-bg);
}
main #content #anchor p {
  margin: 0 auto;
  padding-block: clamp(14px, 10.896px + 0.83vw, 20px);
  width: min(65%, 500px);
}
main #content #anchor nav {
  position: relative;
  margin: 0 auto;
  width: min(95%, 1200px);
}
main #content #anchor nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
main #content #anchor nav ul li {
  position: relative;
  width: 33.3333333333%;
  text-align: center;
}
main #content #anchor nav ul li a {
  display: block;
  transition: transform 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
main #content #anchor nav ul li a:hover {
  transform: scale(1.05);
}
main #content .content {
  margin: clamp(56px, 43.584px + 3.31vw, 80px) auto 0;
  border-radius: 25px;
  background-color: var(--color-white);
  overflow: hidden;
}
main #content .content > .inner {
  margin: 0 auto;
  padding-bottom: clamp(42px, 32.688px + 2.48vw, 60px);
  width: min(90%, 1000px);
}
main #content .content .whip_type {
  padding-block: clamp(21px, 16.352px + 1.24vw, 30px);
  text-align: center;
  line-height: 0;
  background-color: var(--color-black);
}
main #content .content .products {
  position: relative;
  margin: 0 auto;
  padding-block: clamp(28px, 21.12px + 1.66vw, 40px);
  width: min(100%, 770px);
}
main #content .content .products > figure {
  display: block;
}
main #content .content .recipe {
  margin: 0 auto;
  text-align: center;
}
main #content .content .recipe .recipe_title {
  margin: 0 auto;
  width: min(80%, 400px);
  line-height: 1;
}
main #content .content .recipe ul.recipe_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(21px, 16.352px + 1.24vw, 30px);
  margin: clamp(21px, 16.352px + 1.24vw, 30px) auto 0;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item {
  aspect-ratio: 1/1;
  height: 100%;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item:nth-of-type(even) {
  animation-delay: 0.3s !important;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__front,
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back {
  container-type: inline-size;
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__front {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateY(0deg);
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 8% 5px;
  transform: rotateY(-180deg);
  color: var(--color-white);
  background-color: var(--color-black);
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back .recipe_card__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: min(10cqw, 2.8rem);
  font-weight: bold;
  line-height: 1.6;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back .recipe_card__title span {
  font-size: 7cqw;
  line-height: 2;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back .recipe_card__title.recipe_card__title__small {
  font-size: 7.5cqw;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back .recipe_card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
  padding: 0.3em 0;
  border: solid 2px white;
  border-radius: 1.5em;
  width: 80%;
  font-size: min(7cqw, 1.8rem);
  list-style: 1;
}
main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back .recipe_card__button::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  margin-left: 0.5em;
  width: 0.75em;
  height: 0.75em;
  background: url("/business/ll-whipseries/img/arrow_white_right.svg") no-repeat center center/contain;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
main #content .content#intro > .inner {
  padding-block: clamp(42px, 32.688px + 2.48vw, 60px) clamp(28px, 21.12px + 1.66vw, 40px);
}
main #content .content#fresh .whip_type {
  background-color: var(--color-fresh);
}
main #content .content#fresh .whip_type img {
  width: 245px;
}
main #content .content#fresh .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back {
  background-color: var(--color-fresh);
}
main #content .content#blend .whip_type {
  background-color: var(--color-blend);
}
main #content .content#blend .whip_type img {
  width: 270px;
}
main #content .content#blend .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back {
  background-color: var(--color-blend);
}
main #content .content#whip .whip_type {
  background-color: var(--color-whip);
}
main #content .content#whip .whip_type img {
  width: 275px;
}
main #content .content#whip .recipe ul.recipe_list li.recipe_list__item .recipe_card .recipe_card__back {
  background-color: var(--color-whip);
}
main #content .button {
  container-type: inline-size;
  width: min(100%, 24em);
  text-align: center;
}
main #content .button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em;
  border: solid 3px var(--color-blue);
  border-radius: calc(infinity * 1px);
  font-size: min(8cqw, 2rem);
  font-weight: bold;
  color: var(--color-blue);
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
main #content .button a::after {
  display: inline-block;
  content: "";
  margin-left: 0.5em;
  width: 0.75em;
  height: 0.75em;
  background: url("/business/ll-whipseries/img/arrow_blue_right.svg") no-repeat center center/contain;
  transition: all 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
main #content .button a:hover {
  color: var(--color-white);
  background-color: var(--color-blue);
}
main #content .button a:hover::after {
  background: url("/business/ll-whipseries/img/arrow_white_right.svg") no-repeat center center/contain;
  transform: translateX(10px);
}
main #content #e-books {
  margin: clamp(105px, 81.728px + 6.21vw, 150px) auto 0;
  padding-bottom: clamp(21px, 16.352px + 1.24vw, 30px);
  width: min(100%, 520px);
  text-align: center;
  color: var(--color-brown);
}
main #content #e-books p {
  margin: 0 auto;
  width: 100%;
  font-size: clamp(2.24rem, 1.935rem + 0.79vw, 2.8rem);
  font-weight: bold;
  word-break: keep-all;
}
main #content #e-books p a {
  display: block;
  margin-top: clamp(21px, 16.352px + 1.24vw, 30px);
  padding: 0.8em 0;
  border: solid 3px var(--color-brown);
  border-radius: calc(infinity * 1px);
  font-size: clamp(2.88rem, 2.488rem + 1.01vw, 3.6rem);
  line-height: 1;
  color: var(--color-brown);
}
main #content #e-books p a::after {
  background: url("/business/ll-whipseries/img/arrow_brown_right.svg") no-repeat center center/contain;
}
main #content #e-books p a:hover {
  color: var(--color-white);
  background-color: var(--color-brown);
}
main #content #e-books p a:hover::after {
  background: url("/business/ll-whipseries/img/arrow_white_right.svg") no-repeat center center/contain;
}
@media print, screen and (max-width: 767px) {
  main #content .content .whip_type img {
    opacity: 0;
  }
  main #content .content .whip_type.show img {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0s forwards anim_slide_up;
  }
  main #content .content .products h3 {
    opacity: 0;
  }
  main #content .content .products h3.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_up;
  }
  main #content .content .products .package img {
    opacity: 0;
  }
  main #content .content .products .package.show img {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_up;
  }
  main #content .content .products .specifications {
    opacity: 0;
  }
  main #content .content .products .specifications.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_up;
  }
  main #content .content .products .lead_text {
    opacity: 0;
  }
  main #content .content .products .lead_text.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.6s forwards anim_slide_up;
  }
  main #content .content .products {
    max-width: 500px;
  }
  main #content .content .products > figure {
    margin-top: clamp(21px, 16.352px + 1.24vw, 30px);
    width: 100%;
    text-align: right;
  }
  main #content .content .products > figure img {
    width: 33%;
  }
  main #content .content .products .specifications {
    position: absolute;
    top: 32%;
    width: 65%;
  }
  main #content .content .products .lead_text {
    position: absolute;
    top: 45%;
    width: 65%;
  }
  main #content .content .products .button {
    margin-top: clamp(28px, 21.12px + 1.66vw, 40px);
    margin-inline: auto;
  }
  main #content .content .recipe .recipe_title {
    margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
    width: 300px;
  }
  main #content .content .recipe ul.recipe_list {
    width: min(90%, 260px);
  }
  main #content .content#intro > .inner {
    max-width: 400px;
  }
  main #content .content#blend .products .lead_text {
    top: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  main #content .content {
    border-radius: 50px;
  }
  main #content .content .whip_type img {
    opacity: 0;
  }
  main #content .content .whip_type.show img {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0s forwards anim_slide_left;
  }
  main #content .content .products h3 {
    opacity: 0;
  }
  main #content .content .products h3.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_left;
  }
  main #content .content .products .package img {
    opacity: 0;
  }
  main #content .content .products .package.show img {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_up;
  }
  main #content .content .products .specifications {
    opacity: 0;
  }
  main #content .content .products .specifications.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.3s forwards anim_slide_up;
  }
  main #content .content .products .lead_text {
    opacity: 0;
  }
  main #content .content .products .lead_text.show {
    animation: 0.75s cubic-bezier(0.39, 0, 0.25, 1) 0.6s forwards anim_slide_up;
  }
  main #content .content > .inner {
    padding-bottom: clamp(56px, 43.584px + 3.31vw, 80px);
  }
  main #content .content .whip_type {
    padding-left: clamp(35px, 27.248px + 2.07vw, 50px);
    text-align: left;
  }
  main #content .content .products h3 {
    width: 65%;
  }
  main #content .content .products > figure {
    position: absolute;
    inset: 0 0 0 auto;
    width: 24%;
    transform: translateY(-13%);
  }
  main #content .content .products .specifications {
    margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
    width: 65%;
  }
  main #content .content .products .lead_text {
    margin: clamp(35px, 27.248px + 2.07vw, 50px) auto 0;
    width: min(100%, 608px);
  }
  main #content .content .products .button {
    margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
  }
  main #content .content#fresh .whip_type img {
    width: 365px;
  }
  main #content .content#fresh .products .button {
    margin-top: clamp(28px, 21.12px + 1.66vw, 40px);
  }
  main #content .content#blend .whip_type img {
    width: 410px;
  }
  main #content .content#blend .products .lead_text {
    width: min(100%, 760px);
  }
  main #content .content#whip .whip_type img {
    width: 425px;
  }
  main #content .content#whip .products .lead_text {
    width: min(100%, 512px);
  }
  main #content .content .recipe ul.recipe_list {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 21.12px + 1.66vw, 40px);
  }
  main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card:hover .recipe_card__front {
    transform: rotateY(-180deg);
  }
  main #content .content .recipe ul.recipe_list li.recipe_list__item .recipe_card:hover .recipe_card__back {
    transform: rotateY(0deg);
  }
}

footer {
  z-index: 10;
}
footer > .inner {
  margin: 0 auto;
  padding: clamp(21px, 16.352px + 1.24vw, 30px) 0;
  width: 95%;
  max-width: 1200px;
  text-align: center;
}
footer > .inner ul {
  display: inline-block;
  margin: 0;
}
footer > .inner ul li {
  text-align: left;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
}
footer > .inner ul li + li {
  margin-top: 0.5em;
}
footer > .inner p:not([class]) {
  margin-bottom: clamp(35px, 27.248px + 2.07vw, 50px);
  font-size: clamp(1.36rem, 1.175rem + 0.48vw, 1.7rem);
}
footer > .inner p:not([class]) small span {
  display: inline-block;
}
footer > .inner p.copyright {
  margin-top: 2em;
  font-size: clamp(1.12rem, 0.968rem + 0.39vw, 1.4rem);
}
footer > .inner p.copyright small span {
  display: inline-block;
}
footer > .inner a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--color-blue);
  transition: opacity 0.3s cubic-bezier(0.39, 0, 0.25, 1);
}
footer > .inner a::after {
  display: inline-block;
  content: "";
  width: 1.5em;
  height: 0.75em;
  background: url("/business/ll-whipseries/img/icon_blank.svg") no-repeat center center/contain;
}
footer > .inner a:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  footer .inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
  }
  footer .inner ul li {
    margin-inline: 0.75em;
  }
  footer .inner ul li + li {
    margin-top: 0;
  }
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal .modal__container,
.modal .modal__overlay {
  will-change: transform;
}
.modal .modal__overlay {
  z-index: 20;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  height: 100dvh;
  background: var(--color-modal-overlay);
}
.modal .modal__overlay .modal__container {
  position: relative;
  width: min(1100px, 95%);
  border-radius: 25px;
  background-color: var(--color-white);
  filter: drop-shadow(0px 0px 10px #c2a669);
}
.modal .modal__overlay .modal__container .modal__close {
  cursor: pointer;
  position: absolute;
  inset: 0 0 auto auto;
  transform: translate(30%, -30%);
  width: 40px;
  height: 40px;
}
.modal .modal__overlay .modal__container .modal__close:hover img {
  transform: scale(1.1, 1.1);
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal__overlay .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media print, screen and (min-width: 768px) {
  .modal .modal__overlay .modal__container {
    border-radius: 50px;
  }
  .modal .modal__overlay .modal__container .modal__close {
    width: 60px;
    height: 60px;
    z-index: 1;
  }
}

.modal__container__recipe > .inner {
  position: relative;
  padding-bottom: 25px;
  border-radius: 25px;
  width: 100%;
  height: auto;
  max-height: 80dvh;
  overflow-x: visible;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
.modal__container__recipe > .inner .padding {
  padding-inline: 20px;
}
.modal__container__recipe h4 {
  padding: 15px 0 15px 85px;
  background-color: var(--color-black);
}
.modal__container__recipe h4 img {
  height: 25px;
  width: auto;
}
.modal__container__recipe h4::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: 65px;
  aspect-ratio: 1/2.2;
  background: transparent url(/business/ll-whipseries/img/fresh_package.png) no-repeat right top 15px/auto calc(100% - 15px);
}
.modal__container__recipe h5 {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
  font-size: clamp(2.4rem, 2.074rem + 0.84vw, 3rem);
  padding-left: 60px;
  font-weight: bold;
  list-style: 1.1;
}
.modal__container__recipe h5 + p {
  padding-left: 60px;
  margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
}
.modal__container__recipe h5 + p + p {
  margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
  padding-left: 60px;
}
.modal__container__recipe figure img {
  border-radius: 20px;
  overflow: hidden;
}
.modal__container__recipe figure figcaption {
  font-size: clamp(1.12rem, 0.968rem + 0.39vw, 1.4rem);
}
.modal__container__recipe .column {
  margin-top: clamp(21px, 16.352px + 1.24vw, 30px);
}
.modal__container__recipe .column.column_photo .column_right {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
}
.modal__container__recipe .column.column_photo + .column .ingredients {
  margin-top: 0;
}
.modal__container__recipe .midashi {
  padding-bottom: 0.15em;
  border-bottom: solid 1px #222;
  font-size: clamp(1.76rem, 1.521rem + 0.62vw, 2.2rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  list-style: 1;
  color: #222;
}
.modal__container__recipe .komidashi {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
  font-size: clamp(1.6rem, 1.382rem + 0.56vw, 2rem);
  font-weight: bold;
  list-style: 1;
  color: #222;
}
.modal__container__recipe .line {
  position: relative;
  font-size: clamp(1.6rem, 1.382rem + 0.56vw, 2rem);
  height: 1em;
  list-style: 1;
}
.modal__container__recipe .line::before {
  content: "";
  display: block;
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.modal__container__recipe .note {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
}
.modal__container__recipe .ingredients {
  margin-top: clamp(21px, 16.352px + 1.24vw, 30px);
}
.modal__container__recipe .ingredients ul {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
}
.modal__container__recipe .ingredients ul li {
  position: relative;
  display: flex;
  padding: clamp(3.5px, 2.72px + 0.21vw, 5px) 0;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
}
.modal__container__recipe .ingredients ul li span {
  display: block;
}
.modal__container__recipe .ingredients ul li span.group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
}
.modal__container__recipe .ingredients ul li span.own_product {
  font-weight: bold;
}
.modal__container__recipe .ingredients ul li span:nth-of-type(2) {
  flex: 1;
}
.modal__container__recipe .ingredients ul li span:last-of-type {
  margin-left: auto;
  min-width: 3em;
  text-align: right;
}
.modal__container__recipe .ingredients ul li.group::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  margin-left: 2.2em;
  height: 100%;
  width: 4px;
  background-color: #ddd;
}
.modal__container__recipe .ingredients ul li.group span.group {
  justify-content: start;
}
.modal__container__recipe .ingredients ul + .midashi {
  margin-top: 1em;
}
.modal__container__recipe .ingredients .komidashi + ul {
  margin-top: clamp(3.5px, 2.72px + 0.21vw, 5px);
}
.modal__container__recipe .directions {
  margin-top: clamp(21px, 16.352px + 1.24vw, 30px);
}
.modal__container__recipe .directions ul {
  margin-top: clamp(14px, 10.896px + 0.83vw, 20px);
}
.modal__container__recipe .directions ul li {
  display: grid;
  grid-template-columns: 2em 1fr;
  gap: clamp(14px, 10.896px + 0.83vw, 20px);
  padding: clamp(3.5px, 2.72px + 0.21vw, 5px) 0;
  font-size: clamp(1.44rem, 1.244rem + 0.51vw, 1.8rem);
}
.modal__container__recipe .directions ul li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "0";
  transform: translateY(-15%);
  margin-right: 0.5em;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  font-size: clamp(1.6rem, 1.382rem + 0.56vw, 2rem);
  font-weight: bold;
  color: white;
  background-color: #999;
}
.modal__container__recipe .directions ul li:nth-of-type(1)::before {
  content: "1";
}
.modal__container__recipe .directions ul li:nth-of-type(2)::before {
  content: "2";
}
.modal__container__recipe .directions ul li:nth-of-type(3)::before {
  content: "3";
}
.modal__container__recipe .directions ul li:nth-of-type(4)::before {
  content: "4";
}
.modal__container__recipe .directions ul li:nth-of-type(5)::before {
  content: "5";
}
.modal__container__recipe .directions ul li:nth-of-type(6)::before {
  content: "6";
}
.modal__container__recipe .directions ul li:nth-of-type(7)::before {
  content: "7";
}
.modal__container__recipe .directions ul li:nth-of-type(8)::before {
  content: "8";
}
.modal__container__recipe .directions ul li:nth-of-type(9)::before {
  content: "9";
}
.modal__container__recipe .directions ul + .midashi {
  margin-top: 1em;
}
.modal__container__recipe .directions .komidashi + ul {
  margin-top: clamp(6px, 3.936px + 0.55vw, 10px);
}
.modal__container__recipe.modal__container__fresh h4 {
  background-color: var(--color-fresh);
}
.modal__container__recipe.modal__container__fresh h4::before {
  background: transparent url(/business/ll-whipseries/img/fresh_package.png) no-repeat right top 15px/auto calc(100% - 15px);
}
.modal__container__recipe.modal__container__fresh h5 {
  color: var(--color-fresh);
}
.modal__container__recipe.modal__container__fresh .midashi {
  border-bottom-color: var(--color-fresh);
}
.modal__container__recipe.modal__container__fresh .note span {
  color: var(--color-fresh);
}
.modal__container__recipe.modal__container__fresh .ingredients ul li span.own_product {
  color: var(--color-fresh);
}
.modal__container__recipe.modal__container__fresh .directions ul li::before {
  background-color: var(--color-fresh);
  opacity: 0.6;
}
.modal__container__recipe.modal__container__blend h4 {
  background-color: var(--color-blend);
}
.modal__container__recipe.modal__container__blend h4::before {
  background: transparent url(/business/ll-whipseries/img/blend_package.png) no-repeat right top 15px/auto calc(100% - 15px);
}
.modal__container__recipe.modal__container__blend h5 {
  color: var(--color-blend);
}
.modal__container__recipe.modal__container__blend .midashi {
  border-bottom-color: var(--color-blend);
}
.modal__container__recipe.modal__container__blend .note span {
  color: var(--color-blend);
}
.modal__container__recipe.modal__container__blend .ingredients ul li span.own_product {
  color: var(--color-blend);
}
.modal__container__recipe.modal__container__blend .directions ul li::before {
  background-color: var(--color-blend);
  opacity: 0.6;
}
.modal__container__recipe.modal__container__whip h4 {
  background-color: var(--color-whip);
}
.modal__container__recipe.modal__container__whip h4::before {
  background: transparent url(/business/ll-whipseries/img/whip_package.png) no-repeat right top 15px/auto calc(100% - 15px);
}
.modal__container__recipe.modal__container__whip h5 {
  color: var(--color-whip);
}
.modal__container__recipe.modal__container__whip .midashi {
  border-bottom-color: var(--color-whip);
}
.modal__container__recipe.modal__container__whip .note span {
  color: var(--color-whip);
}
.modal__container__recipe.modal__container__whip .ingredients ul li span.own_product {
  color: var(--color-whip);
}
.modal__container__recipe.modal__container__whip .directions ul li::before {
  background-color: var(--color-whip);
  opacity: 0.6;
}
@media print, screen and (min-width: 768px) {
  .modal__container__recipe > .inner {
    border-radius: 50px;
  }
  .modal__container__recipe > .inner .padding {
    padding-inline: 50px;
  }
  .modal__container__recipe h4 {
    padding-left: 127px;
  }
  .modal__container__recipe h4::before {
    width: 100px;
    aspect-ratio: 1/1.8;
  }
  .modal__container__recipe h5 {
    font-size: clamp(3.2rem, 2.765rem + 1.12vw, 4rem);
    padding-left: 70px;
  }
  .modal__container__recipe h5 + p {
    padding-left: 70px;
  }
  .modal__container__recipe h5 + p + p {
    padding-left: 70px;
  }
  .modal__container__recipe .column {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(35px, 27.248px + 2.07vw, 50px);
  }
  .modal__container__recipe .column.column_photo {
    grid-template-columns: 1.07fr 1fr;
    gap: clamp(21px, 16.352px + 1.24vw, 30px);
  }
  .modal__container__recipe .column.column_photo .column_right {
    margin-top: 0;
  }
  .modal__container__recipe .directions {
    margin-top: 0;
  }
}

.anim_slide_up {
  opacity: 0;
}
.anim_slide_up.show {
  animation-name: anim_slide_up;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_up {
  from {
    transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_slide_right {
  opacity: 0;
}
.anim_slide_right.show {
  animation-name: anim_slide_right;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_right {
  from {
    transform: translate3d(-100px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_slide_left {
  opacity: 0;
}
.anim_slide_left.show {
  animation-name: anim_slide_left;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_slide_left {
  from {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.anim_fade_in {
  opacity: 0;
}
.anim_fade_in.show {
  animation-name: anim_fade_in;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.39, 0, 0.25, 1);
  animation-fill-mode: forwards;
}

@keyframes anim_fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim_delay_01s {
  animation-delay: 0.1s !important;
}

.anim_delay_02s {
  animation-delay: 0.2s !important;
}

.anim_delay_03s {
  animation-delay: 0.3s !important;
}

.anim_delay_04s {
  animation-delay: 0.4s !important;
}

.anim_delay_05s {
  animation-delay: 0.5s !important;
}

.anim_delay_1s {
  animation-delay: 1s !important;
}

.anim_delay_15s {
  animation-delay: 1.5s !important;
}

.anim_delay_2s {
  animation-delay: 2s !important;
}

.anim_delay_3s {
  animation-delay: 3s !important;
}

.anim_delay_4s {
  animation-delay: 4s !important;
}

.anim_delay_5s {
  animation-delay: 5s !important;
}

.anim_duration_15s {
  animation-duration: 1.5s !important;
}

.anim_duration_2s {
  animation-duration: 2s !important;
}

.anim_duration_3s {
  animation-duration: 3s !important;
}

.anim_duration_4s {
  animation-duration: 4s !important;
}

.anim_duration_5s {
  animation-duration: 5s !important;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

/*# sourceMappingURL=style.css.map */
