@charset "UTF-8";
/* Margin Calc Set
===============================*/
@keyframes is-open-pc {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
  }
}
/* Base Style
===============================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1535px) {
  html {
    font-size: 50%;
  }
}
@media screen and (max-width: 1326px) {
  html {
    font-size: 44%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

/* Visible Style
===============================*/
@media screen and (max-width: 800px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 1110px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
}

.sp-600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-600 {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .pc-600 {
    display: none;
  }
}

.sp-360 {
  display: none;
}
@media screen and (max-width: 365px) {
  .sp-360 {
    display: block;
  }
}

#footer-link-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  #footer-link-sp {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  #footer-link-pc {
    display: none;
  }
}

.nav-sp {
  display: none;
}
@media screen and (max-width: 1110px) {
  .nav-sp {
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .nav-pc {
    display: none;
  }
}

/* Header Section 
===============================*/
.header-body {
  position: fixed;
  width: 100%;
  border-radius: 0 0 100px 100px;
  background-color: #ffffff;
  box-shadow: 0px 2px 1px rgba(96, 53, 44, 0.05);
  z-index: 20000;
  transition: 0.15s;
}
@media screen and (max-width: 800px) {
  .header-body {
    border-radius: 0 0 40px 40px;
  }
}
.header-body div.header-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: 0 auto;
  padding-top: 22px;
  padding-bottom: 22px;
  z-index: 19000;
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 82%;
  }
}
@media screen and (max-width: 1535px) {
  .header-body div.header-wide .header-logo {
    width: 134px;
  }
  .header-body div.header-wide .header-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .header-logo {
    width: 114px;
  }
}
@media screen and (max-width: 600px) {
  .header-body div.header-wide .header-logo {
    width: 90px;
  }
}
.header-body div.header-wide .nav-list-main {
  display: flex;
  justify-content: space-between;
  width: 62%;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-list-main {
    width: 49%;
  }
}
.header-body div.header-wide .nav-list-main li {
  font-size: 1.7rem;
  font-weight: 900;
  color: #3b201b;
}
@media screen and (max-width: 800px) {
  .header-body div.header-wide .nav-list-main li {
    font-size: 1rem;
  }
}
.header-body div.header-wide .nav-button div {
  width: 25px;
  height: 3px;
  border-radius: 3px;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div {
    width: 19px;
  }
}
.header-body div.header-wide .nav-button div:hover {
  cursor: pointer;
}
.header-body div.header-wide .nav-button div:first-child {
  background-color: #008132;
  margin-bottom: 7.5px;
  transition: 0.3s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:first-child {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(2) {
  background-color: #c8000f;
  margin-bottom: 7.5px;
  transition: 0.2s;
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-button div:nth-child(2) {
    margin-bottom: 5px;
  }
}
.header-body div.header-wide .nav-button div:nth-child(3) {
  background-color: #ffc400;
  transition: 0.2s;
}
.header-body div.header-wide .nav-active:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:first-child {
    transform: rotate(45deg) translate(7px, 7px);
  }
}
.header-body div.header-wide .nav-active:nth-child(2) {
  opacity: 0;
}
.header-body div.header-wide .nav-active:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media screen and (max-width: 1110px) {
  .header-body div.header-wide .nav-active:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

.header-body-open {
  border-radius: 0;
  transition: 0.15s;
  z-index: 20000;
}

.nav-open {
  position: absolute;
  position: fixed;
  top: -100px;
  width: 100%;
  height: 73px;
  background-color: #ffc400;
  z-index: 5000;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open {
    height: 66px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open {
    overflow-y: scroll;
  }
}
.nav-open .header-curve {
  width: 100vw;
}
@media screen and (max-width: 1110px) {
  .nav-open .header-curve {
    display: none;
  }
}
.nav-open .header-curve img {
  width: 100%;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
    padding: 0 10% 0 10%;
  }
}
.nav-open .nav-container-sp .common-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  padding: 47px 22px 0 22px;
  margin: 0 auto 0 auto;
}
@media screen and (max-width: 1535px) {
  .nav-open .nav-container-sp .common-menu {
    max-width: 1000px;
    padding-top: 36px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu {
    display: block;
    width: auto;
    padding: 0;
    margin: 0;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    margin-bottom: 24px;
    font-size: 24px;
    color: #3b201b;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 21px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect {
    font-size: 19px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
  margin-bottom: 20px;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .nav-open .nav-container-sp .common-menu .menu-effect.menu-effect-small {
    font-size: 14px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
  width: auto;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .header-menu-img {
    display: block;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list {
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li {
  padding-right: 11px;
  padding-left: 11px;
  border-right: 1px solid #8b675f;
}
.nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 1110px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .nav-open .nav-container-sp .common-menu .menu-effect .lang_list li:first-child {
    font-size: 11px;
  }
}
.nav-open .nav-container-sp .common-menu .menu-effect #menu-effect-last {
  margin-bottom: 28px;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns {
  display: flex;
}
.nav-open .nav-container-sp .common-menu .menu-effect #header_sns li {
  padding-left: 10px;
}
@media screen and (max-width: 1110px) {
  .nav-open #header_sns_sp {
    display: inline;
    animation: is-open-pc 0.47s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
    opacity: 0;
  }
  .nav-open #header_sns_sp li {
    margin-bottom: 22px;
  }
  .nav-open #header_sns_sp img {
    width: 32px;
  }
}
.nav-open .pc-effect-active {
  animation: is-open-pc 0.47s ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}
.nav-open .pc-effect-active:nth-child(2) {
  animation-delay: 0.2s;
}
.nav-open .pc-effect-active:nth-child(3) {
  animation-delay: 0.3s;
}
.nav-open .pc-effect-active:nth-child(4) {
  animation-delay: 0.4s;
}
.nav-open .pc-effect-active:nth-child(5) {
  animation-delay: 0.5s;
}
.nav-open .pc-effect-active:nth-child(6) {
  animation-delay: 0.6s;
}
.nav-open .pc-effect-active:nth-child(n+7) {
  animation-delay: 0.7s;
}
@media screen and (max-width: 1110px) {
  .nav-open .pc-effect-active:nth-child(6) {
    animation-delay: 0s;
  }
  .nav-open .pc-effect-active:nth-child(7) {
    animation-delay: 0.1s;
  }
  .nav-open .pc-effect-active:nth-child(8) {
    animation-delay: 0.2s;
  }
  .nav-open .pc-effect-active:nth-child(9) {
    animation-delay: 0.3s;
  }
  .nav-open .pc-effect-active:nth-child(10) {
    animation-delay: 0.4s;
  }
  .nav-open .pc-effect-active:nth-child(11) {
    animation-delay: 0.5s;
  }
  .nav-open .pc-effect-active:nth-child(12) {
    animation-delay: 0.6s;
  }
  .nav-open .pc-effect-active:nth-child(13) {
    animation-delay: 0.7s;
  }
  .nav-open .pc-effect-active:nth-child(n+14) {
    animation-delay: 0.8s;
  }
}

.nav-open-active {
  top: 100px;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .nav-open-active {
    top: 70px;
  }
}
@media screen and (max-width: 1110px) {
  .nav-open-active {
    top: 0px;
    width: 100vw;
    height: 100vh;
  }
}

/* Footer Section 
================================*/
footer {
  z-index: 500;
}

.app-link {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #c8000f;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .app-link {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
.app-link img {
  max-width: 956px;
}
@media screen and (max-width: 1535px) {
  .app-link img {
    max-width: 878px;
  }
}
@media screen and (max-width: 1110px) {
  .app-link img {
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) {
  .app-link img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .app-link img {
    max-width: 88%;
  }
}

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2026_potato-ichigomilk/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2026_potato-ichigomilk/images/footer_illust_sp.png);
    padding-top: 35px;
    padding-bottom: 110px;
    padding-left: 8.1%;
    padding-right: 8.1%;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav {
    padding-bottom: 90px;
  }
}
.footer-nav ul.footer-link {
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #fff;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1110px) {
  .footer-nav ul.footer-link {
    max-width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link {
    font-size: 1.1rem;
  }
}
.footer-nav ul.footer-link li {
  width: 25%;
  margin-bottom: 21px;
}
.footer-nav ul.footer-link li:nth-child(4n+1) {
  width: 24%;
  padding-left: 1%;
}
.footer-nav ul.footer-link li:nth-child(4n+2) {
  width: 24%;
}
.footer-nav ul.footer-link li:nth-child(4n+3) {
  width: 27%;
}
.footer-nav ul.footer-link li:nth-child(4n+4) {
  width: 23.7%;
}
.footer-nav ul.footer-link li:nth-child(-n+4) {
  margin-bottom: 22px;
}
@media screen and (max-width: 800px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 16px;
    line-height: 1.7;
  }
  .footer-nav ul.footer-link li:nth-child(4n+1) {
    width: 50%;
    padding-right: 10%;
    padding-left: 0;
  }
  .footer-nav ul.footer-link li:nth-child(4n+2) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+3) {
    width: 50%;
    padding-right: 10%;
  }
  .footer-nav ul.footer-link li:nth-child(4n+4) {
    width: 46%;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul.footer-link li {
    margin-bottom: 15px;
  }
  .footer-nav ul.footer-link li:nth-child(-n+4) {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav #footer-link-sp {
    display: flex;
  }
}
.footer-nav .footer-sns {
  display: flex;
  justify-content: space-between;
  width: 206px;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 600px) {
  .footer-nav .footer-sns {
    display: flex;
    justify-content: space-between;
    width: 167px;
    margin-bottom: 20px;
  }
}
.footer-nav .copy {
  font-size: 1.1rem;
  color: #a38680;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-nav .copy {
    font-size: 1rem;
  }
}

/* OP STYLE
===============================*/
/* COLUMN STYLE
===============================*/
.column {
  position: relative;
  display: flex;
  overflow: visible;
}

.center {
  position: relative;
  overflow: hidden;
  width: 600px;
  z-index: 50;
  filter: drop-shadow(0 0 10px #FFFFFF);
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

.leftside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background: #ffc828;
  background-size: 100% 100%;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}
.leftside .left-bg {
  width: 80%;
  left: 0;
  bottom: 7%;
}
.leftside .left-potato {
  width: 80%;
  top: 17%;
  left: 15%;
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background: #ff463c;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}
.rightside .right-bg {
  width: 59.5%;
  right: 0;
  bottom: 12%;
}
.rightside .right-ichigo {
  width: 41.8%;
  top: 14%;
  right: 45.5%;
}
.rightside .right-anker {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  right: 0;
  width: 65%;
  background-color: #fff1d0;
  padding: 3% 3% 2.5% 7%;
  border-top-left-radius: 35px;
}
.rightside .right-anker .right-anker-01 {
  width: 35%;
}
.rightside .right-anker .right-anker-02 {
  width: 41%;
}
.rightside .right-anker .right-anker-03 {
  width: 12%;
}

.sec-mv .mv-title {
  width: 100%;
  top: 14.3%;
  left: 0;
  z-index: 2;
}
.sec-mv .mv-title h1 {
  width: 92.5%;
  margin: 0 auto;
}
.sec-mv .mv-title-hull {
  width: 6.8%;
  top: 12%;
  left: 7.5%;
}
.sec-mv .mv-title-tomato_01 {
  width: 10.8%;
  top: 36.5%;
  right: 6%;
}
.sec-mv .mv-title-tomato_02 {
  width: 9.2%;
  top: 52%;
  left: 32.3%;
}
.sec-mv .mv-berg-01 {
  width: 18.4%;
  top: 10.5%;
  right: 0;
}
.sec-mv .mv-berg-02 {
  width: 27.73%;
  top: 34.2%;
  left: -8%;
}
.sec-mv .mv-tomato-01 {
  width: 18.4%;
  top: 8.2%;
  left: -4.5%;
}
.sec-mv .mv-tomato-02 {
  width: 26.13%;
  top: 32%;
  right: -8.5%;
}
.sec-mv .mv-tomato-03 {
  width: 44.26%;
  top: 64.8%;
  left: -11.5%;
}
.sec-mv .mv-bubble-01 {
  width: 16%;
  top: 8.5%;
  left: 18.2%;
}
.sec-mv .mv-bubble-02 {
  width: 10.66%;
  top: 8.5%;
  right: 16.8%;
}
.sec-mv .mv-bubble-03 {
  width: 12.53%;
  top: 27%;
  left: 1.5%;
}
.sec-mv .mv-bubble-04 {
  width: 12.53%;
  top: 42.3%;
  right: -4%;
}
.sec-mv .mv-bubble-05 {
  width: 15.46%;
  top: 70.3%;
  right: 1%;
}
.sec-mv .mv-bubble-06 {
  width: 22.4%;
  top: 82.6%;
  left: 1%;
}
.sec-mv .mv-steam {
  width: 95.2%;
  top: -11.5%;
  right: 0;
  z-index: 1;
}
.sec-mv .mv-bg {
  width: 100%;
}

.sec-intro .intro-p-abs-01 {
  width: 25.6%;
  bottom: 44%;
  left: 50%;
}
.sec-intro .intro-p-abs-02 {
  width: 21.3%;
  bottom: 37.65%;
  left: 38.5%;
}
.sec-intro .leaf-00 {
  width: 26.5%;
  top: -12.5%;
  left: 0;
}
.sec-intro .leaf-01 {
  width: 23.7%;
  top: -3%;
  right: 0;
}
.sec-intro .leaf-02 {
  width: 48.26%;
  top: 61.8%;
  left: 0;
}
.sec-intro .leaf-03 {
  width: 32%;
  top: 71.5%;
  right: 0;
}

.sec-navi .leaf-04 {
  width: 23.2%;
  top: 36.5%;
  left: 0;
}
.sec-navi .leaf-05 {
  width: 24%;
  top: 48%;
  right: 0;
}
.sec-navi .leaf-06 {
  width: 24%;
  top: 79%;
  left: 0;
}
.sec-navi .leaf-07 {
  width: 100%;
  bottom: -15.5%;
  left: 0;
}

.menu-grass-tomato-01 {
  width: 10.4%;
  top: 15%;
  left: 0;
}

.menu-grass-tomato-02 {
  width: 8.26%;
  top: 24.5%;
  left: 15.5%;
}

.menu-grass-tomato-03 {
  width: 9.6%;
  top: 39%;
  left: 27%;
}

.menu-grass-tomato-04 {
  width: 9.06%;
  top: 28%;
  left: 38%;
}

.menu-grass-tomato-05 {
  width: 8.53%;
  top: 42%;
  left: 50%;
}

.menu-grass-tomato-06 {
  width: 7.46%;
  top: 26%;
  left: 58%;
}

.menu-grass-tomato-07 {
  width: 10.13%;
  top: 39%;
  left: 67%;
}

.menu-grass-tomato-08 {
  width: 10.66%;
  top: 20%;
  left: 80%;
}

.menu-grass-tomato-09 {
  width: 9.06%;
  top: 11%;
  left: 93.5%;
}

.sec-sauceA .sauceA-h2 .sauceA-h2-abs-01 {
  width: 9.8%;
  top: 45%;
  left: 10.5%;
}
.sec-sauceA .sauceA-h2 .sauceA-h2-abs-02 {
  width: 9.8%;
  top: 54%;
  left: 79.6%;
}
.sec-sauceA .sauceA-gif {
  width: 110%;
  top: -12%;
  left: -5%;
}
.sec-sauceA .videoA-mask {
  top: 3%;
  left: 7%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
          mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceA .videoB-mask {
  top: 3%;
  left: -9%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
          mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceA .videoA-h3 {
  width: 100%;
  bottom: 8.5%;
  left: 0;
}
.sec-sauceA .videoA-h3 .videoA-h3-abs-01 {
  width: 12.8%;
  left: 12%;
  bottom: 0;
}
.sec-sauceA .videoA-h3 .videoA-h3-abs-02 {
  width: 7.7%;
  bottom: 38%;
  right: 3.5%;
}
.sec-sauceA .videoB-h3 {
  width: 100%;
  bottom: 10.5%;
  left: 0;
}
.sec-sauceA .videoB-h3 .videoB-h3-abs-01 {
  width: 8%;
  left: 4.5%;
  bottom: 18%;
}
.sec-sauceA .videoB-h3 .videoB-h3-abs-02 {
  width: 11.7%;
  bottom: 50%;
  right: 15.5%;
}
.sec-sauceA .videoA-heta {
  width: 28.8%;
  top: -10%;
  right: 25.2%;
}
.sec-sauceA .videoB-heta {
  width: 28.96%;
  top: -9%;
  left: 37.5%;
}

.sec-sauceB .sauceB-h2 .sauceB-h2-abs-01 {
  width: 10%;
  top: 35.5%;
  left: 6%;
}
.sec-sauceB .sauceB-h2 .sauceB-h2-abs-02 {
  width: 9.3%;
  top: 18%;
  left: 82.6%;
}
.sec-sauceB .sauceB-gif {
  width: 123%;
  top: -26%;
  left: -11%;
}
.sec-sauceB .videoC-mask {
  top: 3%;
  left: 7%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
          mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceB .videoD-mask {
  top: 3%;
  left: -9%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
          mask-image: url(/lp/2026_potato-ichigomilk/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceB .videoC-h3 {
  width: 100%;
  bottom: 8.9%;
  left: 0;
}
.sec-sauceB .videoC-h3 .videoC-h3-abs-01 {
  width: 11.8%;
  left: 12%;
  bottom: 0;
}
.sec-sauceB .videoC-h3 .videoC-h3-abs-02 {
  width: 7.7%;
  bottom: 18%;
  right: 3%;
}
.sec-sauceB .videoC-heta {
  width: 28.8%;
  top: -10%;
  right: 25.2%;
}
.sec-sauceB .videoD-heta {
  width: 28.96%;
  top: -9%;
  left: 37.5%;
}
.sec-sauceB .videoD-h3 {
  width: 100%;
  bottom: 8.5%;
  left: 0;
}
.sec-sauceB .videoD-h3 .videoD-h3-abs-01 {
  width: 9.8%;
  left: 5%;
  bottom: 2%;
}
.sec-sauceB .videoD-h3 .videoD-h3-abs-02 {
  width: 13%;
  bottom: 18%;
  right: 17.5%;
}

.sec-menuD .leaf-to {
  width: 100%;
  bottom: -26.5%;
  left: 0;
}
@media screen and (max-width: 600px) {
  .sec-menuD .leaf-to {
    bottom: -22%;
  }
}

.sec-takeout .leaf-08 {
  width: 29.3%;
  bottom: 0%;
  left: 0;
}
.sec-takeout .leaf-09 {
  width: 29.3%;
  bottom: 0.5%;
  right: 0;
}
.sec-takeout .takeout-tomato-01 {
  width: 25%;
  top: 10%;
  left: -5%;
}
.sec-takeout .takeout-tomato-02 {
  width: 32%;
  top: 18%;
  right: -8%;
}
.sec-takeout .takeout-tomato-03 {
  width: 17.8%;
  top: 33.5%;
  left: 0;
}
.sec-takeout .takeout-tomato-04 {
  width: 18.7%;
  top: 48%;
  right: 1%;
}
.sec-takeout .takeout-tomato-05 {
  width: 30%;
  top: 58%;
  left: -5%;
}
.sec-takeout .takeout-tomato-06 {
  width: 23.7%;
  top: 65%;
  right: 0;
}
.sec-takeout .takeout-tomato-07 {
  width: 25.4%;
  top: 81%;
  left: 0;
}

.column-heta {
  width: 69.3%;
  top: -12%;
  left: 15%;
}

.videoA-mov {
  width: 155%;
  transform: translate(-35%, 0%);
}

.videoB-mov {
  width: 155%;
  transform: translate(0%, 0);
}

.videoC-mov {
  width: 150%;
  transform: translate(-10%, 0%);
}

.videoD-mov {
  width: 150%;
  transform: translate(-15%, 0%);
}

/* Margin Calc Set
===============================*/
/* 定番 TRANSITION-Y
================================*/
.opacity-active {
  opacity: 1;
  transition: 75s ease-in-out;
}

.trans-y-small {
  opacity: 0;
  transform: translateY(3%);
}

.trans-y-small-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.5s ease-in-out;
}

.trans-y {
  opacity: 0;
  transform: translateY(5%);
}

.trans-y-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.5s ease-in-out;
}

.trans-y-large {
  opacity: 0;
  transform: translateY(8%);
}

.trans-y-large-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.5s ease-in-out;
}

/* 定番 KEYFRAMES
================================*/
@keyframes slide-in-01 {
  0% {
    transform: translateX(-125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-in-02 {
  0% {
    transform: translateX(125%);
    opacity: 1;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.slide-in-wrap {
  overflow: hidden;
  opacity: 0;
}

.slide-in-wrap-active {
  animation: slide-in-01 0.75s ease-out forwards;
}

.slide-in-active {
  animation: slide-in-02 0.75s ease-out forwards;
}

@keyframes flash-step {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.flash-step {
  opacity: 0;
}

.flash-step-active {
  animation: flash-step 1s steps(1) infinite 0.8s;
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.flash {
  opacity: 0;
  animation: flash 1.5s ease-in-out infinite;
}

.flash-koma {
  animation: flash-koma 2s steps(1) infinite;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down {
  animation: up-down 2.5s ease-in-out alternate infinite;
}

@keyframes up-down-low {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.up-down-low {
  animation: up-down-low 2.5s ease-in-out alternate infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
@keyframes puru-rotate {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(0deg);
  }
}
@keyframes pon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes yuge {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.6);
  }
  100% {
    opacity: 0.7;
    filter: blur(0px);
    transform: scale(1);
  }
}
@keyframes yugeAlt {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.9);
  }
  70% {
    opacity: 0.5;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(0px);
    transform: scale(1.5);
  }
}
@keyframes boyoyon {
  0% {
    transform: scale(0.6, 1) rotate(20deg);
    opacity: 0;
  }
  20% {
    transform: scale(1.1);
    opacity: 1;
  }
  35% {
    transform: scale(0.92);
  }
  50% {
    transform: scale(1.04) rotate(0);
  }
  60% {
    transform: scale(0.99);
  }
  85% {
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.boyoyon {
  opacity: 0;
}

.boyoyon-active {
  animation: boyoyon 1.25s ease-out forwards;
}

@keyframes ban {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.pon {
  opacity: 0;
}

.pon-active {
  animation: ban 0.5s ease-in-out forwards;
}

/* スタンプ
================================*/
.stamp {
  filter: blur(15px);
  transform: scale(1.4);
  opacity: 0;
  will-change: filter;
}

.stamp-active {
  filter: blur(0px);
  opacity: 1;
  transform: scale(1);
  transition: 1s ease-in-out;
}

/*  MV
=================================*/
.mv-h1 {
  opacity: 0;
}

.mv-h1-active {
  animation: boyoyon 1.25s ease-out forwards;
}

.mv-h2 {
  opacity: 0;
}

.mv-h2-active {
  animation: boyoyon 1.25s ease-out forwards;
}

.mv-img-01 {
  opacity: 0;
  transform: translateX(-50%);
}

.mv-img-01-active {
  opacity: 1;
  transform: translateX(0%);
  transition: 0.3s ease-in-out 0.2s;
}

.mv-img-02 {
  opacity: 0;
  transform: translateX(70%);
}

.mv-img-02-active {
  opacity: 1;
  transform: translateX(0%);
  transition: 0.3s ease-in-out 0.2s;
}

/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
img {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
}

.abs-def {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

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

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

.block {
  display: block;
}

.z-10 {
  z-index: 10;
}

/* Delay Set
===============================*/
.delay-005 {
  transition-delay: 0.05s;
  animation-delay: 0.05s;
}

.delay-01 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-015 {
  transition-delay: 0.15s;
  animation-delay: 0.15s;
}

.delay-02 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-025 {
  transition-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-03 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-035 {
  transition-delay: 0.35s;
  animation-delay: 0.35s;
}

.delay-04 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-045 {
  transition-delay: 0.45s;
  animation-delay: 0.45s;
}

.delay-05 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-055 {
  transition-delay: 0.55s;
  animation-delay: 0.55s;
}

.delay-06 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-07 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay-08 {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-10 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.delay-12 {
  transition-delay: 1.2s;
  animation-delay: 1.2s;
}

/* 共通CSS
===============================*/
body {
  font-feature-settings: palt;
}

/* 背景色設定
===============================*/
.sec-bgA {
  background-color: #fff1d0;
  overflow-x: clip;
}

/* メインレイアウト
===============================*/
.sec-mv {
  height: 1032px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-mv {
    height: calc(1032px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mv {
    height: calc(1032 * 0.625 / 375 * 100vw);
  }
}
.sec-mv .mv-h1 {
  width: 100%;
  top: 12%;
  left: 0;
}
.sec-mv .mv-h2 {
  width: 100%;
  top: 73%;
  left: 0;
}
.sec-mv .mv-img-01 {
  width: 83.4%;
  top: 34%;
  left: 0;
}
.sec-mv .mv-img-02 {
  width: 40%;
  top: 45.5%;
  right: 0;
}

.sec-intro .intro-h2-wrap {
  background-color: #eddbc1;
}
.sec-intro .intro-h2-wrap .intro-h2 {
  margin-top: 60px;
  margin-bottom: 68px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-h2-wrap .intro-h2 {
    margin-top: calc(60px * 0.75);
    margin-bottom: calc(68px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-h2-wrap .intro-h2 {
    margin-top: calc(60 * 0.625 / 375 * 100vw);
    margin-bottom: calc(68 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-date {
  padding-top: 38px;
  padding-bottom: 131px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-date {
    padding-top: calc(38px * 0.75);
    padding-bottom: calc(131px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-date {
    padding-top: calc(38 * 0.625 / 375 * 100vw);
    padding-bottom: calc(131 * 0.625 / 375 * 100vw);
  }
}

.sec-potato {
  overflow-x: clip;
}
.sec-potato .potato-bg .potato-01 {
  width: 36.8%;
  top: -20%;
  left: 15%;
}
.sec-potato .potato-bg .potato-02 {
  width: 27.7%;
  top: -12%;
  left: 62%;
}
.sec-potato .potato-bg .potato-03 {
  width: 36.8%;
  top: 44%;
  left: 0;
}
.sec-potato .potato-menu {
  margin-top: -175px;
  padding-bottom: 144px;
}
@media screen and (max-width: 1535px) {
  .sec-potato .potato-menu {
    margin-top: calc(-175px * 0.75);
    padding-bottom: calc(144px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-potato .potato-menu {
    margin-top: calc(-175 * 0.625 / 375 * 100vw);
    padding-bottom: calc(144 * 0.625 / 375 * 100vw);
  }
}
.sec-potato .potato-menu .potato-dot-01 {
  width: 8%;
  top: 28%;
  left: 5.5%;
}
.sec-potato .potato-menu .potato-dot-02 {
  width: 8%;
  top: 43%;
  right: 10%;
}
.sec-potato .potato-menu .potato-dot-03 {
  width: 9%;
  top: 78%;
  left: 12.5%;
}

.sec-ichigo {
  overflow-x: clip;
}
.sec-ichigo .ichigo-menu {
  margin-top: -160px;
  padding-bottom: 70px;
}
@media screen and (max-width: 1535px) {
  .sec-ichigo .ichigo-menu {
    margin-top: calc(-160px * 0.75);
    padding-bottom: calc(70px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-ichigo .ichigo-menu {
    margin-top: calc(-160 * 0.625 / 375 * 100vw);
    padding-bottom: calc(70 * 0.625 / 375 * 100vw);
  }
}
.sec-ichigo .ichigo-menu .ichigo-dot-01 {
  width: 8%;
  top: 22%;
  left: 20.5%;
}
.sec-ichigo .ichigo-menu .ichigo-dot-02 {
  width: 8%;
  top: 7%;
  right: 17%;
}
.sec-ichigo .ichigo-menu .ichigo-dot-03 {
  width: 9%;
  top: 41%;
  right: 19.5%;
}
.sec-ichigo .ichigo-caption {
  width: 87%;
  margin: 0 auto;
  color: #562400;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.75;
  padding-bottom: 86px;
}
@media screen and (max-width: 1535px) {
  .sec-ichigo .ichigo-caption {
    font-size: calc(15px * 0.75);
    padding-bottom: calc(86px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-ichigo .ichigo-caption {
    font-size: calc(15 * 0.625 / 375 * 100vw);
    padding-bottom: calc(86 * 0.625 / 375 * 100vw);
  }
}
.sec-ichigo .ichigo-01 {
  width: 20.8%;
  top: -16%;
  left: 65%;
}
.sec-ichigo .ichigo-02 {
  width: 20.6%;
  top: -5%;
  left: 22%;
}
.sec-ichigo .ichigo-03 {
  width: 19.8%;
  top: 47%;
  left: 7%;
}

.sec-pocket {
  padding-bottom: 80px;
}
@media screen and (max-width: 1535px) {
  .sec-pocket {
    padding-bottom: calc(80px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-pocket {
    padding-bottom: calc(80 * 0.625 / 375 * 100vw);
  }
}

.sec-app {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #ff463c;
}
@media screen and (max-width: 1535px) {
  .sec-app {
    padding-top: calc(60px * 0.75);
    padding-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-app {
    padding-top: calc(60 * 0.625 / 375 * 100vw);
    padding-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-app .info-app-wrap {
  margin-bottom: 48px;
}
@media screen and (max-width: 1535px) {
  .sec-app .info-app-wrap {
    margin-bottom: calc(48px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-app .info-app-wrap {
    margin-bottom: calc(48 * 0.625 / 375 * 100vw);
  }
}
.sec-app .info-app-wrap .app-01 {
  width: 48%;
  top: 40%;
  left: 26.5%;
}
.sec-app .info-app-wrap .app-02 {
  width: 48%;
  top: 67%;
  left: 26.5%;
}
.sec-app .info-line {
  margin-bottom: 78px;
}
@media screen and (max-width: 1535px) {
  .sec-app .info-line {
    margin-bottom: calc(78px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-app .info-line {
    margin-bottom: calc(78 * 0.625 / 375 * 100vw);
  }
}
.sec-app .intro-edge {
  bottom: 0;
  left: 0;
}

.sec-info {
  padding-top: 50px;
  padding-bottom: 78px;
  background-color: #fff1d0;
}
@media screen and (max-width: 1535px) {
  .sec-info {
    padding-top: calc(50px * 0.75);
    padding-bottom: calc(78px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-info {
    padding-top: calc(50 * 0.625 / 375 * 100vw);
    padding-bottom: calc(78 * 0.625 / 375 * 100vw);
  }
}
.sec-info .contents-potato {
  width: 100%;
  top: 34.5%;
  left: 0;
}
.sec-info .contents-potato .contents-potato-abs-01 {
  width: 20.8%;
  top: 15.5%;
  left: 2.5%;
}
.sec-info .contents-potato .contents-potato-abs-02 {
  width: 18%;
  top: 18.5%;
  left: 76.5%;
}
.sec-info .contents-ichigo {
  width: 100%;
  top: 65.5%;
  left: 0;
}
.sec-info .contents-ichigo .contents-ichigo-abs-01 {
  width: 20.8%;
  top: 16%;
  left: 5%;
}
.sec-info .contents-ichigo .contents-ichigo-abs-02 {
  width: 18%;
  top: 18.5%;
  left: 76.5%;
}

.sec-caption {
  width: 100%;
  background-color: #fff1d0;
  padding-bottom: 70px;
}
@media screen and (max-width: 1535px) {
  .sec-caption {
    padding-bottom: calc(70px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-caption {
    padding-bottom: calc(70 * 0.625 / 375 * 100vw);
  }
}
.sec-caption .caption {
  width: 85%;
  margin: 0 auto;
  color: #562400;
}
.sec-caption .caption .caption-li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 1535px) {
  .sec-caption .caption .caption-li {
    font-size: calc(15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-caption .caption .caption-li {
    font-size: calc(15 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */