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

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

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.leftside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background-image: url(/lp/2025_momojuwa/images/left_bg.jpg);
  background-size: 100% 100%;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .leftside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .leftside {
    display: none;
  }
}
.leftside .left-peach-01 {
  width: 56.5%;
  top: 15%;
  left: -15%;
  animation: peach-small 2s ease-in-out infinite alternate-reverse;
}
.leftside .left-peach-02 {
  width: 34.5%;
  top: 49%;
  right: 7%;
  animation: peach-small 2s ease-in-out infinite alternate-reverse 0.3s;
  transform: translateY(7.5%) rotate(10deg);
}
.leftside .left-typo {
  width: 45.6%;
  top: 23%;
  left: 29%;
  animation: left-blur 10s ease-in-out infinite alternate;
}
.leftside .left-bubble {
  width: 86%;
  top: 13%;
  left: 15%;
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background-image: url(/lp/2025_momojuwa/images/right_bg.jpg);
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}
.rightside .right-peach-01 {
  width: 60%;
  top: 20%;
  left: -20%;
  animation: peach-small 2s ease-in-out infinite alternate-reverse 0.1s;
  transform: translateY(7.5%) rotate(10deg);
}
.rightside .right-peach-02 {
  width: 37%;
  top: 52%;
  left: 37%;
  animation: peach-small 2s ease-in-out infinite alternate-reverse 0.3s;
  transform: translateY(7.5%) rotate(10deg);
}
.rightside .right-peach-03 {
  width: 48%;
  top: 14%;
  right: -22%;
  animation: peach-small 2s ease-in-out infinite alternate-reverse 0.6s;
  transform: translateY(7.5%) rotate(10deg);
}
.rightside .right-bubble {
  width: 41.8%;
  top: 25%;
  left: 30%;
}
.rightside .right-qr {
  width: 50%;
  left: 10%;
  bottom: 4.5%;
}

