/* 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/2025_oimodayo/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/2025_oimodayo/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;
  }
}

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

.center {
  position: relative;
  overflow: visible;
  width: 600px;
  z-index: 50;
}
@media screen and (max-width: 1535px) {
  .center {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
}

.leftside {
  width: calc(50% - 300px);
  height: 100vh;
  background: url(/lp/2025_oimodayo/images/pc_bg.jpg) no-repeat left center;
  background-size: cover;
  position: sticky;
  top: 0;
  left: 0;
  overflow: clip;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}

.rightside {
  width: calc(50% - 300px);
  height: 100vh;
  background: url(/lp/2025_oimodayo/images/pc_bg.jpg) no-repeat right center;
  background-size: cover;
  position: sticky;
  top: 0;
  right: 0;
  overflow: clip;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}

/* Media Query
===============================*/
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

main {
  display: flex;
}

.center img {
  width: 100%;
}

.loading {
  width: 602px;
  height: calc(100vh - 100px);
  margin: auto;
  background: url(/lp/2025_oimodayo/images/loading_bg.jpg) no-repeat center center;
  background-size: cover;
  position: fixed;
  inset: 0;
  top: 100px;
  z-index: 51;
}
@media screen and (max-width: 1535px) {
  .loading {
    width: 450px;
    height: calc(100vh - 71px);
    top: 71px;
  }
}
@media screen and (max-width: 1110px) {
  .loading {
    height: calc(100vh - 65px);
    top: 65px;
  }
}
@media screen and (max-width: 600px) {
  .loading {
    width: 100%;
    height: calc(100vh - 59px);
    top: 59px;
  }
}
.loading .loading__body {
  display: flex;
  align-items: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: transform 1s, opacity 1s;
  transition-delay: 5.5s;
}
.loading .loading__body .loading__swpotato {
  transform: scale(0.8);
  opacity: 0;
  transition: transform cubic-bezier(0.5, 1, 0.89, 1) 0.8s, opacity cubic-bezier(0.5, 1, 0.89, 1) 0.8s;
  transition-delay: 0.3s;
}
.loading .loading__text {
  width: 100%;
  z-index: 1;
}
.loading .loading__text .abs {
  top: 0;
  left: 0;
}
.loading .loading__text_before {
  opacity: 0;
}
.loading .loading__text_smoke {
  opacity: 0;
  transform: translateY(5%);
  transition: transform 0.6s, opacity 0.6s;
  transition-delay: 1.8s;
}
.loading .loading__text_smoke:nth-child(5) {
  transition-delay: 2.1s;
}
.loading .loading__text_after,
.loading .loading__text_after2,
.loading .loading__text_after3 {
  opacity: 0;
}
.loading.is-active .loading__body {
  transform: translateY(-50%) scale(1.1);
  opacity: 0;
}
.loading.is-active .loading__body .loading__swpotato {
  transform: scale(1);
  opacity: 1;
}
.loading.is-active .loading__text_before {
  animation: loading__text_before 0.3s linear forwards;
}
.loading.is-active .loading__text_before:nth-child(1) {
  animation-delay: 1.15s;
}
.loading.is-active .loading__text_before:nth-child(2) {
  animation-delay: 1.3s;
}
.loading.is-active .loading__text_before:nth-child(3) {
  animation-delay: 1.45s;
}
.loading.is-active .loading__text_before:nth-child(4) {
  animation-delay: 1.6s;
}
.loading.is-active .loading__text_before:nth-child(5) {
  animation-delay: 1.75s;
}
.loading.is-active .loading__text_before:nth-child(6) {
  animation-delay: 1.9s;
}
.loading.is-active .loading__text_before:nth-child(7) {
  animation-delay: 2.05s;
}
.loading.is-active .loading__text_before:nth-child(8) {
  animation-delay: 2.2s;
}
.loading.is-active .loading__text_before:nth-child(9) {
  animation-delay: 2.35s;
}
.loading.is-active .loading__text_before:nth-child(10) {
  animation-delay: 2.5s;
}
.loading.is-active .loading__text_before:nth-child(11) {
  animation-delay: 2.65s;
}
.loading.is-active .loading__text_before:nth-child(12) {
  animation-delay: 2.8s;
}
.loading.is-active .loading__text_before:nth-child(13) {
  animation-delay: 2.95s;
}
.loading.is-active .loading__text_before:nth-child(14) {
  animation-delay: 3.1s;
}
.loading.is-active .loading__text_before:nth-child(15) {
  animation-delay: 3.25s;
}
.loading.is-active .loading__text_before:nth-child(16) {
  animation-delay: 3.4s;
}
.loading.is-active .loading__text_before:nth-child(17) {
  animation-delay: 3.55s;
}
.loading.is-active .loading__text_before:nth-child(18) {
  animation-delay: 3.7s;
}
.loading.is-active .loading__text_before:nth-child(19) {
  animation-delay: 3.85s;
}
.loading.is-active .loading__text_before:nth-child(20) {
  animation-delay: 4s;
}
.loading.is-active .loading__text_before:nth-child(21) {
  animation-delay: 4.15s;
}
.loading.is-active .loading__text_before:nth-child(22) {
  animation-delay: 4.3s;
}
.loading.is-active .loading__text_before:nth-child(23) {
  animation-delay: 4.45s;
}
.loading.is-active .loading__text_before:nth-child(24) {
  animation-delay: 4.6s;
}
.loading.is-active .loading__text_before:nth-child(25) {
  animation-delay: 4.75s;
}
.loading.is-active .loading__text_before:nth-child(26) {
  animation-delay: 4.9s;
}
.loading.is-active .loading__text_before:nth-child(27) {
  animation-delay: 5.05s;
}
.loading.is-active .loading__text_before:nth-child(28) {
  animation-delay: 5.2s;
}
.loading.is-active .loading__text_before:nth-child(29) {
  animation-delay: 5.35s;
}
.loading.is-active .loading__text_before:nth-child(30) {
  animation-delay: 5.5s;
}
.loading.is-active .loading__text_smoke {
  transform: translateY(0);
  opacity: 1;
}
.loading.is-active .loading__text_after {
  animation: loading__text_after 0.3s linear forwards;
}
.loading.is-active .loading__text_after:nth-child(1) {
  animation-delay: 1.95s;
}
.loading.is-active .loading__text_after:nth-child(2) {
  animation-delay: 2.1s;
}
.loading.is-active .loading__text_after:nth-child(3) {
  animation-delay: 2.25s;
}
.loading.is-active .loading__text_after:nth-child(4) {
  animation-delay: 2.4s;
}
.loading.is-active .loading__text_after:nth-child(5) {
  animation-delay: 2.55s;
}
.loading.is-active .loading__text_after:nth-child(6) {
  animation-delay: 2.7s;
}
.loading.is-active .loading__text_after:nth-child(7) {
  animation-delay: 2.85s;
}
.loading.is-active .loading__text_after:nth-child(8) {
  animation-delay: 3s;
}
.loading.is-active .loading__text_after:nth-child(9) {
  animation-delay: 3.15s;
}
.loading.is-active .loading__text_after:nth-child(10) {
  animation-delay: 3.3s;
}
.loading.is-active .loading__text_after:nth-child(11) {
  animation-delay: 3.45s;
}
.loading.is-active .loading__text_after:nth-child(12) {
  animation-delay: 3.6s;
}
.loading.is-active .loading__text_after:nth-child(13) {
  animation-delay: 3.75s;
}
.loading.is-active .loading__text_after:nth-child(14) {
  animation-delay: 3.9s;
}
.loading.is-active .loading__text_after:nth-child(15) {
  animation-delay: 4.05s;
}
.loading.is-active .loading__text_after:nth-child(16) {
  animation-delay: 4.2s;
}
.loading.is-active .loading__text_after:nth-child(17) {
  animation-delay: 4.35s;
}
.loading.is-active .loading__text_after:nth-child(18) {
  animation-delay: 4.5s;
}
.loading.is-active .loading__text_after:nth-child(19) {
  animation-delay: 4.65s;
}
.loading.is-active .loading__text_after:nth-child(20) {
  animation-delay: 4.8s;
}
.loading.is-active .loading__text_after:nth-child(21) {
  animation-delay: 4.95s;
}
.loading.is-active .loading__text_after:nth-child(22) {
  animation-delay: 5.1s;
}
.loading.is-active .loading__text_after:nth-child(23) {
  animation-delay: 5.25s;
}
.loading.is-active .loading__text_after:nth-child(24) {
  animation-delay: 5.4s;
}
.loading.is-active .loading__text_after:nth-child(25) {
  animation-delay: 5.55s;
}
.loading.is-active .loading__text_after:nth-child(26) {
  animation-delay: 5.7s;
}
.loading.is-active .loading__text_after:nth-child(27) {
  animation-delay: 5.85s;
}
.loading.is-active .loading__text_after:nth-child(28) {
  animation-delay: 6s;
}
.loading.is-active .loading__text_after:nth-child(29) {
  animation-delay: 6.15s;
}
.loading.is-active .loading__text_after:nth-child(30) {
  animation-delay: 6.3s;
}
.loading.is-active .loading__text_after2 {
  animation: loading__text_after 0.8s linear forwards;
}
.loading.is-active .loading__text_after2:nth-child(1) {
  animation-delay: 1.95s;
}
.loading.is-active .loading__text_after2:nth-child(2) {
  animation-delay: 2.1s;
}
.loading.is-active .loading__text_after2:nth-child(3) {
  animation-delay: 2.25s;
}
.loading.is-active .loading__text_after2:nth-child(4) {
  animation-delay: 2.4s;
}
.loading.is-active .loading__text_after2:nth-child(5) {
  animation-delay: 2.55s;
}
.loading.is-active .loading__text_after2:nth-child(6) {
  animation-delay: 2.7s;
}
.loading.is-active .loading__text_after2:nth-child(7) {
  animation-delay: 2.85s;
}
.loading.is-active .loading__text_after2:nth-child(8) {
  animation-delay: 3s;
}
.loading.is-active .loading__text_after2:nth-child(9) {
  animation-delay: 3.15s;
}
.loading.is-active .loading__text_after2:nth-child(10) {
  animation-delay: 3.3s;
}
.loading.is-active .loading__text_after2:nth-child(11) {
  animation-delay: 3.45s;
}
.loading.is-active .loading__text_after2:nth-child(12) {
  animation-delay: 3.6s;
}
.loading.is-active .loading__text_after2:nth-child(13) {
  animation-delay: 3.75s;
}
.loading.is-active .loading__text_after2:nth-child(14) {
  animation-delay: 3.9s;
}
.loading.is-active .loading__text_after2:nth-child(15) {
  animation-delay: 4.05s;
}
.loading.is-active .loading__text_after2:nth-child(16) {
  animation-delay: 4.2s;
}
.loading.is-active .loading__text_after2:nth-child(17) {
  animation-delay: 4.35s;
}
.loading.is-active .loading__text_after2:nth-child(18) {
  animation-delay: 4.5s;
}
.loading.is-active .loading__text_after2:nth-child(19) {
  animation-delay: 4.65s;
}
.loading.is-active .loading__text_after2:nth-child(20) {
  animation-delay: 4.8s;
}
.loading.is-active .loading__text_after2:nth-child(21) {
  animation-delay: 4.95s;
}
.loading.is-active .loading__text_after2:nth-child(22) {
  animation-delay: 5.1s;
}
.loading.is-active .loading__text_after2:nth-child(23) {
  animation-delay: 5.25s;
}
.loading.is-active .loading__text_after2:nth-child(24) {
  animation-delay: 5.4s;
}
.loading.is-active .loading__text_after2:nth-child(25) {
  animation-delay: 5.55s;
}
.loading.is-active .loading__text_after2:nth-child(26) {
  animation-delay: 5.7s;
}
.loading.is-active .loading__text_after2:nth-child(27) {
  animation-delay: 5.85s;
}
.loading.is-active .loading__text_after2:nth-child(28) {
  animation-delay: 6s;
}
.loading.is-active .loading__text_after2:nth-child(29) {
  animation-delay: 6.15s;
}
.loading.is-active .loading__text_after2:nth-child(30) {
  animation-delay: 6.3s;
}
.loading.is-active .loading__text_after3 {
  animation: loading__text_after 0.3s linear forwards;
}
.loading.is-active .loading__text_after3:nth-child(1) {
  animation-delay: 2.35s;
}
.loading.is-active .loading__text_after3:nth-child(2) {
  animation-delay: 2.5s;
}
.loading.is-active .loading__text_after3:nth-child(3) {
  animation-delay: 2.65s;
}
.loading.is-active .loading__text_after3:nth-child(4) {
  animation-delay: 2.8s;
}
.loading.is-active .loading__text_after3:nth-child(5) {
  animation-delay: 2.95s;
}
.loading.is-active .loading__text_after3:nth-child(6) {
  animation-delay: 3.1s;
}
.loading.is-active .loading__text_after3:nth-child(7) {
  animation-delay: 3.25s;
}
.loading.is-active .loading__text_after3:nth-child(8) {
  animation-delay: 3.4s;
}
.loading.is-active .loading__text_after3:nth-child(9) {
  animation-delay: 3.55s;
}
.loading.is-active .loading__text_after3:nth-child(10) {
  animation-delay: 3.7s;
}
.loading.is-active .loading__text_after3:nth-child(11) {
  animation-delay: 3.85s;
}
.loading.is-active .loading__text_after3:nth-child(12) {
  animation-delay: 4s;
}
.loading.is-active .loading__text_after3:nth-child(13) {
  animation-delay: 4.15s;
}
.loading.is-active .loading__text_after3:nth-child(14) {
  animation-delay: 4.3s;
}
.loading.is-active .loading__text_after3:nth-child(15) {
  animation-delay: 4.45s;
}
.loading.is-active .loading__text_after3:nth-child(16) {
  animation-delay: 4.6s;
}
.loading.is-active .loading__text_after3:nth-child(17) {
  animation-delay: 4.75s;
}
.loading.is-active .loading__text_after3:nth-child(18) {
  animation-delay: 4.9s;
}
.loading.is-active .loading__text_after3:nth-child(19) {
  animation-delay: 5.05s;
}
.loading.is-active .loading__text_after3:nth-child(20) {
  animation-delay: 5.2s;
}
.loading.is-active .loading__text_after3:nth-child(21) {
  animation-delay: 5.35s;
}
.loading.is-active .loading__text_after3:nth-child(22) {
  animation-delay: 5.5s;
}
.loading.is-active .loading__text_after3:nth-child(23) {
  animation-delay: 5.65s;
}
.loading.is-active .loading__text_after3:nth-child(24) {
  animation-delay: 5.8s;
}
.loading.is-active .loading__text_after3:nth-child(25) {
  animation-delay: 5.95s;
}
.loading.is-active .loading__text_after3:nth-child(26) {
  animation-delay: 6.1s;
}
.loading.is-active .loading__text_after3:nth-child(27) {
  animation-delay: 6.25s;
}
.loading.is-active .loading__text_after3:nth-child(28) {
  animation-delay: 6.4s;
}
.loading.is-active .loading__text_after3:nth-child(29) {
  animation-delay: 6.55s;
}
.loading.is-active .loading__text_after3:nth-child(30) {
  animation-delay: 6.7s;
}

@keyframes loading__text_before {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes loading__text_after {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-5%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.leftside img {
  width: 100%;
}
.leftside .ls__text {
  width: 49.92%;
  max-width: 327px;
  top: 38%;
  left: 26%;
}
.leftside .ls__text .abs {
  top: 0;
  left: 0;
}
.leftside .ls__text img {
  transform: translateY(0);
  animation: ls__text 4s linear infinite;
}
.leftside .ls__text img:nth-child(1) {
  animation-delay: 1.15s;
}
.leftside .ls__text img:nth-child(2) {
  animation-delay: 1.3s;
}
.leftside .ls__text img:nth-child(3) {
  animation-delay: 1.45s;
}
.leftside .ls__text img:nth-child(4) {
  animation-delay: 1.6s;
}
.leftside .ls__text img:nth-child(5) {
  animation-delay: 1.75s;
}
.leftside .ls__text img:nth-child(6) {
  animation-delay: 1.9s;
}
.leftside .ls__text img:nth-child(7) {
  animation-delay: 2.05s;
}
.leftside .ls__text img:nth-child(8) {
  animation-delay: 2.2s;
}
.leftside .ls__text img:nth-child(9) {
  animation-delay: 2.35s;
}
.leftside .ls__text img:nth-child(10) {
  animation-delay: 2.5s;
}
.leftside .ls__text img:nth-child(11) {
  animation-delay: 2.65s;
}
.leftside .ls__text img:nth-child(12) {
  animation-delay: 2.8s;
}
.leftside .ls__text img:nth-child(13) {
  animation-delay: 2.95s;
}
.leftside .ls__text img:nth-child(14) {
  animation-delay: 3.1s;
}
.leftside .ls__text img:nth-child(15) {
  animation-delay: 3.25s;
}
.leftside .ls__text img:nth-child(16) {
  animation-delay: 3.4s;
}
.leftside .ls__text img:nth-child(17) {
  animation-delay: 3.55s;
}
.leftside .ls__text img:nth-child(18) {
  animation-delay: 3.7s;
}
.leftside .ls__text img:nth-child(19) {
  animation-delay: 3.85s;
}
.leftside .ls__text img:nth-child(20) {
  animation-delay: 4s;
}
.leftside .ls__text img:nth-child(21) {
  animation-delay: 4.15s;
}
.leftside .ls__text img:nth-child(22) {
  animation-delay: 4.3s;
}
.leftside .ls__text img:nth-child(23) {
  animation-delay: 4.45s;
}
.leftside .ls__text img:nth-child(24) {
  animation-delay: 4.6s;
}
.leftside .ls__text img:nth-child(25) {
  animation-delay: 4.75s;
}
.leftside .ls__text img:nth-child(26) {
  animation-delay: 4.9s;
}
.leftside .ls__text img:nth-child(27) {
  animation-delay: 5.05s;
}
.leftside .ls__text img:nth-child(28) {
  animation-delay: 5.2s;
}
.leftside .ls__text img:nth-child(29) {
  animation-delay: 5.35s;
}
.leftside .ls__text img:nth-child(30) {
  animation-delay: 5.5s;
}
.leftside .ls__swpotato1 {
  width: 28.09%;
  max-width: 184px;
  top: 18%;
  left: 11.6%;
  animation: lsrs__swpotato_sway1 5s linear infinite;
}
.leftside .ls__swpotato2 {
  width: 14.04%;
  max-width: 92px;
  top: 36%;
  right: 11%;
  animation: lsrs__swpotato_sway3 5s linear infinite;
}
.leftside .ls__swpotato3 {
  width: 26.1%;
  max-width: 171px;
  top: 61%;
  left: -4.5%;
  animation: lsrs__swpotato_sway4 7s linear infinite;
}
.leftside .ls__swpotato4 {
  width: 19.38%;
  max-width: 127px;
  bottom: 14%;
  right: 8.5%;
  animation: lsrs__swpotato_sway5 6s linear infinite;
}
.leftside .ls__swpotato5 {
  width: 18.32%;
  max-width: 120px;
  bottom: -3%;
  left: 38%;
  animation: lsrs__swpotato_sway2 5s linear infinite;
}

@keyframes ls__text {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-20px);
  }
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-10px);
  }
  20% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.rightside img {
  width: 100%;
}
.rightside .rs__swpotato1 {
  width: 25.64%;
  max-width: 168px;
  top: 20%;
  right: 10.38%;
  animation: lsrs__swpotato_sway4 7s linear infinite;
}
.rightside .rs__swpotato2 {
  width: 22.59%;
  max-width: 148px;
  top: 37%;
  left: 11.14%;
  animation: lsrs__swpotato_sway5 6s linear infinite;
}
.rightside .rs__swpotato3 {
  width: 16.33%;
  max-width: 107px;
  top: 48%;
  left: 65.5%;
  animation: lsrs__swpotato_sway2 5s linear infinite;
}
.rightside .rs__swpotato4 {
  width: 27.63%;
  max-width: 181px;
  bottom: 9%;
  right: -2.13%;
  animation: lsrs__swpotato_sway1 5s linear infinite;
}
.rightside .rs__qr {
  width: 38.81%;
  max-width: 255px;
  left: 17.55%;
  bottom: 10%;
}
.rightside .rs__qr .rs__qr_text {
  width: 47.45%;
  margin: 0 auto;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
}
.rightside .rs__qr .rs__qr_bg {
  width: 100%;
  animation: rs__qr_bg_rotate 80s linear infinite;
}

@keyframes rs__qr_bg_rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes lsrs__swpotato_sway1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes lsrs__swpotato_sway2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes lsrs__swpotato_sway3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes lsrs__swpotato_sway4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes lsrs__swpotato_sway5 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
  100% {
    transform: translateY(0);
  }
}
.mv {
  padding-top: 64%;
  margin-bottom: -2px;
  overflow: clip;
}
.mv::after {
  content: "";
  width: 100%;
  display: block;
  padding-top: 23.06%;
  background: url(/lp/2025_oimodayo/images/mv_frame.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.mv .mv__text {
  width: 100%;
  top: 15%;
  left: 0;
  z-index: 2;
}
.mv .mv__text .abs {
  top: 0;
  left: 0;
}
.mv .mv__text img {
  transform: translateY(0);
  opacity: 0;
}
.mv .mv__swpotato {
  transform: translateY(-30%);
  opacity: 0;
  transition: transform 0.8s, opacity 1s;
}
.mv .mv__swpotato1 {
  width: 18.93%;
  top: 10%;
  left: 35.26%;
  transition-delay: 1.2s;
}
.mv .mv__swpotato2 {
  width: 25.33%;
  top: 24%;
  left: 45.5%;
  transition-delay: 1.65s;
}
.mv .mv__swpotato3 {
  width: 16%;
  top: 29%;
  right: -6.4%;
  transition-delay: 1.5s;
}
.mv .mv__swpotato4 {
  width: 28%;
  top: 32%;
  left: -13%;
  transition-delay: 1.35s;
}
.mv .mv__swpotato5 {
  width: 19.46%;
  top: 58.5%;
  left: -5%;
  transition-delay: 1.3s;
}
.mv .mv__swpotato6 {
  width: 22.66%;
  top: 61%;
  right: -10.5%;
  transition-delay: 1.2s;
}
.mv .mv__parfait {
  width: 90.66%;
  margin: 0 auto;
  filter: blur(5px);
  transform: scale(0.8);
  opacity: 0;
  transition: filter cubic-bezier(0.33, 1, 0.68, 1) 1s, transform cubic-bezier(0.33, 1, 0.68, 1) 0.8s, opacity cubic-bezier(0.33, 1, 0.68, 1) 1s;
  transition-delay: 0.6s;
}
.mv .mv__bg {
  width: 100%;
  height: 100%;
  background: url(/lp/2025_oimodayo/images/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(20px);
  opacity: 0;
  transition: filter cubic-bezier(0.33, 1, 0.68, 1) 1s, opacity cubic-bezier(0.33, 1, 0.68, 1) 1s;
}
.mv.is-active .mv__text img.mv__text_before {
  animation: mv__text 0.7s linear forwards;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(1) {
  animation-delay: 2.55s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(2) {
  animation-delay: 3.1s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(3) {
  animation-delay: 3.65s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(4) {
  animation-delay: 4.2s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(5) {
  animation-delay: 4.75s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(6) {
  animation-delay: 5.3s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(7) {
  animation-delay: 5.85s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(8) {
  animation-delay: 6.4s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(9) {
  animation-delay: 6.95s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(10) {
  animation-delay: 7.5s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(11) {
  animation-delay: 8.05s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(12) {
  animation-delay: 8.6s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(13) {
  animation-delay: 9.15s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(14) {
  animation-delay: 9.7s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(15) {
  animation-delay: 10.25s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(16) {
  animation-delay: 10.8s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(17) {
  animation-delay: 11.35s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(18) {
  animation-delay: 11.9s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(19) {
  animation-delay: 12.45s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(20) {
  animation-delay: 13s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(21) {
  animation-delay: 13.55s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(22) {
  animation-delay: 14.1s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(23) {
  animation-delay: 14.65s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(24) {
  animation-delay: 15.2s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(25) {
  animation-delay: 15.75s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(26) {
  animation-delay: 16.3s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(27) {
  animation-delay: 16.85s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(28) {
  animation-delay: 17.4s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(29) {
  animation-delay: 17.95s;
}
.mv.is-active .mv__text img.mv__text_before:nth-child(30) {
  animation-delay: 18.5s;
}
.mv.is-active .mv__text img.mv__text_after {
  animation: mv__text 0.7s linear forwards;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(1) {
  animation-delay: 4.05s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(2) {
  animation-delay: 4.2s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(3) {
  animation-delay: 4.35s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(4) {
  animation-delay: 4.5s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(5) {
  animation-delay: 4.65s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(6) {
  animation-delay: 4.8s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(7) {
  animation-delay: 4.95s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(8) {
  animation-delay: 5.1s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(9) {
  animation-delay: 5.25s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(10) {
  animation-delay: 5.4s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(11) {
  animation-delay: 5.55s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(12) {
  animation-delay: 5.7s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(13) {
  animation-delay: 5.85s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(14) {
  animation-delay: 6s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(15) {
  animation-delay: 6.15s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(16) {
  animation-delay: 6.3s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(17) {
  animation-delay: 6.45s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(18) {
  animation-delay: 6.6s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(19) {
  animation-delay: 6.75s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(20) {
  animation-delay: 6.9s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(21) {
  animation-delay: 7.05s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(22) {
  animation-delay: 7.2s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(23) {
  animation-delay: 7.35s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(24) {
  animation-delay: 7.5s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(25) {
  animation-delay: 7.65s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(26) {
  animation-delay: 7.8s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(27) {
  animation-delay: 7.95s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(28) {
  animation-delay: 8.1s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(29) {
  animation-delay: 8.25s;
}
.mv.is-active .mv__text img.mv__text_after:nth-child(30) {
  animation-delay: 8.4s;
}
.mv.is-active .mv__swpotato {
  transform: translateY(0);
  opacity: 1;
}
.mv.is-active .mv__swpotato.mv__swpotato1 img {
  animation: mv__swpotato_sway1 5s linear infinite;
  animation-delay: 2.2s;
}
.mv.is-active .mv__swpotato.mv__swpotato2 img {
  animation: mv__swpotato_sway1 5s linear infinite;
  animation-delay: 2.65s;
}
.mv.is-active .mv__swpotato.mv__swpotato3 img {
  animation: mv__swpotato_sway2 5s linear infinite;
  animation-delay: 2.5s;
}
.mv.is-active .mv__swpotato.mv__swpotato4 img {
  animation: mv__swpotato_sway3 5s linear infinite;
  animation-delay: 2.35s;
}
.mv.is-active .mv__swpotato.mv__swpotato5 img {
  animation: mv__swpotato_sway2 5s linear infinite;
  animation-delay: 2.5s;
}
.mv.is-active .mv__swpotato.mv__swpotato6 img {
  animation: mv__swpotato_sway1 5s linear infinite;
  animation-delay: 2.2s;
}
.mv.is-active .mv__parfait {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}
.mv.is-active .mv__bg {
  filter: blur(0);
  opacity: 1;
}

@keyframes mv__text {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(-20px);
    opacity: 1;
  }
  55% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mv__swpotato_sway1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes mv__swpotato_sway2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes mv__swpotato_sway3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
.content_wrap {
  background: url(/lp/2025_oimodayo/images/content_bg.png) no-repeat center top;
  background-size: cover;
  overflow-x: clip;
}

.about {
  padding: 14% 0 20.53% 0;
}
.about .about__text .abs {
  top: 0;
  left: 0;
}
.about .about__text img {
  opacity: 0;
}
.about .about__text .about__text_smoke {
  transform: translateY(5%);
  transition: transform 0.6s, opacity 0.6s;
  transition-delay: 2s;
}
.about .about__text .about__text_smoke:nth-child(10) {
  transition-delay: 2.3s;
}
.about .about__swpotato1 {
  width: 25.33%;
  top: 38%;
  left: -3.2%;
}
.about.is-active .about__text_before {
  animation: about__text 0.5s linear forwards;
}
.about.is-active .about__text_before:nth-child(1) {
  animation-delay: 0.2s;
}
.about.is-active .about__text_before:nth-child(2) {
  animation-delay: 0.4s;
}
.about.is-active .about__text_before:nth-child(3) {
  animation-delay: 0.6s;
}
.about.is-active .about__text_before:nth-child(4) {
  animation-delay: 0.8s;
}
.about.is-active .about__text_before:nth-child(5) {
  animation-delay: 1s;
}
.about.is-active .about__text_before:nth-child(6) {
  animation-delay: 1.2s;
}
.about.is-active .about__text_before:nth-child(7) {
  animation-delay: 1.4s;
}
.about.is-active .about__text_before:nth-child(8) {
  animation-delay: 1.6s;
}
.about.is-active .about__text_before:nth-child(9) {
  animation-delay: 1.8s;
}
.about.is-active .about__text_before:nth-child(10) {
  animation-delay: 2s;
}
.about.is-active .about__text_before:nth-child(11) {
  animation-delay: 2.2s;
}
.about.is-active .about__text_before:nth-child(12) {
  animation-delay: 2.4s;
}
.about.is-active .about__text_before:nth-child(13) {
  animation-delay: 2.6s;
}
.about.is-active .about__text_before:nth-child(14) {
  animation-delay: 2.8s;
}
.about.is-active .about__text_before:nth-child(15) {
  animation-delay: 3s;
}
.about.is-active .about__text_before:nth-child(16) {
  animation-delay: 3.2s;
}
.about.is-active .about__text_before:nth-child(17) {
  animation-delay: 3.4s;
}
.about.is-active .about__text_before:nth-child(18) {
  animation-delay: 3.6s;
}
.about.is-active .about__text_before:nth-child(19) {
  animation-delay: 3.8s;
}
.about.is-active .about__text_before:nth-child(20) {
  animation-delay: 4s;
}
.about.is-active .about__text_before:nth-child(21) {
  animation-delay: 4.2s;
}
.about.is-active .about__text_before:nth-child(22) {
  animation-delay: 4.4s;
}
.about.is-active .about__text_before:nth-child(23) {
  animation-delay: 4.6s;
}
.about.is-active .about__text_before:nth-child(24) {
  animation-delay: 4.8s;
}
.about.is-active .about__text_before:nth-child(25) {
  animation-delay: 5s;
}
.about.is-active .about__text_before:nth-child(26) {
  animation-delay: 5.2s;
}
.about.is-active .about__text_before:nth-child(27) {
  animation-delay: 5.4s;
}
.about.is-active .about__text_before:nth-child(28) {
  animation-delay: 5.6s;
}
.about.is-active .about__text_before:nth-child(29) {
  animation-delay: 5.8s;
}
.about.is-active .about__text_before:nth-child(30) {
  animation-delay: 6s;
}
.about.is-active .about__text_after {
  animation: about__text 0.5s linear forwards;
}
.about.is-active .about__text_after:nth-child(1) {
  animation-delay: 0.7s;
}
.about.is-active .about__text_after:nth-child(2) {
  animation-delay: 0.9s;
}
.about.is-active .about__text_after:nth-child(3) {
  animation-delay: 1.1s;
}
.about.is-active .about__text_after:nth-child(4) {
  animation-delay: 1.3s;
}
.about.is-active .about__text_after:nth-child(5) {
  animation-delay: 1.5s;
}
.about.is-active .about__text_after:nth-child(6) {
  animation-delay: 1.7s;
}
.about.is-active .about__text_after:nth-child(7) {
  animation-delay: 1.9s;
}
.about.is-active .about__text_after:nth-child(8) {
  animation-delay: 2.1s;
}
.about.is-active .about__text_after:nth-child(9) {
  animation-delay: 2.3s;
}
.about.is-active .about__text_after:nth-child(10) {
  animation-delay: 2.5s;
}
.about.is-active .about__text_after:nth-child(11) {
  animation-delay: 2.7s;
}
.about.is-active .about__text_after:nth-child(12) {
  animation-delay: 2.9s;
}
.about.is-active .about__text_after:nth-child(13) {
  animation-delay: 3.1s;
}
.about.is-active .about__text_after:nth-child(14) {
  animation-delay: 3.3s;
}
.about.is-active .about__text_after:nth-child(15) {
  animation-delay: 3.5s;
}
.about.is-active .about__text_after:nth-child(16) {
  animation-delay: 3.7s;
}
.about.is-active .about__text_after:nth-child(17) {
  animation-delay: 3.9s;
}
.about.is-active .about__text_after:nth-child(18) {
  animation-delay: 4.1s;
}
.about.is-active .about__text_after:nth-child(19) {
  animation-delay: 4.3s;
}
.about.is-active .about__text_after:nth-child(20) {
  animation-delay: 4.5s;
}
.about.is-active .about__text_after:nth-child(21) {
  animation-delay: 4.7s;
}
.about.is-active .about__text_after:nth-child(22) {
  animation-delay: 4.9s;
}
.about.is-active .about__text_after:nth-child(23) {
  animation-delay: 5.1s;
}
.about.is-active .about__text_after:nth-child(24) {
  animation-delay: 5.3s;
}
.about.is-active .about__text_after:nth-child(25) {
  animation-delay: 5.5s;
}
.about.is-active .about__text_after:nth-child(26) {
  animation-delay: 5.7s;
}
.about.is-active .about__text_after:nth-child(27) {
  animation-delay: 5.9s;
}
.about.is-active .about__text_after:nth-child(28) {
  animation-delay: 6.1s;
}
.about.is-active .about__text_after:nth-child(29) {
  animation-delay: 6.3s;
}
.about.is-active .about__text_after:nth-child(30) {
  animation-delay: 6.5s;
}
.about.is-active .about__text_smoke {
  transform: translateY(0);
  opacity: 1;
}

@keyframes about__text {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-3%);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu .menu__intro .menu__intro_text .abs {
  top: 0;
  left: 0;
}
.menu .menu__intro .menu__intro_text img {
  transform: translateY(0);
  opacity: 0;
}
.menu .menu__intro .menu__intro_text.is-active img {
  animation: menu__intro_text 0.7s linear forwards;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(1) {
  animation-delay: 0.15s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(2) {
  animation-delay: 0.3s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(3) {
  animation-delay: 0.45s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(4) {
  animation-delay: 0.6s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(5) {
  animation-delay: 0.75s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(6) {
  animation-delay: 0.9s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(7) {
  animation-delay: 1.05s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(8) {
  animation-delay: 1.2s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(9) {
  animation-delay: 1.35s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(10) {
  animation-delay: 1.5s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(11) {
  animation-delay: 1.65s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(12) {
  animation-delay: 1.8s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(13) {
  animation-delay: 1.95s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(14) {
  animation-delay: 2.1s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(15) {
  animation-delay: 2.25s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(16) {
  animation-delay: 2.4s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(17) {
  animation-delay: 2.55s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(18) {
  animation-delay: 2.7s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(19) {
  animation-delay: 2.85s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(20) {
  animation-delay: 3s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(21) {
  animation-delay: 3.15s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(22) {
  animation-delay: 3.3s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(23) {
  animation-delay: 3.45s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(24) {
  animation-delay: 3.6s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(25) {
  animation-delay: 3.75s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(26) {
  animation-delay: 3.9s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(27) {
  animation-delay: 4.05s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(28) {
  animation-delay: 4.2s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(29) {
  animation-delay: 4.35s;
}
.menu .menu__intro .menu__intro_text.is-active img:nth-child(30) {
  animation-delay: 4.5s;
}
@keyframes menu__intro_text {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(-20px);
    opacity: 1;
  }
  55% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu .menu__item {
  margin-bottom: 18.6%;
}
.menu .menu__item .menu__item_title {
  margin-bottom: 5.6%;
}
.menu .menu__item .menu__item_title .abs {
  top: 0;
  left: 0;
}
.menu .menu__item .menu__item_title img {
  clip-path: inset(0 120% 0 0);
}
.menu .menu__item .menu__item_title.is-active img {
  animation: menu__item_title 1.5s ease-out forwards;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(1) {
  animation-delay: 0.3s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(2) {
  animation-delay: 0.6s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(3) {
  animation-delay: 0.9s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(4) {
  animation-delay: 1.2s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(5) {
  animation-delay: 1.5s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(6) {
  animation-delay: 1.8s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(7) {
  animation-delay: 2.1s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(8) {
  animation-delay: 2.4s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(9) {
  animation-delay: 2.7s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(10) {
  animation-delay: 3s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(11) {
  animation-delay: 3.3s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(12) {
  animation-delay: 3.6s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(13) {
  animation-delay: 3.9s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(14) {
  animation-delay: 4.2s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(15) {
  animation-delay: 4.5s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(16) {
  animation-delay: 4.8s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(17) {
  animation-delay: 5.1s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(18) {
  animation-delay: 5.4s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(19) {
  animation-delay: 5.7s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(20) {
  animation-delay: 6s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(21) {
  animation-delay: 6.3s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(22) {
  animation-delay: 6.6s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(23) {
  animation-delay: 6.9s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(24) {
  animation-delay: 7.2s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(25) {
  animation-delay: 7.5s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(26) {
  animation-delay: 7.8s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(27) {
  animation-delay: 8.1s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(28) {
  animation-delay: 8.4s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(29) {
  animation-delay: 8.7s;
}
.menu .menu__item .menu__item_title.is-active img:nth-child(30) {
  animation-delay: 9s;
}
.menu .menu__item .menu__item_imgblock {
  margin-bottom: 8%;
}
.menu .menu__item .menu__item_imgblock .menu__item_img {
  position: relative;
  z-index: 2;
  transform: scale(0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0.8s;
  transition-delay: 1s;
}
.menu .menu__item .menu__item_imgblock .menu__item_swpotato_close {
  width: 103.73%;
  margin: 0 auto;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  transition: opacity 0.6s;
  transition-delay: 0.2s;
}
.menu .menu__item .menu__item_imgblock .menu__item_swpotato_open {
  width: 119.2%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  top: 63%;
  left: -9.6%;
  transform: translateY(-50%);
}
.menu .menu__item .menu__item_imgblock .menu__item_swpotato_open img {
  width: 42%;
  opacity: 0;
}
.menu .menu__item .menu__item_imgblock .menu__item_swpotato_open img:first-child {
  transform: translateX(45%) rotate(45deg);
}
.menu .menu__item .menu__item_imgblock .menu__item_swpotato_open img:last-child {
  margin-left: auto;
  transform: translateX(-45%) rotate(-45deg);
}
.menu .menu__item .menu__item_imgblock.is-active .menu__item_swpotato_close {
  opacity: 0;
}
.menu .menu__item .menu__item_imgblock.is-active .menu__item_img {
  transform: scale(1);
  opacity: 1;
}
.menu .menu__item .menu__item_imgblock.is-active .menu__item_swpotato_open img:first-child {
  animation: menu__item_swpotato_open1 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.menu .menu__item .menu__item_imgblock.is-active .menu__item_swpotato_open img:last-child {
  animation: menu__item_swpotato_open2 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.menu .menu__item .menu__item_name {
  font-size: 36px;
  font-weight: 900;
  color: #FFDC80;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1535px) {
  .menu .menu__item .menu__item_name {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu__item .menu__item_name {
    font-size: 25px;
  }
}
.menu .menu__item .menu__item_name span {
  font-size: 26px;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1535px) {
  .menu .menu__item .menu__item_name span {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu__item .menu__item_name span {
    font-size: 15px;
  }
}
.menu .menu__item .menu__item_price {
  font-size: 28px;
  font-weight: bold;
  color: #FFDC80;
  text-align: center;
}
@media screen and (max-width: 1535px) {
  .menu .menu__item .menu__item_price {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu__item .menu__item_price {
    font-size: 20px;
  }
}
.menu .menu__item .menu__item_price span {
  font-size: 50px;
}
@media screen and (max-width: 1535px) {
  .menu .menu__item .menu__item_price span {
    font-size: 43px;
  }
}
@media screen and (max-width: 600px) {
  .menu .menu__item .menu__item_price span {
    font-size: 35px;
  }
}
.menu .menu__center .menu__center_inner {
  width: 100%;
  top: 49.5%;
  z-index: 1;
  transform: translateY(-50%);
}
.menu .menu__center .menu__center_title {
  width: 44.26%;
  margin: 0 auto 3.46% auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}
.menu .menu__center .menu__center_img {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s, opacity 0.8s;
}
.menu .menu__center .menu__center_line {
  top: 0;
  left: 0;
  z-index: 1;
  clip-path: inset(0 50% 0 50%);
}
.menu .menu__center .menu__center_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.menu .menu__center .menu__center_text img {
  top: 0;
  left: 0;
  transform: scale(0.98);
  opacity: 0;
}
.menu .menu__center .menu__center_bg {
  animation: menu__center_bg__rotate 70s linear infinite;
}
.menu .menu__center.is-active .menu__center_title {
  transform: translateY(0);
  opacity: 1;
}
.menu .menu__center.is-active .menu__center_img {
  transform: translateY(0);
  opacity: 1;
}
.menu .menu__center.is-active .menu__center_line {
  animation: menu__center_line 1.5s linear forwards;
  animation-delay: 0.6s;
}
.menu .menu__center.is-active .menu__center_text img {
  animation: menu__center_text 1s ease-out forwards;
}

@keyframes menu__item_title {
  from {
    clip-path: inset(0 120% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes menu__item_swpotato_open1 {
  0% {
    transform: translateX(45%) rotate(45deg);
    opacity: 0;
  }
  15% {
    transform: translateX(45%) rotate(45deg);
    opacity: 0;
  }
  60% {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0);
    opacity: 0;
  }
}
@keyframes menu__item_swpotato_open2 {
  0% {
    transform: translateX(-45%) rotate(-45deg);
    opacity: 0;
  }
  15% {
    transform: translateX(-45%) rotate(-45deg);
    opacity: 0;
  }
  60% {
    transform: translateX(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0);
    opacity: 0;
  }
}
@keyframes menu__center_bg__rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes menu__center_line {
  from {
    clip-path: inset(0 50% 0 50%);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes menu__center_text {
  0% {
    transform: scale(0.98);
    opacity: 0;
  }
  25% {
    transform: scale(1.02);
    opacity: 0.5;
  }
  35% {
    opacity: 1;
  }
  45% {
    transform: scale(0.99);
    opacity: 1;
  }
  65% {
    transform: scale(1.01);
    opacity: 1;
  }
  80% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.menu1 {
  margin-bottom: 20.26%;
}
.menu1 .menu__intro {
  margin-bottom: 31.46%;
}
.menu1 .menu__intro .menu__intro_swpotato1 {
  width: 29.86%;
  top: -15%;
  right: -2%;
}
.menu1 .menu__intro .menu__intro_swpotato2 {
  width: 41.06%;
  top: 66%;
  left: -8%;
}
.menu1 .menu__intro .menu__intro_swpotato3 {
  width: 22.93%;
  top: 112%;
  right: 4%;
}
.menu1 .menu__item .menu__item_swpotato1 {
  width: 24.26%;
  bottom: -14%;
  left: -1.8%;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(1) {
  animation-delay: 1.7s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(2) {
  animation-delay: 1.3s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(3) {
  animation-delay: 1.1s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(4) {
  animation-delay: 1.5s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(5) {
  animation-delay: 1.4s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(6) {
  animation-delay: 1.8s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(7) {
  animation-delay: 1.6s;
}
.menu1 .menu__center.is-active .menu__center_text img:nth-child(8) {
  animation-delay: 1.2s;
}

.menu2 {
  margin-bottom: 12.3%;
}
.menu2 .menu__intro {
  margin-bottom: 27.2%;
}
.menu2 .menu__intro .menu__intro_swpotato1 {
  width: 36%;
  top: -23%;
  right: -7%;
}
.menu2 .menu__intro .menu__intro_swpotato2 {
  width: 30.4%;
  top: 89%;
  left: -2.5%;
}
.menu2 .menu__item .menu__item_swpotato1 {
  width: 24.26%;
  bottom: -15%;
  right: -7%;
}
.menu2 .menu__center.is-active .menu__center_text img:nth-child(1) {
  animation-delay: 1.4s;
}
.menu2 .menu__center.is-active .menu__center_text img:nth-child(2) {
  animation-delay: 1.2s;
}
.menu2 .menu__center.is-active .menu__center_text img:nth-child(3) {
  animation-delay: 1.5s;
}
.menu2 .menu__center.is-active .menu__center_text img:nth-child(4) {
  animation-delay: 1.3s;
}
.menu2 .menu__center.is-active .menu__center_text img:nth-child(5) {
  animation-delay: 1.1s;
}

.menu3 {
  margin-bottom: 18.13%;
}
.menu3 .menu__intro {
  margin-bottom: 23.2%;
}
.menu3 .menu__intro .menu__intro_swpotato1 {
  width: 30.93%;
  top: 1%;
  right: -3.5%;
}
.menu3 .menu__intro .menu__intro_swpotato2 {
  width: 36.53%;
  top: 67%;
  left: -10%;
}
.menu3 .menu__item .menu__item_swpotato1 {
  width: 22.24%;
  bottom: -24%;
  right: -2%;
}
.menu3 .menu__center .menu__center_inner {
  top: 48%;
}
.menu3 .menu__center.is-active .menu__center_text img:nth-child(1) {
  animation-delay: 1.1s;
}
.menu3 .menu__center.is-active .menu__center_text img:nth-child(2) {
  animation-delay: 1.3s;
}
.menu3 .menu__center.is-active .menu__center_text img:nth-child(3) {
  animation-delay: 1.4s;
}
.menu3 .menu__center.is-active .menu__center_text img:nth-child(4) {
  animation-delay: 1.2s;
}

.menu4 {
  margin-bottom: 16%;
}
.menu4 .menu__intro {
  margin-bottom: 30.4%;
}
.menu4 .menu__intro .menu__intro_swpotato1 {
  width: 32%;
  top: -8%;
  right: -3%;
}
.menu4 .menu__intro .menu__intro_swpotato2 {
  width: 35.73%;
  top: 87%;
  left: -6%;
}
.menu4 .menu__item .menu__item_swpotato1 {
  width: 34.4%;
  bottom: -15%;
  left: -13%;
}
.menu4 .menu__center .menu__center_inner {
  top: 46.5%;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(1) {
  animation-delay: 1.3s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(2) {
  animation-delay: 1.9s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(3) {
  animation-delay: 1.7s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(4) {
  animation-delay: 1.5s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(5) {
  animation-delay: 2s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(6) {
  animation-delay: 1.8s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(7) {
  animation-delay: 1.6s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(8) {
  animation-delay: 1.4s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(9) {
  animation-delay: 1.2s;
}
.menu4 .menu__center.is-active .menu__center_text img:nth-child(10) {
  animation-delay: 1.1s;
}

.shop {
  padding-bottom: 20%;
}
.shop .shop__intro {
  margin-bottom: 22.13%;
}
.shop .shop__intro .shop__intro_text .abs {
  top: 0;
  left: 0;
}
.shop .shop__intro .shop__intro_text img {
  transform: translateY(0);
  opacity: 0;
}
.shop .shop__intro .shop__intro_text.is-active img {
  animation: menu__intro_text 0.7s linear forwards;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(1) {
  animation-delay: 0.15s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(2) {
  animation-delay: 0.3s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(3) {
  animation-delay: 0.45s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(4) {
  animation-delay: 0.6s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(5) {
  animation-delay: 0.75s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(6) {
  animation-delay: 0.9s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(7) {
  animation-delay: 1.05s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(8) {
  animation-delay: 1.2s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(9) {
  animation-delay: 1.35s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(10) {
  animation-delay: 1.5s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(11) {
  animation-delay: 1.65s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(12) {
  animation-delay: 1.8s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(13) {
  animation-delay: 1.95s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(14) {
  animation-delay: 2.1s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(15) {
  animation-delay: 2.25s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(16) {
  animation-delay: 2.4s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(17) {
  animation-delay: 2.55s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(18) {
  animation-delay: 2.7s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(19) {
  animation-delay: 2.85s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(20) {
  animation-delay: 3s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(21) {
  animation-delay: 3.15s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(22) {
  animation-delay: 3.3s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(23) {
  animation-delay: 3.45s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(24) {
  animation-delay: 3.6s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(25) {
  animation-delay: 3.75s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(26) {
  animation-delay: 3.9s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(27) {
  animation-delay: 4.05s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(28) {
  animation-delay: 4.2s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(29) {
  animation-delay: 4.35s;
}
.shop .shop__intro .shop__intro_text.is-active img:nth-child(30) {
  animation-delay: 4.5s;
}
.shop .shop__intro .shop__intro_swpotato1 {
  width: 36.8%;
  top: -9%;
  right: -11%;
}
.shop .shop__intro .shop__intro_swpotato2 {
  width: 30.66%;
  top: 91%;
  left: -5%;
}
@keyframes menu__intro_text {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    transform: translateY(-20px);
    opacity: 1;
  }
  55% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.shop .manekin {
  margin-bottom: 10%;
}
.shop .manekin .manekin__title {
  margin-bottom: 10px;
}
.shop .manekin .manekin__title img {
  clip-path: inset(0 120% 0 0);
}
.shop .manekin .manekin__title .abs {
  top: 0;
  left: 0;
}
.shop .manekin .manekin__title.is-active img {
  animation: menu__item_title 1.5s ease-out forwards;
}
.shop .manekin .manekin__title.is-active img:nth-child(1) {
  animation-delay: 0.3s;
}
.shop .manekin .manekin__title.is-active img:nth-child(2) {
  animation-delay: 0.6s;
}
.shop .manekin .manekin__title.is-active img:nth-child(3) {
  animation-delay: 0.9s;
}
.shop .manekin .manekin__title.is-active img:nth-child(4) {
  animation-delay: 1.2s;
}
.shop .manekin .manekin__title.is-active img:nth-child(5) {
  animation-delay: 1.5s;
}
.shop .manekin .manekin__title.is-active img:nth-child(6) {
  animation-delay: 1.8s;
}
.shop .manekin .manekin__title.is-active img:nth-child(7) {
  animation-delay: 2.1s;
}
.shop .manekin .manekin__title.is-active img:nth-child(8) {
  animation-delay: 2.4s;
}
.shop .manekin .manekin__title.is-active img:nth-child(9) {
  animation-delay: 2.7s;
}
.shop .manekin .manekin__title.is-active img:nth-child(10) {
  animation-delay: 3s;
}
.shop .manekin .manekin__title.is-active img:nth-child(11) {
  animation-delay: 3.3s;
}
.shop .manekin .manekin__title.is-active img:nth-child(12) {
  animation-delay: 3.6s;
}
.shop .manekin .manekin__title.is-active img:nth-child(13) {
  animation-delay: 3.9s;
}
.shop .manekin .manekin__title.is-active img:nth-child(14) {
  animation-delay: 4.2s;
}
.shop .manekin .manekin__title.is-active img:nth-child(15) {
  animation-delay: 4.5s;
}
.shop .manekin .manekin__title.is-active img:nth-child(16) {
  animation-delay: 4.8s;
}
.shop .manekin .manekin__title.is-active img:nth-child(17) {
  animation-delay: 5.1s;
}
.shop .manekin .manekin__title.is-active img:nth-child(18) {
  animation-delay: 5.4s;
}
.shop .manekin .manekin__title.is-active img:nth-child(19) {
  animation-delay: 5.7s;
}
.shop .manekin .manekin__title.is-active img:nth-child(20) {
  animation-delay: 6s;
}
.shop .manekin .manekin__title.is-active img:nth-child(21) {
  animation-delay: 6.3s;
}
.shop .manekin .manekin__title.is-active img:nth-child(22) {
  animation-delay: 6.6s;
}
.shop .manekin .manekin__title.is-active img:nth-child(23) {
  animation-delay: 6.9s;
}
.shop .manekin .manekin__title.is-active img:nth-child(24) {
  animation-delay: 7.2s;
}
.shop .manekin .manekin__title.is-active img:nth-child(25) {
  animation-delay: 7.5s;
}
.shop .manekin .manekin__title.is-active img:nth-child(26) {
  animation-delay: 7.8s;
}
.shop .manekin .manekin__title.is-active img:nth-child(27) {
  animation-delay: 8.1s;
}
.shop .manekin .manekin__title.is-active img:nth-child(28) {
  animation-delay: 8.4s;
}
.shop .manekin .manekin__title.is-active img:nth-child(29) {
  animation-delay: 8.7s;
}
.shop .manekin .manekin__title.is-active img:nth-child(30) {
  animation-delay: 9s;
}
.shop .manekin .manekin__wrap {
  width: 72.53%;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
}
.shop .manekin .manekin__body {
  width: 100%;
}
.shop .manekin .manekin__arm {
  width: 22.05%;
  top: 42.5%;
  left: 19.5%;
  z-index: 2;
  animation: manekinArm 5s ease-in-out infinite;
}
.shop .manekin .manekin__spoon {
  width: 27.2%;
  top: 40.5%;
  left: 26.5%;
  z-index: 1;
  animation: manekinSpoon 5s ease-in-out infinite;
}
.shop .manekin .manekin__ghost1 {
  width: 10.66%;
  top: 45%;
  right: 12%;
  z-index: 1;
  animation: manekinGhost1 5s linear infinite;
}
.shop .manekin .manekin__ghost2 {
  width: 10.66%;
  top: 56%;
  left: 9%;
  z-index: 1;
  animation: manekinGhost2 5s linear infinite;
}
.shop .shop__search_reserve {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.shop .shop__search_reserve a {
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.shop .shop__search_reserve .shop__search {
  width: 43.46%;
  transform: translateY(20px) rotate(-25deg);
}
.shop .shop__search_reserve .shop__search .shop__text {
  width: 43.55%;
  top: 46%;
  left: 20%;
}
.shop .shop__search_reserve .shop__reserve {
  width: 43.2%;
  margin: 19% 0 0 -10%;
  z-index: 1;
  transform: translateY(20px) rotate(25deg);
  transition-delay: 0.2s;
}
.shop .shop__search_reserve .shop__reserve .shop__text {
  width: 48.14%;
  top: 41%;
  left: 29%;
}
.shop .shop__search_reserve .shop__text {
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0.2s;
}
.shop .shop__search_reserve a.is-active {
  opacity: 1;
}
.shop .shop__search_reserve a.is-active.shop__search {
  transform: translateY(0) rotate(0deg);
}
.shop .shop__search_reserve a.is-active.shop__reserve {
  transform: translateY(0) rotate(0deg);
}
.shop .shop__search_reserve a.is-active .shop__text {
  opacity: 1;
}
.shop .shop__search_reserve a.is-active:hover {
  opacity: 0.8;
}

@keyframes manekinArm {
  0% {
    transform: rotate(0) translateX(0%);
  }
  50% {
    transform: rotate(10deg) translateX(20%);
  }
  60% {
    transform: rotate(10deg) translateX(20%);
  }
  100% {
    transform: rotate(0) translateX(0);
  }
}
@keyframes manekinSpoon {
  0% {
    transform: rotate(0) translateX(0%);
  }
  50% {
    transform: rotate(-5deg) translateX(30%) translateY(20%);
  }
  60% {
    transform: rotate(-5deg) translateX(30%) translateY(20%);
  }
  100% {
    transform: rotate(0) translateX(0);
  }
}
@keyframes manekinGhost1 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(60%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes manekinGhost2 {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}