/* 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_uttorimaromaro/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_uttorimaromaro/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: linear-gradient(to top, #bf8f5a, #2d0a12 88%);
  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: linear-gradient(to top, #bf8f5a, #2d0a12 88%);
  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%;
}

@keyframes maskAnimation_normal {
  0% {
    clip-path: inset(0 120% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes maskAnimation_reverse {
  0% {
    clip-path: inset(0 0 0 120%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes maskAnimation_topdown {
  0% {
    clip-path: inset(0 0 120% 0);
  }
  100% {
    clip-path: inset(0);
  }
}
.loading {
  width: 600px;
  height: calc(100vh - 100px);
  margin: auto;
  background: linear-gradient(180deg, rgb(25, 1, 0) 0%, rgb(60, 19, 5) 100%);
  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__frame {
  width: 84.8%;
  max-width: 450px;
  margin: auto;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
  transform: translateY(-48%);
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}
.loading .loading__text {
  width: 35.84%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading .loading__text img {
  top: 0;
  left: 0;
  transform: translateY(-10px);
  filter: brightness(0.2);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.5, 1, 0.89, 1), opacity 1.5s cubic-bezier(0.5, 1, 0.89, 1), filter 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.loading .loading__illust {
  width: 21.38%;
  right: 22%;
  bottom: 13.8%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.loading .loading__note1 {
  width: 7.46%;
  top: 23.5%;
  left: 7.86%;
  z-index: 1;
  transform: translateY(-30px);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1535px) {
  .loading .loading__note1 {
    top: 17%;
  }
}
@media screen and (max-width: 600px) {
  .loading .loading__note1 {
    top: 18.3%;
  }
}
@media screen and (max-width: 450px) {
  .loading .loading__note1 {
    top: 14.5%;
  }
}
@media screen and (max-width: 375px) {
  .loading .loading__note1 {
    top: 18.3%;
  }
}
.loading .loading__note2 {
  width: 8.53%;
  bottom: 28.3%;
  right: 6.66%;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 1535px) {
  .loading .loading__note2 {
    bottom: 20.5%;
  }
}
@media screen and (max-width: 600px) {
  .loading .loading__note2 {
    bottom: 22%;
  }
}
@media screen and (max-width: 450px) {
  .loading .loading__note2 {
    bottom: 17.5%;
  }
}
@media screen and (max-width: 375px) {
  .loading .loading__note2 {
    bottom: 22%;
  }
}
.loading .loading__line1 {
  top: 0;
  left: 0;
  clip-path: inset(0 120% 0 0);
}
.loading .loading__line2 {
  bottom: 0;
  left: 0;
  clip-path: inset(0 0 0 120%);
}
.loading.is-active .loading__frame {
  transform: translateY(-50%);
  opacity: 1;
  transition-delay: 1.8s;
}
.loading.is-active .loading__frame.is-passive {
  transform: translateY(-48%);
  transition-delay: 0s;
  opacity: 0;
}
.loading.is-active .loading__text img {
  transform: translateY(0);
  filter: brightness(1);
  opacity: 1;
  transition-delay: 2.5s;
}
.loading.is-active .loading__text .loading__text1 {
  transition-delay: 2.5s;
}
.loading.is-active .loading__text .loading__text2 {
  transition-delay: 2.6s;
}
.loading.is-active .loading__text .loading__text3 {
  transition-delay: 2.7s;
}
.loading.is-active .loading__text .loading__text4 {
  transition-delay: 2.8s;
}
.loading.is-active .loading__text .loading__text5 {
  transition-delay: 2.9s;
}
.loading.is-active .loading__text .loading__text6 {
  transition-delay: 3s;
}
.loading.is-active .loading__text .loading__text7 {
  transition-delay: 2.8s;
}
.loading.is-active .loading__text .loading__text8 {
  transition-delay: 2.9s;
}
.loading.is-active .loading__text .loading__text9 {
  transition-delay: 3s;
}
.loading.is-active .loading__text .loading__text10 {
  transition-delay: 3.1s;
}
.loading.is-active .loading__text .loading__text11 {
  transition-delay: 3.2s;
}
.loading.is-active .loading__text .loading__text12 {
  transition-delay: 3.3s;
}
.loading.is-active .loading__text .loading__text13 {
  transition-delay: 3.4s;
}
.loading.is-active .loading__text .loading__text14 {
  transition-delay: 3.5s;
}
.loading.is-active .loading__text .loading__text15 {
  transition-delay: 3.6s;
}
.loading.is-active .loading__text .loading__text16 {
  transition-delay: 3.7s;
}
.loading.is-active .loading__text .loading__text17 {
  transition-delay: 3.5s;
}
.loading.is-active .loading__text .loading__text18 {
  transition-delay: 3.6s;
}
.loading.is-active .loading__text .loading__text19 {
  transition-delay: 3.7s;
}
.loading.is-active .loading__text .loading__text20 {
  transition-delay: 3.8s;
}
.loading.is-active .loading__text .loading__text21 {
  transition-delay: 3.9s;
}
.loading.is-active .loading__text .loading__text22 {
  transition-delay: 4s;
}
.loading.is-active .loading__text .loading__text23 {
  transition-delay: 4.1s;
}
.loading.is-active .loading__text .loading__text24 {
  transition-delay: 4.2s;
}
.loading.is-active .loading__text .loading__text25 {
  transition-delay: 4.3s;
}
.loading.is-active .loading__text .loading__text26 {
  transition-delay: 4.4s;
}
.loading.is-active .loading__text .loading__text27 {
  transition-delay: 4.5s;
}
.loading.is-active .loading__illust {
  opacity: 1;
  transition-delay: 4.5s;
}
.loading.is-active .loading__line1 {
  animation: maskAnimation_normal 3s linear forwards;
  animation-delay: 0s;
}
.loading.is-active .loading__line2 {
  animation: maskAnimation_reverse 3s linear forwards;
  animation-delay: 0.5s;
}
.loading.is-active .loading__note1 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.8s;
}
.loading.is-active .loading__note2 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.1s;
}

.leftside img {
  width: 100%;
}
.leftside .leftside_typo {
  width: 42.44%;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%);
}
.leftside .leftside_typo .leftside_typo_me1 {
  width: 45.8%;
  top: 15%;
  left: 1%;
}
.leftside .leftside_typo .leftside_typo_me2 {
  width: 36.8%;
  top: 61%;
  left: 9%;
}
.leftside .leftside_typo .leftside_typo_ma1 {
  width: 44.04%;
  top: 16%;
  left: 0;
  opacity: 0;
}
.leftside .leftside_typo .leftside_typo_ma2 {
  width: 33.33%;
  top: 61%;
  left: 9%;
  opacity: 0;
}
.leftside .is-active:nth-child(2) {
  animation: leftside_typo_me 1.5s ease-in-out 10.7s forwards;
}
.leftside .is-active:nth-child(3) {
  animation: leftside_typo_me 1.5s ease-in-out 10.7s forwards;
}
.leftside .is-active:nth-child(4) {
  animation: leftside_typo_ma 1.9s ease-out forwards 11.5s;
}
.leftside .is-active:nth-child(5) {
  animation: leftside_typo_ma 1.9s ease-out forwards 11.5s;
}
.leftside .leftside_line1 {
  width: 92.51%;
  top: 0;
  left: 0;
}
.leftside .leftside_line2 {
  width: 94.96%;
  bottom: 0;
  left: 0;
}
.leftside .leftside_maron1 {
  width: 31.4%;
  top: 13.5%;
  right: -10.5%;
  transform: rotate(-35deg);
  animation: leftside_maron1 8s ease-in-out infinite;
}
.leftside .leftside_maron2 {
  width: 53.28%;
  bottom: 0.2%;
  left: -15.5%;
  transform: rotate(30deg);
  animation: leftside_maron2 9s ease-in-out infinite;
}

@keyframes leftside_typo_ma {
  0% {
    transform: translateY(-20%) scale(0.9) rotate(13deg) translateZ(0);
    filter: brightness(0.4);
    opacity: 0;
  }
  100% {
    transform: translateY(0%) scale(1) rotate(0deg) translateZ(0);
    filter: brightness(1);
    opacity: 1;
  }
}
@keyframes leftside_typo_me {
  0% {
    transform: translateY(0%) scale(1) rotate(0deg) translateZ(0);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(20%) scale(1.3) rotate(-13deg) translateZ(0);
    filter: blur(20px);
    opacity: 0;
  }
}
@keyframes leftside_maron1 {
  0% {
    transform: rotate(-35deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-35deg);
  }
}
@keyframes leftside_maron2 {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
.rightside img {
  width: 100%;
}
.rightside .rightside_line1 {
  width: 77.55%;
  bottom: 0;
  left: 0;
}
.rightside .rightside_maron1 {
  width: 72.67%;
  top: -6%;
  right: -16%;
  transform: rotate(-35deg);
  animation: rightside_maron1 8s ease-in-out infinite;
}
.rightside .rightside_maron2 {
  width: 29.31%;
  top: 27%;
  left: 7%;
  transform: rotate(30deg);
  animation: rightside_maron2 7s ease-in-out infinite;
}
.rightside .rightside_maron3 {
  width: 37.86%;
  top: 81%;
  right: -10%;
  transform: rotate(-35deg);
  animation: rightside_maron1 9s ease-in-out infinite;
}
.rightside .rightside_qr {
  width: 40%;
  max-width: 247px;
  bottom: 10.12%;
  left: 17.4%;
}

@keyframes rightside_maron1 {
  0% {
    transform: rotate(-35deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-35deg);
  }
}
@keyframes rightside_maron2 {
  0% {
    transform: rotate(30deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
.mv {
  padding-top: 67.2%;
  background: #1B0504;
  background: linear-gradient(to bottom, #1f0001, #421909);
  overflow: clip;
}
.mv .mv__text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}
.mv .mv__text > img,
.mv .mv__text > div {
  opacity: 0;
  filter: brightness(0.2);
}
.mv .mv__text .mv__text1 {
  width: 21.06%;
  top: 12%;
  right: 16%;
}
.mv .mv__text .mv__text2 {
  width: 10.66%;
  top: 31%;
  right: 8.53%;
}
.mv .mv__text .mv__text3 {
  width: 16%;
  top: 35%;
  right: 13%;
}
.mv .mv__text .mv__text4 {
  width: 12.8%;
  top: 50.5%;
  right: 6%;
}
.mv .mv__text .mv__text5 {
  width: 29.06%;
  top: 12.7%;
  left: 7.46%;
}
.mv .mv__text .mv__text6 {
  width: 27.46%;
  top: 14%;
  left: 7.73%;
}
.mv .mv__text .mv__text7 {
  width: 17.6%;
  top: 30%;
  left: 21.86%;
}
.mv .mv__text .mv__text8 {
  width: 24.8%;
  top: 42.5%;
  left: 6.4%;
}
.mv .mv__text .mv__text9 {
  width: 21.06%;
  top: 42%;
  left: 5.6%;
}
.mv .mv__text .mv__text10 {
  width: 12.26%;
  top: 54.3%;
  left: 15.46%;
}
.mv .mv__text .text_animation {
  transform: translateY(-5%) rotate(5deg);
}
.mv .mv__text .text_animation_reverse {
  transform: translateY(-5%) rotate(-5deg);
}
.mv .mv_line1 {
  top: 2%;
  left: 0;
}
.mv .mv_line2 {
  top: 54%;
  left: 0;
}
.mv .mv_suger {
  width: 25.6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  top: 20.5%;
  left: 0;
  right: 0;
  mask-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 75%);
  mask-size: 100% 200%;
  mask-repeat: no-repeat;
  mask-position: 0 200%;
  opacity: 0;
  transform: translateY(-5%);
}
.mv .mv_suger img {
  width: 100%;
}
.mv .mv_main {
  z-index: 2;
  opacity: 0.5;
  filter: brightness(0.4);
  transform: translateY(2%);
  transition: opacity 1.5s cubic-bezier(0.33, 1, 0.68, 1), transform 1.5s cubic-bezier(0.33, 1, 0.68, 1), filter 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.mv .mv_maron1 {
  width: 29.33%;
  top: 2%;
  left: 0;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 1.5s ease, transform 2.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.8s;
}
.mv .mv_maron2 {
  width: 15.2%;
  top: 23%;
  right: 0;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 1s ease, transform 2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.4s;
}
.mv .mv_maron3 {
  width: 17.86%;
  top: 47.5%;
  left: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 1.8s ease, transform 3.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.mv .mv_bottom {
  bottom: 0;
  left: 0;
  z-index: 3;
}
.mv.is-active .mv__text .text_animation {
  animation: mv_text_animation 2s ease-out forwards;
  animation-delay: 1.5s;
}
.mv.is-active .mv__text .text_animation_reverse {
  animation: mv_text_animation_reverse 2s ease-out forwards;
  animation-delay: 1.5s;
}
.mv.is-active .mv__text .mv__text2 {
  animation-delay: 1.6s;
}
.mv.is-active .mv__text .mv__text3 {
  animation-delay: 1.7s;
}
.mv.is-active .mv__text .mv__text4 {
  animation-delay: 1.8s;
}
.mv.is-active .mv__text .mv__text5 {
  animation-delay: 1.9s;
}
.mv.is-active .mv__text .mv__text7 {
  animation-delay: 2s;
}
.mv.is-active .mv__text .mv__text8 {
  animation-delay: 2.1s;
}
.mv.is-active .mv__text .mv__text10 {
  animation-delay: 2.2s;
}
.mv.is-active .mv__text .text_time_fadeout {
  animation: mv_text_animation_time_fadeout 1.5s ease-out forwards;
  animation-delay: 4.5s;
}
.mv.is-active .mv__text .text_time_fadein {
  animation: mv_text_animation_time_fadein 2s ease-out forwards;
  animation-delay: 4.5s;
}
.mv.is-active .mv_suger {
  animation: mv_suger_animation 2s ease-out forwards;
}
.mv.is-active .mv_suger img.delay000 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2s;
}
.mv.is-active .mv_suger img.delay005 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.05s;
}
.mv.is-active .mv_suger img.delay010 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.1s;
}
.mv.is-active .mv_suger img.delay015 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.15s;
}
.mv.is-active .mv_suger img.delay020 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.2s;
}
.mv.is-active .mv_suger img.delay025 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.25s;
}
.mv.is-active .mv_suger img.delay030 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.3s;
}
.mv.is-active .mv_suger img.delay035 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.35s;
}
.mv.is-active .mv_suger img.delay040 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.4s;
}
.mv.is-active .mv_suger img.delay045 {
  animation: mv_suger_brightness 5s linear infinite;
  animation-delay: 2.45s;
}
.mv.is-active .mv_main {
  opacity: 1;
  filter: brightness(1);
  transform: translateY(0);
}
.mv.is-active .mv_maron1 {
  opacity: 1;
  transform: translateY(0);
}
.mv.is-active .mv_maron2 {
  opacity: 1;
  transform: translateY(0);
}
.mv.is-active .mv_maron3 {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mv_text_animation {
  0% {
    opacity: 0;
    filter: brightness(0.2);
    transform: translateY(-15%) rotate(10deg) scale(0.9);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes mv_text_animation_reverse {
  0% {
    opacity: 0;
    filter: brightness(0.2);
    transform: translateY(-15%) rotate(-10deg) scale(0.9);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes mv_text_animation_time_fadeout {
  0% {
    opacity: 1;
    filter: brightness(1) blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: brightness(0.2) blur(20px);
    transform: scale(1.1);
  }
}
@keyframes mv_text_animation_time_fadein {
  0% {
    opacity: 0;
    filter: brightness(0.2);
    transform: translateY(-15%) rotate(10deg) scale(0.9);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0) rotate(0) scale(1);
  }
}
@keyframes mv_suger_animation {
  0% {
    mask-position: 0 200%;
    opacity: 0;
    transform: translateY(-5%);
  }
  100% {
    mask-position: 0 0;
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes mv_suger_brightness {
  0% {
    filter: brightness(1);
  }
  10% {
    filter: brightness(1.8);
  }
  20% {
    filter: brightness(1);
  }
  40% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.8);
  }
  60% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1);
  }
}
.content_wrap {
  min-height: 300vh;
  padding-bottom: 22.66%;
  background: #F7CC7D;
  background: linear-gradient(to bottom, rgb(255, 203, 120) 0%, rgb(233, 182, 108) 1%, rgb(199, 151, 92) 3%, rgb(160, 114, 71) 6%, rgb(121, 78, 52) 10%, rgb(93, 51, 37) 13%, rgb(76, 36, 29) 16%, rgb(65, 25, 22) 20%, rgb(59, 18, 20) 24%, rgb(57, 18, 19) 30%, rgb(75, 35, 29) 34%, rgb(113, 70, 49) 40%, rgb(172, 125, 81) 46%, rgb(224, 173, 110) 51%, rgb(255, 208, 130) 54%, rgb(255, 202, 126) 55%, rgb(186, 138, 87) 64%, rgb(122, 77, 50) 72%, rgb(73, 31, 23) 79%, rgb(76, 34, 24) 80%, rgb(84, 40, 29) 81%, rgb(107, 62, 45) 85%, rgb(148, 100, 71) 89%, rgb(176, 125, 90) 91%, rgb(254, 202, 120) 99%, rgb(255, 208, 122) 100%);
  overflow-x: clip;
}

.about {
  padding-top: 22.66%;
  padding-bottom: 9.86%;
}
.about .about__text {
  width: 69.06%;
  margin-left: 14.6%;
  z-index: 1;
}
.about .about__text img {
  opacity: 0;
  transform: translateY(20px);
}
.about .about__text img:not(:last-child) {
  margin-bottom: 14.28%;
}
.about .about_maron1 {
  width: 37.06%;
  top: 11.5%;
  left: -7%;
}
.about .about_maron2 {
  width: 52.8%;
  top: 51.5%;
  right: -16%;
}

.menu_item_name {
  font-size: 40px;
  font-weight: 900;
  color: #EBD5BE;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  .menu_item_name {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .menu_item_name {
    font-size: 25px;
  }
}
.menu_item_name span {
  font-size: 25px;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 1535px) {
  .menu_item_name span {
    font-size: 23px;
  }
}
@media screen and (max-width: 600px) {
  .menu_item_name span {
    font-size: 20px;
  }
}

.menu_item_price {
  font-size: 55px;
  font-weight: 900;
  color: #EBD5BE;
  text-align: center;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 10.66%;
  background: url(/lp/2025_uttorimaromaro/images/bdr_item_price.png) no-repeat center bottom;
  background-size: 280px auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  .menu_item_price {
    font-size: 48px;
    background-size: 220px auto;
  }
}
@media screen and (max-width: 600px) {
  .menu_item_price {
    font-size: 40px;
    background-size: 170px auto;
  }
}
.menu_item_price span {
  font-size: 35px;
}
@media screen and (max-width: 1535px) {
  .menu_item_price span {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .menu_item_price span {
    font-size: 25px;
  }
}

.menuA {
  margin-bottom: 11.2%;
}

.menuA__intro {
  margin-bottom: 8.8%;
}
.menuA__intro .menuA__intro_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.menuA__intro .menuA__intro_text1 {
  width: 25.06%;
  top: 12%;
  left: 14.66%;
}
.menuA__intro .menuA__intro_text2 {
  width: 11.73%;
  top: 43%;
  left: 36.8%;
}
.menuA__intro .menuA__intro_text3 {
  width: 19.2%;
  top: 55.5%;
  left: 42.66%;
}
.menuA__intro .menuA__intro_text4 {
  width: 16.8%;
  top: 73.5%;
  left: 61.33%;
}
.menuA__intro .menuA__intro_illust {
  width: 32.8%;
  top: 18%;
  right: 7.46%;
}
.menuA__intro .menuA__intro_line {
  clip-path: inset(0 120% 0 0);
}
.menuA__intro .menuA__intro_note {
  width: 13.06%;
  bottom: -1.3%;
  right: 6.13%;
}
.menuA__intro .menuA__intro_maron {
  width: 34.66%;
  bottom: -5%;
  left: -4.5%;
}

.menuA__item .menuA__item_lead {
  width: 49.06%;
  margin: 0 auto 6.4% auto;
}
.menuA__item .menuA__item_lead img {
  top: 0;
  left: 0;
}
.menuA__item .menuA__item_img {
  width: 61.33%;
  margin: 0 auto 20px auto;
}
.menuA__item .menuA__item_ph {
  width: 62.17%;
  margin: auto;
  inset: 0;
  top: 4%;
}
.menuA__item .menuA__item_maron {
  width: 24.26%;
  bottom: -11%;
  right: -8%;
}

.menuA__filling .menuA__filling_title {
  width: 43.2%;
  margin: 0 auto 1.86% auto;
  top: 16.5%;
  left: 0;
  right: 0;
  z-index: 1;
}
.menuA__filling .menuA__filling_ph {
  bottom: 9%;
  left: 0;
  z-index: 1;
}
.menuA__filling .menuA__filling_line {
  bottom: 9%;
  left: 0;
  z-index: 2;
}
.menuA__filling .menuA__filling_caption img {
  bottom: 9%;
  left: 0;
  z-index: 2;
}
.menuA__filling .menuA__filling_bg {
  width: 114.13%;
  left: -7.06%;
}

.menuB {
  margin-bottom: 6.7%;
}

.menuB__intro {
  margin-bottom: 11.2%;
}
.menuB__intro .menuB__intro_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.menuB__intro .menuB__intro_text .menuB__intro_text1 {
  width: 33.06%;
  top: 15.5%;
  left: 53.33%;
}
.menuB__intro .menuB__intro_text .menuB__intro_text2 {
  width: 20.8%;
  top: 40%;
  left: 51%;
}
.menuB__intro .menuB__intro_text .menuB__intro_text3 {
  width: 24.8%;
  top: 60%;
  left: 29.6%;
}
.menuB__intro .menuB__intro_text .menuB__intro_text4 {
  width: 14.66%;
  top: 81%;
  left: 33.06%;
}
.menuB__intro .menuB__intro_illust {
  width: 33.86%;
  top: 9.5%;
  left: 9.6%;
}
.menuB__intro .menuB__intro_line {
  clip-path: inset(0 0 0 120%);
}
.menuB__intro .menuB__intro_note1 {
  width: 4%;
  bottom: 6.7%;
  left: 24%;
}
.menuB__intro .menuB__intro_note2 {
  width: 10.66%;
  bottom: -1.7%;
  left: 8.5%;
}
.menuB__intro .menuB__intro_maron {
  width: 35.4%;
  bottom: -2%;
  right: -9.5%;
}

.menuB__item .menuB__item_lead {
  width: 49.86%;
  margin: 0 auto 9.06% auto;
}
.menuB__item .menuB__item_lead img {
  top: 0;
  left: 0;
}
.menuB__item .menuB__item_img {
  width: 57.86%;
  margin: 0 auto 20px auto;
}
.menuB__item .menuB__item_ph {
  width: 65.43%;
  margin: auto;
  inset: 0;
  left: 4%;
}
.menuB__item .menuB__item_maron {
  width: 24.53%;
  bottom: -8.5%;
  left: -6%;
}
.menuB__item .menu_item_price {
  margin-bottom: 20%;
}

.menuB__filling .menuB__filling_title {
  width: 43.2%;
  margin: 0 auto;
  top: 10.5%;
  left: 0;
  right: 0;
  z-index: 1;
}
.menuB__filling .menuB__filling_ph {
  bottom: 10.5%;
  left: 0;
  z-index: 1;
}
.menuB__filling .menuB__filling_line {
  bottom: 10.5%;
  left: 0;
  z-index: 2;
}
.menuB__filling .menuB__filling_caption img {
  bottom: 10.5%;
  left: 0;
  z-index: 2;
}
.menuB__filling .menuB__filling_bg {
  width: 106.4%;
  left: -3.2%;
}

.menuC {
  margin-bottom: 9.33%;
}

.menuC__intro {
  margin-bottom: 12.8%;
}
.menuC__intro .menuC__intro_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.menuC__intro .menuC__intro_text .menuC__intro_text1 {
  width: 25.06%;
  top: 10%;
  left: 14.13%;
}
.menuC__intro .menuC__intro_text .menuC__intro_text2 {
  width: 11.73%;
  top: 42%;
  left: 37.06%;
}
.menuC__intro .menuC__intro_text .menuC__intro_text3 {
  width: 19.2%;
  top: 55%;
  left: 42.66%;
}
.menuC__intro .menuC__intro_text .menuC__intro_text4 {
  width: 16.8%;
  top: 73.5%;
  left: 61.6%;
}
.menuC__intro .menuC__intro_illust {
  width: 42.6%;
  top: 14%;
  right: 5.6%;
}
.menuC__intro .menuC__intro_line {
  clip-path: inset(0 120% 0 0);
}
.menuC__intro .menuC__intro_note {
  width: 9.6%;
  bottom: -1.2%;
  right: 8%;
}
.menuC__intro .menuC__intro_maron {
  width: 40.8%;
  bottom: -5%;
  left: -13%;
}

.menuC__item .menuC__item_lead {
  width: 49.6%;
  margin: 0 auto 7.2% auto;
}
.menuC__item .menuC__item_lead img {
  top: 0;
  left: 0;
}
.menuC__item .menuC__item_img {
  width: 92.26%;
  margin: 0 auto 20px auto;
}
.menuC__item .menuC__item_ph {
  width: 78.03%;
  margin: 0 auto;
  inset: 0;
  top: 22%;
}
.menuC__item .menu_item_name {
  color: #5A3235;
}
.menuC__item .menu_item_price {
  color: #5A3235;
  background-image: url(/lp/2025_uttorimaromaro/images/bdr_item_price_brown.png);
}
.menuC__item .menuC__item_maron {
  width: 28.53%;
  bottom: -10%;
  right: -8%;
}

.menuC__filling .menuC__filling_title {
  width: 43.2%;
  margin: 0 auto;
  top: 18%;
  left: 0;
  right: 0;
  z-index: 1;
}
.menuC__filling .menuC__filling_ph {
  bottom: 25%;
  left: 0;
  z-index: 1;
}
.menuC__filling .menuC__filling_line {
  bottom: 25%;
  left: 0;
  z-index: 2;
}
.menuC__filling .menuC__filling_caption img {
  bottom: 25%;
  left: 0;
  z-index: 2;
}
.menuC__filling .menuC__filling_bg {
  width: 118.4%;
  left: -9.2%;
}

.menuD {
  margin-bottom: 19.46%;
}

.menuD__intro {
  margin-bottom: 13%;
}
.menuD__intro .menuD__intro_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.menuD__intro .menuD__intro_text .menuD__intro_text1 {
  width: 33.86%;
  top: 13.8%;
  left: 52.9%;
}
.menuD__intro .menuD__intro_text .menuD__intro_text2 {
  width: 20.8%;
  top: 37%;
  left: 49%;
}
.menuD__intro .menuD__intro_text .menuD__intro_text3 {
  width: 25.86%;
  top: 57%;
  left: 25.33%;
}
.menuD__intro .menuD__intro_text .menuD__intro_text4 {
  width: 14.66%;
  top: 76.5%;
  left: 43.2%;
}
.menuD__intro .menuD__intro_illust {
  width: 37.06%;
  top: 0%;
  left: 6.66%;
}
.menuD__intro .menuD__intro_line {
  clip-path: inset(0 0 0 120%);
}
.menuD__intro .menuD__intro_note1 {
  width: 11.73%;
  bottom: -1.3%;
  left: 10.13%;
}
.menuD__intro .menuD__intro_note2 {
  width: 6.13%;
  bottom: 9%;
  left: 25.6%;
}
.menuD__intro .menuD__intro_maron {
  width: 33.6%;
  bottom: 3%;
  right: -5%;
}

.menuD__item .menuD__item_lead {
  width: 54.93%;
  margin: 0 auto 6.93% auto;
}
.menuD__item .menuD__item_lead img {
  top: 0;
  left: 0;
}
.menuD__item .menuD__item_img {
  width: 74.66%;
  margin: 0 auto 20px auto;
}
.menuD__item .menuD__item_ph {
  width: 51.42%;
  top: 18%;
  left: 22%;
}
.menuD__item .menuD__item_maron {
  width: 25.33%;
  bottom: -1%;
  left: -6%;
}

.menuD__filling .menuD__filling_title {
  width: 43.2%;
  margin: 0 auto;
  top: 16%;
  left: 0;
  right: 0;
  z-index: 1;
}
.menuD__filling .menuD__filling_ph {
  bottom: 19%;
  left: 0;
  z-index: 1;
}
.menuD__filling .menuD__filling_line {
  bottom: 19%;
  left: 0;
  z-index: 2;
}
.menuD__filling .menuD__filling_caption img {
  bottom: 19%;
  left: 0;
  z-index: 2;
}
.menuD__filling .menuD__filling_bg {
  width: 128%;
  left: -14%;
}

.menu_intro .menu_intro_text img {
  opacity: 0;
  filter: brightness(0.4);
}
.menu_intro .menu_intro_text img:nth-child(odd) {
  transform: translateY(-5%) rotate(10deg);
}
.menu_intro .menu_intro_text img:nth-child(even) {
  transform: translateY(-5%) rotate(-10deg);
}
.menu_intro .menu_intro_illust {
  opacity: 0;
  transform: translateY(10%) scale(0.95);
}
.menu_intro .menu_intro_illust.is-active {
  animation: menu_illust_fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.menu_intro .menu_intro_illust.is-active img {
  animation: menu_illust_rotate 4s ease infinite;
  animation-delay: 1s;
}
.menu_intro .menu_intro_note {
  opacity: 0;
  transform: translateY(20px);
}
.menu_intro.is-active .menu_intro_text img:nth-child(odd) {
  animation: menu_intro_text_fadeIn 2s ease-out forwards;
}
.menu_intro.is-active .menu_intro_text img:nth-child(even) {
  animation: menu_intro_text_fadeIn_reverse 2s ease-out forwards;
}
.menu_intro.is-active .menu_intro_text .menuA__intro_text1,
.menu_intro.is-active .menu_intro_text .menuB__intro_text1,
.menu_intro.is-active .menu_intro_text .menuC__intro_text1,
.menu_intro.is-active .menu_intro_text .menuD__intro_text1 {
  animation-delay: 1s !important;
}
.menu_intro.is-active .menu_intro_text .menuA__intro_text2,
.menu_intro.is-active .menu_intro_text .menuB__intro_text2,
.menu_intro.is-active .menu_intro_text .menuC__intro_text2,
.menu_intro.is-active .menu_intro_text .menuD__intro_text2 {
  animation-delay: 1.1s !important;
}
.menu_intro.is-active .menu_intro_text .menuA__intro_text3,
.menu_intro.is-active .menu_intro_text .menuB__intro_text3,
.menu_intro.is-active .menu_intro_text .menuC__intro_text3,
.menu_intro.is-active .menu_intro_text .menuD__intro_text3 {
  animation-delay: 1.2s !important;
}
.menu_intro.is-active .menu_intro_text .menuA__intro_text4,
.menu_intro.is-active .menu_intro_text .menuB__intro_text4,
.menu_intro.is-active .menu_intro_text .menuC__intro_text4,
.menu_intro.is-active .menu_intro_text .menuD__intro_text4 {
  animation-delay: 1.3s !important;
}
.menu_intro.is-active .menuA__intro_line,
.menu_intro.is-active .menuC__intro_line {
  animation: maskAnimation_normal 2.5s linear forwards;
}
.menu_intro.is-active .menuB__intro_line,
.menu_intro.is-active .menuD__intro_line {
  animation: maskAnimation_reverse 2.5s linear forwards;
}
.menu_intro.is-active .menu_intro_note {
  animation: menu_intro_note_fadeIn 2s linear forwards;
}
.menu_intro.is-active .menu_intro_note.menuA__intro_note, .menu_intro.is-active .menu_intro_note.menuC__intro_note {
  animation-delay: 2s;
}
.menu_intro.is-active .menu_intro_note.menuB__intro_note1, .menu_intro.is-active .menu_intro_note.menuD__intro_note1 {
  animation-delay: 2s;
}
.menu_intro.is-active .menu_intro_note.menuB__intro_note2, .menu_intro.is-active .menu_intro_note.menuD__intro_note2 {
  animation-delay: 2.2s;
}

@keyframes menu_intro_text_fadeIn {
  0% {
    opacity: 0;
    filter: brightness(0.2);
    transform: translateY(5%) rotate(10deg);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu_intro_text_fadeIn_reverse {
  0% {
    opacity: 0;
    filter: brightness(0.2);
    transform: translateY(5%) rotate(-10deg);
  }
  100% {
    opacity: 1;
    filter: brightness(1);
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu_illust_fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes menu_illust_rotate {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes menu_intro_note_fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    transform: translateY(0) rotate(0);
  }
  80% {
    transform: translateY(0) rotate(5deg);
  }
  85% {
    transform: translateY(0) rotate(-5deg);
  }
  90% {
    transform: translateY(0) rotate(5deg);
  }
  95% {
    transform: translateY(0) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.menu_item .menu_item_lead img {
  opacity: 0;
  transform: translateY(20px);
}
.menu_item .menu_item_img .menu_item_ph {
  opacity: 0;
  transform: translateY(10%);
}
.menu_item .menu_item_img .menu_item_bg {
  opacity: 0;
}
.menu_item .menu_item_name {
  opacity: 0;
  transform: translateY(10%);
}
.menu_item .menu_item_price {
  opacity: 0;
  transform: translateY(10%);
}

.menu_filling {
  opacity: 0;
  transform: translateY(10%);
}
.menu_filling .menu_filling_line {
  clip-path: inset(0 50% 0 50%);
}
.menu_filling ul li img {
  opacity: 0;
  transform: translateY(10px);
}
.menu_filling.is-active .menu_filling_line {
  animation: menu_filling_line_animation 1.5s linear forwards;
  animation-delay: 0.6s;
}

@keyframes menu_filling_line_animation {
  0% {
    clip-path: inset(0 50% 0 50%);
  }
  100% {
    clip-path: inset(0);
  }
}
.shop__intro {
  margin-bottom: 33.06%;
}
.shop__intro .shop__intro_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.shop__intro .shop__intro_text img {
  opacity: 0;
  filter: brightness(0.4);
}
.shop__intro .shop__intro_text img:nth-child(odd) {
  transform: translateY(-5%) rotate(10deg);
}
.shop__intro .shop__intro_text img:nth-child(even) {
  transform: translateY(-5%) rotate(-10deg);
}
.shop__intro .shop__intro_text .shop__intro_text1 {
  width: 26.13%;
  top: 1%;
  left: 20%;
}
.shop__intro .shop__intro_text .shop__intro_text2 {
  width: 11.73%;
  top: 32%;
  left: 43.73%;
}
.shop__intro .shop__intro_text .shop__intro_text3 {
  width: 19.73%;
  top: 44%;
  left: 49.6%;
}
.shop__intro .shop__intro_text .shop__intro_text4 {
  width: 16.8%;
  top: 63%;
  left: 67.46%;
}
.shop__intro .shop__intro_text .shop__intro_text5 {
  width: 29.33%;
  top: 42.5%;
  left: 12.53%;
}
.shop__intro .shop__intro_text .shop__intro_text6 {
  width: 15.2%;
  top: 67.5%;
  left: 31.2%;
}
.shop__intro .shop__intro_text .shop__intro_text7 {
  width: 22.66%;
  top: 83%;
  left: 38.1%;
}
.shop__intro .shop__intro_text .shop__intro_text8 {
  width: 14.66%;
  top: 94%;
  left: 57.06%;
}
.shop__intro .shop__intro_line {
  clip-path: inset(0 120% 0 0);
}
.shop__intro .shop__intro_note {
  width: 10.13%;
  bottom: 0.8%;
  right: 8.26%;
  opacity: 0;
  transform: translateY(20px);
}
.shop__intro .shop__intro_maron1 {
  width: 43.73%;
  top: -5%;
  right: -9%;
}
.shop__intro .shop__intro_maron2 {
  width: 34.4%;
  bottom: -22%;
  left: -7%;
}
.shop__intro.is-active .shop__intro_text img:nth-child(odd) {
  animation: menu_intro_text_fadeIn 2s ease-out forwards;
}
.shop__intro.is-active .shop__intro_text img:nth-child(even) {
  animation: menu_intro_text_fadeIn_reverse 2s ease-out forwards;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text1 {
  animation-delay: 1s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text2 {
  animation-delay: 1.1s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text3 {
  animation-delay: 1.2s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text4 {
  animation-delay: 1.3s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text5 {
  animation-delay: 1.4s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text6 {
  animation-delay: 1.5s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text7 {
  animation-delay: 1.6s !important;
}
.shop__intro.is-active .shop__intro_text .shop__intro_text8 {
  animation-delay: 1.7s !important;
}
.shop__intro.is-active .shop__intro_line {
  animation: maskAnimation_normal 2.5s linear forwards;
}
.shop__intro.is-active .shop__intro_note {
  animation: menu_intro_note_fadeIn 2s linear forwards;
  animation-delay: 2.5s;
}

.shop__content .shop__content_title {
  width: 46.93%;
  margin: 0 auto 2.66% auto;
}
.shop__content .shop__content_title img {
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
}
.shop__content .menuD__item_img {
  width: 74.66%;
  margin: 0 auto 20px auto;
}
.shop__content .menuD__item_ph {
  width: 51.42%;
  top: 18%;
  left: 22%;
}

.manekin {
  width: 63.46%;
  margin: 0 auto 1.33% auto;
  opacity: 0.85;
}
.manekin .manekin__bdr {
  width: 94%;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
.manekin .manekin__mask {
  width: 94%;
  height: 86.93%;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  overflow: hidden;
  mask-image: url(/lp/2025_uttorimaromaro/images/manekin_bg.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-image: url(/lp/2025_uttorimaromaro/images/manekin_bg.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
}
.manekin .manekin__body {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.manekin .manekin__arm {
  width: 14.73%;
  top: 50%;
  left: 60%;
  z-index: 3;
}
.manekin .manekin__arm img {
  transform-origin: bottom;
  animation: manekinArm 5s ease-in-out infinite;
}
.manekin .manekin__spoon {
  width: 25.44%;
  top: 47%;
  left: 51%;
  z-index: 2;
}
.manekin .manekin__spoon img {
  transform-origin: bottom;
  animation: manekinSpoon 5s ease-in-out infinite;
}
.manekin .manekin__cream {
  width: 124.1%;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
}
.manekin .manekin__cream img {
  width: 100%;
  flex-shrink: 0;
  animation: creamLoop 20s linear infinite;
}

@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(10deg) translateX(-40%) translateY(20%);
  }
  60% {
    transform: rotate(10deg) translateX(-40%) translateY(20%);
  }
  100% {
    transform: rotate(0) translateX(0);
  }
}
@keyframes creamLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.shop__search {
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.8s, transform 0.8s;
}
.shop__search.is-active {
  opacity: 1;
  transform: translateY(0);
}
.shop__search .shop__search_title {
  width: 41.33%;
  margin: 0 auto 1.86% auto;
}
.shop__search .shop__search_icon {
  width: 18.4%;
  margin: 0 auto 5.86% auto;
}
.shop__search .shop__search_icon img {
  top: 0;
  left: 0;
}
.shop__search .caps {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  color: #5A1800;
  line-height: 1.7;
  padding: 0 20px;
}
@media screen and (max-width: 1535px) {
  .shop__search .caps {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .shop__search .caps {
    font-size: 12px;
  }
}