@keyframes left-blur {
  0% {
    filter: blur(0px);
    transform: rotate(0);
  }
  50% {
    filter: blur(5px);
    transform: rotate(4deg);
  }
  100% {
    filter: blur(0px);
    transform: rotate(0);
  }
}
/* FIXED OPENING
================================*/
.sec-open {
  position: fixed;
  overflow-x: clip;
  width: 600px;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 130;
  background-image: url(/lp/2025_momojuwa/images/op_bg.jpg);
  background-size: 100%;
  background-position: top;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-open {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .sec-open {
    width: 100%;
  }
}
.sec-open .open-typo {
  top: 53%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
}
.sec-open .open-typo-active {
  animation: open-blur 4s ease-out forwards;
  opacity: 1;
}
.sec-open .open-typo-02 {
  opacity: 0;
  animation-delay: 0.5s;
}
.sec-open .open-typo-03 {
  opacity: 0;
  animation-delay: 1s;
}

.sec-open-active {
  animation: open-bg-blur 4s forwards 3.5s;
}

@keyframes open-bg-blur {
  0% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 0;
    filter: blur(30px);
  }
}
@keyframes open-blur {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: translateY(-50%) scale(1);
  }
  35% {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  60% {
    filter: blur(0px);
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
    filter: blur(2px);
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
.sec-open-peach {
  position: fixed;
  overflow-x: clip;
  width: 600px;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 120;
}
@media screen and (max-width: 1535px) {
  .sec-open-peach {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .sec-open-peach {
    width: 100%;
  }
}

/*   OPEN PEACH
=========================== */
@keyframes open-peach {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(50%) rotate(45deg);
    opacity: 0;
  }
}
.op-01 {
  width: 62%;
  top: -10%;
  left: -5%;
  z-index: 240;
}

.op-01-active {
  animation: open-peach 2s ease-in 3s forwards;
}

.op-02 {
  width: 56%;
  top: 10%;
  right: -15%;
  z-index: 240;
}

.op-02-active {
  animation: open-peach 2.5s ease-in 3.1s forwards;
}

.op-03 {
  width: 40%;
  top: 32%;
  left: -5%;
  z-index: 240;
}

.op-03-active {
  animation: open-peach 2s ease-in 4s forwards;
}

.op-04 {
  width: 44%;
  top: 40%;
  left: 35%;
  z-index: 240;
}

.op-04-active {
  animation: open-peach 2.3s ease-in 3.3s forwards;
}

.op-05 {
  width: 70%;
  top: 60%;
  left: -20%;
  z-index: 240;
}

.op-05-active {
  animation: open-peach 2.5s ease-in 3s forwards;
}

.op-06 {
  width: 70%;
  top: 60%;
  right: -20%;
  z-index: 240;
}

.op-06-active {
  animation: open-peach 2.6s ease-in 3s forwards;
}

/* Margin Calc Set
===============================*/
/* 共通
===============================*/
#message-body {
  background-color: #ffb600;
}

/* 選択肢①
===============================*/
.areaA {
  padding-top: 208px;
  padding-bottom: 85px;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
}
@media screen and (max-width: 1535px) {
  .areaA {
    padding-top: calc(208px * 0.75);
    padding-bottom: calc(77px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaA {
    padding-top: calc(208 * 0.625 / 375 * 100vw);
    padding-bottom: calc(77 * 0.625 / 375 * 100vw);
  }
}
.areaA .areaA-h1 {
  width: 86%;
  margin: 0 auto;
}
.areaA .areaA-result-img {
  transform: scaleY(0.8);
  opacity: 0;
  transform-origin: top;
  transition: 0.5s;
}
.areaA .areaA-result-active {
  transform: scaleY(1);
  opacity: 1;
  transform-origin: top;
}
.areaA .areaA-btn, .areaA .areaA-btn-02 {
  display: block;
  margin: -4% auto 0 auto;
  opacity: 0.5;
  width: 38%;
  transition: 0.3s;
  z-index: 100;
}
.areaA .areaA-btn-active, .areaA .areaA-btn-02-active {
  opacity: 1;
}
.areaA .areaA-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

/* セレクトボックス設定
===============================*/
.arrow-top {
  display: block;
  width: 9.5%;
  top: 10%;
  left: 45.5%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .arrow-top {
    top: 10%;
  }
}

.arrow-bottom {
  display: block;
  width: 9.5%;
  top: 76.5%;
  left: 46%;
  margin: -18px auto 0 auto;
}
@media screen and (max-width: 600px) {
  .arrow-bottom {
    top: 78.5%;
  }
}

.selectboxA-inner {
  width: 96.8%;
  height: 520px;
  background-image: url(/lp/2025_momojuwa/message_img/areaA_selectboxA.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 85px;
  margin: 0 auto;
}
@media screen and (max-width: 1535px) {
  .selectboxA-inner {
    height: calc(520px * 0.75);
    padding-top: calc(80px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .selectboxA-inner {
    height: calc(520 * 0.625 / 375 * 100vw);
    padding-top: calc(85 * 0.625 / 375 * 100vw);
  }
}
.selectboxA-inner .scrollbox {
  overflow-y: scroll;
  height: 66%;
  padding-top: 10px;
}
.selectboxA-inner .scrollbox::-webkit-scrollbar {
  display: none;
}
.selectboxA-inner .sel-btn-settings {
  display: block;
  width: 71%;
  margin: 0 auto 14px auto;
  border-radius: 22px;
  background-color: #fc9d00;
  padding: 17px 20px 15px 20px;
  text-align: center;
  box-shadow: inset 5px 5px 14px rgba(195, 60, 0, 0.4), 1.5px 3px 8px rgba(83, 16, 0, 0.5);
}
@media screen and (max-width: 1535px) {
  .selectboxA-inner .sel-btn-settings {
    padding-top: calc(17px * 0.75);
    padding-left: calc(20px * 0.75);
    padding-bottom: calc(15px * 0.75);
    padding-right: calc(20px * 0.75);
    margin-bottom: calc(14px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .selectboxA-inner .sel-btn-settings {
    padding-top: calc(17 * 0.625 / 375 * 100vw);
    padding-left: calc(20 * 0.625 / 375 * 100vw);
    padding-bottom: calc(15 * 0.625 / 375 * 100vw);
    padding-right: calc(20 * 0.625 / 375 * 100vw);
    margin-bottom: calc(14 * 0.625 / 375 * 100vw);
    border-radius: 13px;
  }
}

/* 
===============================*/
.areaA-resultWord, .areaB-resultWord {
  width: 65%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #641719;
  text-align: center;
}

.areaA-resultWord {
  opacity: 0;
  transition: 0.5s;
}

.areaA-result {
  margin-top: -1%;
}

/* AREA B
===============================*/
.areaB {
  position: fixed;
  width: 600px;
  height: 100vh;
  top: 0;
  left: calc(50% - 300px);
  padding-top: 230px;
  padding-bottom: 232px;
  z-index: 100;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
  overflow-y: auto;
  overflow-x: clip;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 1535px) {
  .areaB {
    width: 450px;
    left: calc(50% - 225px);
    padding-top: calc(230px * 0.75);
    padding-bottom: calc(270px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaB {
    width: 100%;
    top: 0;
    left: 0;
    padding-top: calc(230 * 0.625 / 375 * 100vw);
    padding-bottom: calc(270 * 0.625 / 375 * 100vw);
  }
}
.areaB .areaB-content {
  overflow-y: auto;
}
.areaB .areaB-h2 {
  width: 100%;
  margin-bottom: 26px;
}
@media screen and (max-width: 1535px) {
  .areaB .areaB-h2 {
    margin-bottom: calc(26px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaB .areaB-h2 {
    margin-bottom: calc(26 * 0.625 / 375 * 100vw);
  }
}
.areaB .areaB-btn-con {
  display: flex;
  justify-content: space-between;
  width: 74%;
  margin: 0 auto;
}
.areaB .areaB-btn-con button {
  width: 100%;
}
.areaB .areaB-fusha {
  width: 280%;
  height: 150vh;
  top: -19%;
  left: -89%;
  overflow: hidden;
}
.areaB .areaB-fusha .fusha-img {
  animation: rotate360 20s linear infinite;
}

@keyframes rotate360 {
  100% {
    transform: rotate(360deg);
  }
}
/* AREA C
===================================*/
.areaC {
  padding-top: 235px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, rgb(188, 89, 0) 0%, rgb(201, 108, 0) 13.9%, rgb(214, 128, 0) 33.01%, rgb(219, 135, 0) 45.95%, rgb(216, 128, 0) 63.25%, rgb(209, 108, 0) 88.92%, rgb(206, 98, 0) 98.77%);
  overflow-x: clip;
  /*  ボタン周り
  ==================*/
}
@media screen and (max-width: 1535px) {
  .areaC {
    padding-top: calc(235px * 0.75);
    padding-bottom: calc(15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaC {
    padding-top: calc(235 * 0.625 / 375 * 100vw);
    padding-bottom: calc(15 * 0.625 / 375 * 100vw);
  }
}
.areaC .areaC-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}
.areaC .letter-wrap {
  width: 200%;
  overflow-x: scroll;
}
.areaC .letter-container {
  display: flex;
}
.areaC .letter-main {
  height: 462px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .areaC .letter-main {
    height: calc(462px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaC .letter-main {
    height: calc(462 * 0.625 / 375 * 100vw);
  }
}
.areaC .letter-main .main-message-box {
  width: 61.8%;
  top: 0%;
  left: 20%;
}
.areaC .letter-main .main-message-box .main-left {
  width: 57%;
  top: 9%;
  left: -38%;
  transform-origin: right 60%;
  animation: left-wing 2.5s ease-in-out alternate-reverse infinite;
}
.areaC .letter-main .main-message-box .main-right {
  width: 57%;
  top: 9%;
  right: -38%;
  transform-origin: left 60%;
  animation-delay: 1.2s;
  animation: right-wing 2.5s ease-in-out alternate-reverse infinite;
}
.areaC .letter-main .main-message-box .areaC-resultWord {
  width: 77%;
  text-align: center;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.35;
}
.areaC .letter-main .main-message-send {
  transform: translateY(-150%) scale(0.47);
  opacity: 0;
  transition: 2s ease-in-out;
}
.areaC .letter-main .areaC-btn {
  display: block;
  top: 48%;
  left: 23%;
  width: 56.4%;
  transition: 0.5s;
}
.areaC .letter-main .areaC-complete {
  width: 100%;
  top: 15%;
  left: 0;
  transition: 1s;
  transition-delay: 2.2s;
}

/* AREA C メッセージコンテナ設定
===================================*/
.areaC-horizontal {
  width: 600px;
  height: 145px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.areaC-horizontal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1535px) {
  .areaC-horizontal {
    width: 450px;
    height: 105px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-horizontal {
    width: 100vw;
    height: 23.2vw;
  }
}

.areaC-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
  width: 1850px;
}
@media screen and (max-width: 1535px) {
  .areaC-container {
    width: 1400px;
    gap: 15px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-container {
    width: 307vw;
    gap: 3.3vw;
  }
}

.item {
  flex: 0 0 auto;
  width: 15%;
  scroll-snap-align: center;
}
@media screen and (max-width: 1535px) {
  .item {
    width: 15%;
  }
}
@media screen and (max-width: 600px) {
  .item {
    width: 15%;
  }
}

.item-center {
  width: 16%;
}
@media screen and (max-width: 1535px) {
  .item-center {
    width: 16%;
  }
}
@media screen and (max-width: 600px) {
  .item-center {
    width: 15%;
  }
}

.letter-box {
  margin: 0 auto;
  width: 73%;
}
.letter-box .wing-box-gold, .letter-box .wing-gold, .letter-box .wing-box-blank, .letter-box .letter-box-message-result {
  transition: 1.5s;
  transition-delay: 1.5s;
}
.letter-box .wing-left-blank {
  width: 24%;
  top: 38%;
  left: -21%;
}
.letter-box .wing-right-blank {
  width: 24%;
  top: 38%;
  right: -21%;
}
.letter-box .wing-left {
  width: 70%;
  top: 3%;
  left: -43%;
  transform-origin: right 60%;
  animation: left-wing 2.5s ease-in-out infinite;
}
.letter-box .wing-right {
  width: 70%;
  top: 3%;
  right: -43%;
  transform-origin: left 60%;
  animation: right-wing 2.5s ease-in-out infinite;
}
.letter-box .letter-box-message {
  display: block;
  width: 140px;
  top: 50%;
  left: 50%;
  white-space: normal;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1535px) {
  .letter-box .letter-box-message {
    width: 110px;
  }
}
@media screen and (max-width: 600px) {
  .letter-box .letter-box-message {
    width: 69%;
  }
}

/* AREA D
===================================*/
.areaD {
  padding-top: 120px;
}
@media screen and (max-width: 1535px) {
  .areaD {
    padding-top: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD {
    padding-top: calc(150 * 0.625 / 375 * 100vw);
  }
}

.areaD-h2 {
  margin-bottom: 22px;
}
@media screen and (max-width: 1535px) {
  .areaD-h2 {
    margin-bottom: calc(13px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-h2 {
    margin-bottom: calc(13 * 0.625 / 375 * 100vw);
  }
}

.areaD-ranking {
  width: 77.3%;
  margin: 0 auto;
  padding-top: 101px;
  z-index: 5;
}
@media screen and (max-width: 1535px) {
  .areaD-ranking {
    padding-top: calc(101px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-ranking {
    padding-top: calc(101 * 0.625 / 375 * 100vw);
  }
}
.areaD-ranking .ranking-head {
  width: 117%;
  top: -35px;
  left: -9%;
  z-index: 5;
}
@media screen and (max-width: 1535px) {
  .areaD-ranking .ranking-head {
    top: -20px;
  }
}
@media screen and (max-width: 600px) {
  .areaD-ranking .ranking-head {
    top: -4vw;
  }
}
.areaD-ranking .areaD-container {
  display: flex;
  margin-top: -1px;
}
.areaD-ranking .areaD-container .areaD-top {
  height: 70px;
}
.areaD-ranking .areaD-container .D-left {
  width: 15%;
  background-color: #ffdd4d;
}
.areaD-ranking .areaD-container .D-left .left-img {
  top: 50%;
  left: 0;
  width: 16%;
  transform: translateY(-50%);
}
.areaD-ranking .areaD-container .left-orange {
  background-color: #ff8500;
}
.areaD-ranking .areaD-container .D-right {
  width: 85%;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-left: 5%;
  padding-right: 5%;
  background-color: #ffeeac;
}
.areaD-ranking .areaD-container .right-orange {
  background-color: #ffc466;
}

.last-left {
  border-bottom-left-radius: 20px;
}

.last-right {
  border-bottom-right-radius: 20px;
}

.ranking-cheese-01 {
  top: 25%;
  left: -8%;
  width: 33%;
}

.ranking-cheese-02 {
  top: 26%;
  right: -8%;
  width: 31%;
}

.ranking-cheese-03 {
  top: 45%;
  right: -8%;
  width: 25.8%;
}

.ranking-cheese-04 {
  top: 65%;
  left: -4%;
  width: 25.8%;
}

.ranking-cheese-05 {
  top: 84%;
  right: -5%;
  width: 30.8%;
}

.areaD-return {
  display: block;
  width: 37%;
  margin: 22px auto 74px auto;
}
@media screen and (max-width: 1535px) {
  .areaD-return {
    margin-top: calc(22px * 0.75);
    margin-bottom: calc(74px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .areaD-return {
    margin-top: calc(22 * 0.625 / 375 * 100vw);
    margin-bottom: calc(74 * 0.625 / 375 * 100vw);
  }
}

/* フォントサイズ設定
===============================*/
.sel-btn-settings {
  font-size: 20px;
  font-weight: 900;
  color: #641719;
  transition: 0.2s;
}
@media screen and (max-width: 1535px) {
  .sel-btn-settings {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .sel-btn-settings {
    font-size: 13px;
  }
}

.sel-btn-active {
  color: #fff3c2 !important;
  transform: scale(0.95);
  transform-origin: center;
}

.areaA-resultWord, .areaB-resultWord {
  color: #641719;
  font-size: 29px;
  font-weight: 900;
}
@media screen and (max-width: 1535px) {
  .areaA-resultWord, .areaB-resultWord {
    font-size: 21px;
  }
}
@media screen and (max-width: 600px) {
  .areaA-resultWord, .areaB-resultWord {
    font-size: 18px;
  }
}

.areaC-resultWord {
  color: #641719;
  font-size: 22px;
  font-weight: 900;
}
@media screen and (max-width: 1535px) {
  .areaC-resultWord {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .areaC-resultWord {
    font-size: 14px;
  }
}

.letter-box-message {
  font-size: 14px;
  font-weight: 900;
  color: #641719;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1535px) {
  .letter-box-message {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .letter-box-message {
    font-size: 10px;
    transform-origin: center;
  }
}

.D-right {
  color: #641719;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1535px) {
  .D-right {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .D-right {
    font-size: 12px;
  }
}

.show {
  opacity: 1;
  transition: 0.5s;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

/* FIXED
====================================*/
.mes-fixed {
  position: fixed;
  top: 0;
  left: calc(50% - 300px);
  width: 600px;
  height: 100vh;
  overflow: hidden;
  z-index: 300;
}
@media screen and (max-width: 1535px) {
  .mes-fixed {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .mes-fixed {
    width: 100%;
    left: 0;
  }
}
.mes-fixed .mes-fixed-wrap {
  width: 100%;
  height: 100vh;
}
.mes-fixed .mes-fixed-wrap .mes-top {
  width: 100%;
  height: 50vh;
  top: 0;
  left: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-bottom {
  width: 100%;
  height: 50vh;
  bottom: 0;
  right: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-left {
  width: 50%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-right {
  width: 50%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #ffb900;
}
.mes-fixed .mes-fixed-wrap .mes-top-active {
  transform: translateY(-1200px);
  transition: 3.8s;
}
@media screen and (max-width: 600px) {
  .mes-fixed .mes-fixed-wrap .mes-top-active {
    transition: 4.8s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-bottom-active {
  transform: translateY(1200px);
  transition: 4s;
}
@media screen and (max-width: 600px) {
  .mes-fixed .mes-fixed-wrap .mes-bottom-active {
    transition: 4.8s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-left-active {
  transform: translateX(-570%);
  transition: 4.8s;
}
@media screen and (max-width: 1535px) {
  .mes-fixed .mes-fixed-wrap .mes-left-active {
    transition: 5s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-right-active {
  transform: translateX(570%);
  transition: 4.8s;
}
@media screen and (max-width: 1535px) {
  .mes-fixed .mes-fixed-wrap .mes-right-active {
    transition: 5s;
  }
}
.mes-fixed .mes-fixed-wrap .mes-abs {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mes-fixed .mes-fixed-wrap .mes-abs .mes-abs-img {
  transform-origin: center;
  transform: scale(0) rotate(10deg);
}
.mes-fixed .mes-fixed-wrap .mes-abs .mes-abs-img-active {
  animation: mes-op 2s linear forwards;
}
@keyframes mes-op {
  0% {
    transform: scale(0) rotate(5deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scale(3) rotate(0);
    opacity: 0;
  }
}

/* メインビジュアル セクション
===============================*/
.mv-peach-01 {
  width: 72.26%;
  top: 24.6%;
  right: -54%;
}

.mv-peach-02 {
  width: 53.57%;
  top: 16.5%;
  left: -16.8%;
}

.mv-peach-03 {
  width: 41.06%;
  top: 5%;
  right: 8.1%;
}

.mv-bubble-01 {
  width: 100%;
  top: 58.6%;
  left: 0;
}

.mv-bubble-02 {
  width: 100%;
  top: 69.95%;
  left: 0;
}

.mv-bubble-03 {
  width: 100%;
  top: 83.8%;
  left: 0;
}

.mv-typo-01 {
  width: 40.5%;
  top: 11.9%;
  right: -0.9%;
}

.mv-typo-02 {
  width: 21%;
  top: 40.45%;
  right: 4.4%;
}

.mv-typo-03 {
  width: 35.4%;
  top: 12.8%;
  left: 3.92%;
}

.mv-typo-04 {
  width: 33.6%;
  top: 40%;
  left: -2%;
}

.mv-stamp {
  width: 32.6%;
  bottom: -3.8%;
  right: -2%;
  z-index: 5;
}

/* イントロ セクション
===============================*/
.intro-peach-01 {
  width: 71.3%;
  top: 4.6%;
  left: -11%;
}

.intro-peach-02 {
  width: 41.7%;
  top: 47.5%;
  right: -5%;
}

.intro-bubble-01 {
  width: 61.7%;
  top: 9.5%;
  left: 39%;
}

.intro-bubble-02 {
  width: 13.57%;
  top: 48.5%;
  left: 5%;
}

.intro-bubble-03 {
  width: 22.02%;
  top: 52.5%;
  left: 78%;
}

/* フィーチュア セクション
===============================*/
.feature-peach-01 {
  width: 61.5%;
  top: -5%;
  left: -13%;
}

.feature-peach-02 {
  width: 53.8%;
  top: 43%;
  left: 62%;
}

.feature-bubble-01 {
  width: 39.2%;
  top: -2%;
  left: 8%;
}

.feature-bubble-02 {
  width: 23.2%;
  top: -3%;
  left: 60%;
}

/* menuA セクション
===============================*/
.menuA-peach-01 {
  width: 54.4%;
  top: -61%;
  right: 0;
}

.menuA-peach-02 {
  width: 55.3%;
  top: 6%;
  left: 0;
}

.menuA-bubble-01 {
  width: 55.2%;
  right: 7.2%;
  top: -8%;
}

.menuA-bubble-02 {
  width: 36%;
  left: 4.8%;
  top: -73%;
}

.menuA-typo-01 {
  width: 44.9%;
  top: -65.5%;
  left: 24.1%;
}

.menuA-typo-02 {
  width: 24.9%;
  top: 24.5%;
  left: 46.1%;
}

.menuA-stamp {
  width: 22.6%;
  top: 3%;
  left: 15%;
}

.circleA-h3 {
  width: 100%;
  top: -6%;
  left: 0;
}

.circleA-ph {
  top: 15%;
  left: 0;
}

.circleA-caption {
  top: 15%;
  left: 0%;
}

.circleA-stamp {
  width: 31.9%;
  top: 53%;
  left: 13.5%;
}

/* menuB セクション
===============================*/
.menuB-peach-01 {
  width: 66.13%;
  top: -108%;
  left: 0;
}

.menuB-peach-02 {
  width: 44.5%;
  top: -10.5%;
  left: 43.46%;
}

.menuB-bubble-01 {
  width: 18.4%;
  left: 59.7%;
  top: -143.5%;
}

.menuB-bubble-02 {
  width: 31.7%;
  left: 16.8%;
  top: -108%;
}

.menuB-bubble-03 {
  width: 41.9%;
  left: 37.3%;
  top: -5%;
}

.menuB-typo-01 {
  width: 42.6%;
  top: -131.5%;
  left: 28%;
}

.menuB-typo-02 {
  width: 31.9%;
  top: -18%;
  left: 31.46%;
}

.menuB-stamp {
  width: 22.6%;
  top: 3%;
  left: 15%;
}

.circleB-h3 {
  width: 100%;
  top: -5%;
  left: 0;
}

.circleB-ph {
  top: 16%;
  left: 0;
}

.circleB-caption {
  top: 16%;
  left: 0%;
}

/* menuC セクション
===============================*/
.menuC-peach-01 {
  width: 70.1%;
  left: 20.8%;
  top: 24%;
}

.menuC-peach-02 {
  width: 47.3%;
  left: 8.9%;
  top: -9%;
}

.menuC-typo-01 {
  width: 26.66%;
  top: -64%;
  left: 42.8%;
}

.menuC-typo-02 {
  width: 44.93%;
  top: -15.5%;
  left: 22.13%;
}

.menuC-bubble-01 {
  width: 18.37%;
  top: -90%;
  left: 65.4%;
}

.menuC-bubble-02 {
  width: 30.8%;
  left: 18.6%;
  top: -57%;
}

.menuC-bubble-03 {
  width: 26.2%;
  top: 20%;
  left: 55%;
}

.menuC-stamp {
  width: 22.6%;
  top: 6%;
  left: 14%;
}

.circleC-h3 {
  width: 100%;
  top: -6%;
  left: 0;
}

.circleC-ph {
  top: 20%;
  left: 0;
}

.circleC-caption {
  top: 20%;
  left: 0%;
}

/* menuD セクション
===============================*/
.menuD-peach-01 {
  width: 63.2%;
  top: -70%;
  left: 3.7%;
}

.menuD-peach-02 {
  width: 43.7%;
  top: 18%;
  left: 45%;
}

.menuD-typo-01 {
  width: 42.4%;
  top: -77%;
  left: 27.3%;
}

.menuD-typo-02 {
  width: 34.9%;
  top: 4%;
  left: 31.2%;
}

.menuD-bubble-01 {
  width: 20.16%;
  top: -86%;
  left: 58.66%;
}

.menuD-bubble-02 {
  width: 31.4%;
  top: -58%;
  left: 17.86%;
}

.menuD-bubble-03 {
  width: 14.6%;
  top: 15%;
  left: 61.86%;
}

.menuD-stamp {
  width: 22.6%;
  top: 0%;
  left: 16%;
}

.circleD-h3 {
  width: 100%;
  top: -4.2%;
  left: 0;
}

.circleD-ph {
  top: 16%;
  left: 0;
}

.circleD-caption {
  top: 16%;
  left: 0%;
}

.circleD-stamp {
  width: 29.6%;
  top: 38.5%;
  left: 63%;
}

/*   CIZLE TYPOGRAPHY
=========================== */
.cizle-typo-01 {
  top: 15.5%;
  left: 24%;
  width: 42.4%;
}

.cizle-typo-02 {
  top: 41.79%;
  left: 27.73%;
  width: 34.31%;
}

.cizle-typo-03 {
  top: 51.41%;
  right: 24.53%;
  width: 23.38%;
}

.cizle-typo-04 {
  top: 61%;
  left: 30.13%;
  width: 23.38%;
}

.cizle-typo-05 {
  top: 70.38%;
  right: 33.6%;
  width: 15.2%;
}

.cizle-typo-06 {
  top: 78.38%;
  left: 39.2%;
  width: 12.72%;
}

.cizle-typo-07 {
  top: 86.28%;
  right: 39.7%;
  width: 9.06%;
}

/* CIZLE BUBBLE
=========================*/
.cizle-bubble-01 {
  top: 9.5%;
  right: 20.5%;
  width: 25.6%;
}

.cizle-bubble-02 {
  top: 32.6%;
  left: 9.3%;
  width: 26.6%;
}

.cizle-bubble-03 {
  top: 43.2%;
  right: 11%;
  width: 24.5%;
}

.cizle-bubble-04 {
  top: 66.9%;
  left: 17.5%;
  width: 36%;
}

.cizle-bubble-05 {
  top: 92.5%;
  right: 27.26%;
  width: 16.8%;
}

/*   CIZLE PEACH
========================== */
.cizle-peach-01 {
  top: 10.3%;
  right: -4.8%;
  width: 65%;
}

.cizle-peach-02 {
  top: 47.56%;
  left: 7.2%;
  width: 46%;
}

.cizle-peach-03 {
  top: 70.38%;
  right: 15.4%;
  width: 36%;
}

/* banner shop
============================*/
.banner-shop {
  width: 85.3%;
  margin: 0 auto;
  padding-bottom: 117px;
  transition: 0.3s;
}
.banner-shop:hover {
  opacity: 0.8;
  transition: 0.2s;
}
.banner-shop .banner-shop-img {
  top: 0;
  left: 0;
}

/* bg-light
============================*/
.bg-light-02 {
  width: 100%;
  top: 40%;
  left: 0;
}

.bg-light-03 {
  width: 100%;
  top: -10%;
  left: 0;
}

.bg-light-04 {
  width: 100%;
  top: 35%;
  left: 0;
}

.bg-light-06 {
  width: 100%;
  top: 36%;
  left: 0;
}

.bg-light-07 {
  width: 100%;
  top: -5%;
  left: 0;
}

.bg-light-08 {
  width: 100%;
  top: 15%;
  left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* メインビジュアル用のタイポ
================================*/
@keyframes price-blur {
  0% {
    filter: blur(20px);
    transform: translateY(5%) scale(0.8) rotate(5deg);
    opacity: 0;
  }
  30% {
    filter: blur(20px);
  }
  100% {
    filter: blur(0px);
    transform: translateY(0%) scale(1) rotate(0);
    opacity: 1;
  }
}
.mv-typo-01-active {
  animation: price-blur 2.5s ease-in-out forwards 3.8s;
}

.mv-typo-02-active {
  z-index: 5;
  animation: price-blur 2.5s ease-in-out forwards 3.8s;
}

.mv-typo-03-active {
  z-index: 5;
  animation: price-blur 2.5s ease-in-out forwards 3.8s;
}

.mv-typo-04-active {
  z-index: 5;
  animation: price-blur 2.5s ease-in-out forwards 3.8s;
}

.mv-typo-01, .mv-typo-02, .mv-typo-03, .mv-typo-04 {
  opacity: 0;
}

.banner-shop-img {
  animation: typo-wave 2s ease-in-out infinite alternate-reverse;
  transform: translateY(3%);
}
.banner-shop-img:nth-child(1) {
  animation-delay: 0.2s;
}
.banner-shop-img:nth-child(2) {
  animation-delay: 0.4s;
}
.banner-shop-img:nth-child(3) {
  animation-delay: 0.6s;
}
.banner-shop-img:nth-child(4) {
  animation-delay: 0.8s;
}
.banner-shop-img:nth-child(5) {
  animation-delay: 1s;
}
.banner-shop-img:nth-child(6) {
  animation-delay: 1.2s;
}
.banner-shop-img:nth-child(7) {
  animation-delay: 1.4s;
}
.banner-shop-img:nth-child(8) {
  animation-delay: 0.2s;
}
.banner-shop-img:nth-child(9) {
  animation-delay: 0.4s;
}
.banner-shop-img:nth-child(10) {
  animation-delay: 0.6s;
}
.banner-shop-img:nth-child(11) {
  animation-delay: 0.8s;
}
.banner-shop-img:nth-child(12) {
  animation-delay: 1s;
}
.banner-shop-img:nth-child(13) {
  animation-delay: 1.2s;
}
.banner-shop-img:nth-child(14) {
  animation-delay: 1.4s;
}
.banner-shop-img:nth-child(15) {
  animation-delay: 0.2s;
}
.banner-shop-img:nth-child(16) {
  animation-delay: 0.4s;
}
.banner-shop-img:nth-child(17) {
  animation-delay: 0.6s;
}
.banner-shop-img:nth-child(18) {
  animation-delay: 0.8s;
}

/* 桃の浮遊
================================*/
@keyframes peach-middle {
  0% {
    transform: translateY(-10%) rotate(-15deg);
  }
  100% {
    transform: translateY(10%) rotate(15deg);
  }
}
@keyframes peach-small {
  0% {
    transform: translateY(-7.5%) rotate(-10deg);
  }
  100% {
    transform: translateY(7.5%) rotate(10deg);
  }
}
.mv-peach-01 {
  animation: peach-small 1.4s ease-in-out infinite alternate-reverse;
}

.mv-peach-02 {
  animation: peach-small 1.4s ease-in-out infinite alternate-reverse 0.3s;
  transform: translateY(7.5%) rotate(10deg);
}

.mv-peach-03 {
  animation: peach-small 1.4s ease-in-out infinite alternate-reverse 0.7s;
  transform: translateY(7.5%) rotate(10deg);
}

.peach-small {
  animation: peach-small 1.4s ease-in-out infinite alternate-reverse 0.7s;
  transform: translateY(7.5%) rotate(10deg);
}

.peach-middle {
  animation: peach-middle 2s ease-in-out infinite alternate-reverse;
  transform: translateY(10%) rotate(10deg);
}

/* バブル
================================*/
@keyframes bubble {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(5px);
  }
  100% {
    filter: blur(0);
  }
}
.bubble {
  animation: bubble 5s ease-in-out infinite;
  will-change: filter;
}

.bubble-delay {
  animation: bubble 5s ease-in-out infinite 2.5s;
  will-change: filter;
}

/* 文字のウェーブ
================================*/
@keyframes typo-wave {
  0% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(2%);
  }
}
@keyframes typo-wave-big {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}
@keyframes typo-wave-quint {
  0% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(8%);
  }
}
.copy-typo-img {
  top: 0;
  left: 0;
  animation: typo-wave 2.2s ease-in-out infinite alternate-reverse;
  transform: translateY(3%);
}
.copy-typo-img:nth-child(2) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(3) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(4) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(5) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(6) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(7) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(8) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(9) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(10) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(11) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(12) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(13) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(14) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(15) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(16) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(17) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(18) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(19) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(20) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(21) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(22) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(23) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(24) {
  animation-delay: 1.8s;
}
.copy-typo-img:nth-child(25) {
  animation-delay: 2s;
}
.copy-typo-img:nth-child(26) {
  animation-delay: 2.2s;
}
.copy-typo-img:nth-child(27) {
  animation-delay: 2.4s;
}
.copy-typo-img:nth-child(28) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(29) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(30) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(31) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(32) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(33) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(34) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(35) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(36) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(37) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(38) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(39) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(40) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(41) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(42) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(43) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(44) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(45) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(46) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(47) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(48) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(49) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(50) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(51) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(52) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(53) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(54) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(55) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(56) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(57) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(58) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(59) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(60) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(61) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(62) {
  animation-delay: 1.8s;
}

.featureA-p-img {
  top: 0;
  left: 0;
  animation: typo-wave-quint 2.2s ease-in-out infinite alternate-reverse;
  transform: translateY(10%);
}
.featureA-p-img:nth-child(2) {
  animation-delay: 0.4s;
}
.featureA-p-img:nth-child(3) {
  animation-delay: 0.6s;
}
.featureA-p-img:nth-child(4) {
  animation-delay: 0.8s;
}
.featureA-p-img:nth-child(5) {
  animation-delay: 1s;
}
.featureA-p-img:nth-child(6) {
  animation-delay: 1.2s;
}
.featureA-p-img:nth-child(7) {
  animation-delay: 1.4s;
}
.featureA-p-img:nth-child(8) {
  animation-delay: 1.6s;
}
.featureA-p-img:nth-child(9) {
  animation-delay: 0.2s;
}
.featureA-p-img:nth-child(10) {
  animation-delay: 0.4s;
}
.featureA-p-img:nth-child(11) {
  animation-delay: 0.6s;
}
.featureA-p-img:nth-child(12) {
  animation-delay: 0.8s;
}
.featureA-p-img:nth-child(13) {
  animation-delay: 1s;
}
.featureA-p-img:nth-child(14) {
  animation-delay: 1.2s;
}
.featureA-p-img:nth-child(15) {
  animation-delay: 1.4s;
}

.featureB-p-img {
  top: 0;
  left: 0;
  animation: typo-wave-big 2.2s ease-in-out infinite alternate-reverse;
  transform: translateY(4%);
}
.featureB-p-img:nth-child(2) {
  animation-delay: 0.4s;
}
.featureB-p-img:nth-child(3) {
  animation-delay: 0.6s;
}
.featureB-p-img:nth-child(4) {
  animation-delay: 0.8s;
}
.featureB-p-img:nth-child(5) {
  animation-delay: 1s;
}
.featureB-p-img:nth-child(6) {
  animation-delay: 1.2s;
}
.featureB-p-img:nth-child(7) {
  animation-delay: 1.4s;
}
.featureB-p-img:nth-child(8) {
  animation-delay: 1.6s;
}
.featureB-p-img:nth-child(9) {
  animation-delay: 0.2s;
}
.featureB-p-img:nth-child(10) {
  animation-delay: 0.4s;
}
.featureB-p-img:nth-child(11) {
  animation-delay: 0.6s;
}
.featureB-p-img:nth-child(12) {
  animation-delay: 0.8s;
}
.featureB-p-img:nth-child(13) {
  animation-delay: 1s;
}
.featureB-p-img:nth-child(14) {
  animation-delay: 1.2s;
}
.featureB-p-img:nth-child(15) {
  animation-delay: 1.4s;
}
.featureB-p-img:nth-child(16) {
  animation-delay: 1.6s;
}
.featureB-p-img:nth-child(17) {
  animation-delay: 1.8s;
}
.featureB-p-img:nth-child(18) {
  animation-delay: 2s;
}
.featureB-p-img:nth-child(19) {
  animation-delay: 0.2s;
}
.featureB-p-img:nth-child(20) {
  animation-delay: 0.4s;
}
.featureB-p-img:nth-child(21) {
  animation-delay: 0.6s;
}
.featureB-p-img:nth-child(22) {
  animation-delay: 0.8s;
}
.featureB-p-img:nth-child(23) {
  animation-delay: 1s;
}
.featureB-p-img:nth-child(24) {
  animation-delay: 1.2s;
}
.featureB-p-img:nth-child(25) {
  animation-delay: 1.4s;
}
.featureB-p-img:nth-child(26) {
  animation-delay: 1.6s;
}
.featureB-p-img:nth-child(27) {
  animation-delay: 1.8s;
}
.featureB-p-img:nth-child(28) {
  animation-delay: 0.2s;
}
.featureB-p-img:nth-child(29) {
  animation-delay: 0.4s;
}
.featureB-p-img:nth-child(30) {
  animation-delay: 0.6s;
}
.featureB-p-img:nth-child(31) {
  animation-delay: 0.8s;
}
.featureB-p-img:nth-child(32) {
  animation-delay: 1s;
}
.featureB-p-img:nth-child(33) {
  animation-delay: 1.2s;
}
.featureB-p-img:nth-child(34) {
  animation-delay: 1.4s;
}
.featureB-p-img:nth-child(35) {
  animation-delay: 1.6s;
}
.featureB-p-img:nth-child(36) {
  animation-delay: 1.8s;
}
.featureB-p-img:nth-child(37) {
  animation-delay: 2s;
}
.featureB-p-img:nth-child(38) {
  animation-delay: 2.2s;
}

/* マスクアニメ-PH
================================*/
@keyframes mask-anime {
  0% {
    opacity: 1;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0 100%;
    mask-position: 0 100%;
  }
}
.comport-mask {
  opacity: 0;
}

.comport-mask-active {
  animation: mask-anime 1.2s steps(35) forwards;
  -webkit-mask-image: url(/lp/2025_momojuwa/images/mask_image.png);
  mask-image: url(/lp/2025_momojuwa/images/mask_image.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

/* キャプション マスク
================================*/
@keyframes mask-anime02 {
  0% {
    opacity: 0;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-mask-position: 0 100%;
    mask-position: 100% 100%;
  }
}
.contents-caption {
  opacity: 0;
}

.mask-active {
  animation: mask-anime02 1.2s steps(35) forwards 0.1s;
  -webkit-mask-image: url(/lp/2025_momojuwa/images/sprite_tri.png);
  mask-image: url(/lp/2025_momojuwa/images/sprite_tri.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3000%;
  mask-size: 100% 3000%;
}

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

.abs {
  position: absolute;
}

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

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

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

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* メインビジュアル セクション
===============================*/
.sec-mv {
  overflow-x: clip;
}

/* イントロ セクション
===============================*/
.sec-intro {
  width: 100%;
  height: 924px;
  margin-top: -65px;
  background: linear-gradient(0deg, rgba(239, 191, 190, 0.9) 0%, rgba(240, 191, 190, 0.98) 28.26%, rgba(247, 190, 190, 0.91) 96.25%, rgba(248, 190, 190, 0.9) 100%);
  -webkit-mask-image: url(/lp/2025_momojuwa/images/intro_bg.svg);
          mask-image: url(/lp/2025_momojuwa/images/intro_bg.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    height: calc(924px * 0.75);
    margin-top: calc(-65px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    height: calc(924 * 0.625 / 375 * 100vw);
    margin-top: calc(-65 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copy-wrap {
  width: 65.3%;
  top: 26.6%;
  left: 21.3%;
}

/* フィーチュア セクション
===============================*/
.sec-feature {
  background: linear-gradient(180deg, rgba(174, 223, 237, 0) 0%, rgba(186, 228, 239, 0.32) 14.68%, rgba(218, 241, 243, 0.9) 41.1%, rgb(224, 244, 244) 45.88%, rgb(211, 238, 243) 52.13%, rgb(192, 231, 241) 63.16%, rgb(186, 228, 240) 71.06%, rgba(140, 210, 230, 0.1) 100%);
  margin-top: -96px;
  padding-top: 136px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-feature {
    margin-top: calc(-96px * 0.75);
    padding-top: calc(136px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-feature {
    margin-top: calc(-96 * 0.625 / 375 * 100vw);
    padding-top: calc(-136 * 0.625 / 375 * 100vw);
  }
}
.sec-feature .featureA-h2 {
  width: 62.1%;
  margin-left: auto;
  transition-duration: 1.2s;
}
.sec-feature .featureB-h2 {
  width: 61.33%;
  transition-duration: 1.2s;
}
.sec-feature .feature-bottom {
  padding-top: 176px;
}
@media screen and (max-width: 1535px) {
  .sec-feature .feature-bottom {
    padding-top: calc(176px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-feature .feature-bottom {
    padding-top: calc(-176 * 0.625 / 375 * 100vw);
  }
}

/* メニューA セクション
===============================*/
.sec-menuA {
  background-color: #F2BFC6;
  overflow-x: clip;
}

.menuA-box {
  height: 398px;
}
@media screen and (max-width: 1535px) {
  .menuA-box {
    height: calc(398px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuA-box {
    height: calc(398 * 0.625 / 375 * 100vw);
  }
}

.menuA-visual {
  padding-bottom: 183px;
}
@media screen and (max-width: 1535px) {
  .menuA-visual {
    padding-bottom: calc(183px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuA-visual {
    padding-bottom: calc(183 * 0.625 / 375 * 100vw);
  }
}
.menuA-visual .menuA-shape {
  width: 61.8%;
}

.menuB-top {
  padding-top: 427px;
}
@media screen and (max-width: 1535px) {
  .menuB-top {
    padding-top: calc(427px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuB-top {
    padding-top: calc(427 * 0.625 / 375 * 100vw);
  }
}

/* メニューB セクション
===============================*/
.sec-menuB {
  background-color: #F2ADB5;
  overflow-x: clip;
}

.menuB-box {
  height: 299px;
}
@media screen and (max-width: 1535px) {
  .menuB-box {
    height: calc(299px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuB-box {
    height: calc(299 * 0.625 / 375 * 100vw);
  }
}

.menuB-visual {
  padding-bottom: 165px;
}
@media screen and (max-width: 1535px) {
  .menuB-visual {
    padding-bottom: calc(165px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuB-visual {
    padding-bottom: calc(165 * 0.625 / 375 * 100vw);
  }
}
.menuB-visual .menuB-shape {
  width: 62.4%;
}

.menuC-top {
  padding-top: 358px;
}
@media screen and (max-width: 1535px) {
  .menuC-top {
    padding-top: calc(358px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuC-top {
    padding-top: calc(358 * 0.625 / 375 * 100vw);
  }
}

/* メニューC セクション
===============================*/
.sec-menuC {
  overflow-x: clip;
  background: linear-gradient(180deg, rgb(236, 146, 152) 0%, rgb(242, 155, 169) 40.67%, rgb(246, 195, 203) 99.11%);
  opacity: 1;
  margin-top: -0.5px;
}

.menuC-box {
  height: 378px;
}
@media screen and (max-width: 1535px) {
  .menuC-box {
    height: calc(378px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuC-box {
    height: calc(378 * 0.625 / 375 * 100vw);
  }
}

.menuC-visual {
  padding-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .menuC-visual {
    padding-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuC-visual {
    padding-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.menuC-visual .menuC-shape {
  width: 61.8%;
}

.menuD-top {
  padding-top: 352px;
  width: 100.2%;
  transform: translateX(-0.1%);
}
@media screen and (max-width: 1535px) {
  .menuD-top {
    padding-top: calc(352px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD-top {
    padding-top: calc(352 * 0.625 / 375 * 100vw);
  }
}

/* メニューD セクション
===============================*/
.sec-menuD {
  background: linear-gradient(180deg, rgb(243, 164, 174) 0%, rgb(241, 159, 170) 32.06%, rgb(242, 167, 177) 52.2%, rgb(245, 182, 190) 69.06%, rgb(249, 203, 207) 84.1%, rgb(254, 229, 230) 97.81%, rgb(255, 234, 234) 100%);
  opacity: 1;
  overflow-x: clip;
}

.menuD-visual {
  padding-bottom: 140px;
}
@media screen and (max-width: 1535px) {
  .menuD-visual {
    padding-bottom: calc(140px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD-visual {
    padding-bottom: calc(140 * 0.625 / 375 * 100vw);
  }
}
.menuD-visual .menuD-shape {
  width: 64%;
}

.menuD-box {
  height: 414px;
}
@media screen and (max-width: 1535px) {
  .menuD-box {
    height: calc(414px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .menuD-box {
    height: calc(414 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */