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

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

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2026_peachdessert/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2026_peachdessert/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/2026_peachdessert/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: 43%;
  top: 24%;
  left: 36%;
}
.leftside .left-btn-wrap {
  width: 58%;
  height: 50vh;
  top: 50%;
  left: 66%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1535px) {
  .leftside .left-btn-wrap {
    left: 63%;
  }
}
.leftside .left-btn-wrap .left-btn-01 {
  width: 50%;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.leftside .left-btn-wrap .left-btn-01:hover {
  transform: scale(1.05);
}
.leftside .left-btn-wrap .left-btn-01 .select-absA {
  width: 65%;
  top: -4%;
  left: 16%;
}
.leftside .left-btn-wrap .left-btn-02 {
  width: 50%;
  top: 25%;
  left: 48%;
  transition: 0.2s;
}
.leftside .left-btn-wrap .left-btn-02:hover {
  transform: scale(1.05);
}
.leftside .left-btn-wrap .left-btn-02 .select-absB {
  width: 81.6%;
  top: -5.7%;
  left: 11%;
}
.leftside .left-btn-wrap .left-btn-03 {
  width: 50%;
  top: 50%;
  left: 0;
  transition: 0.2s;
}
.leftside .left-btn-wrap .left-btn-03:hover {
  transform: scale(1.05);
}
.leftside .left-btn-wrap .left-btn-03 .select-absC {
  width: 81.5%;
  top: -10%;
  left: 12%;
}
.leftside .left-btn-wrap .left-btn-04 {
  width: 50%;
  top: 75%;
  left: 48%;
  transition: 0.2s;
}
.leftside .left-btn-wrap .left-btn-04:hover {
  transform: scale(1.05);
}
.leftside .left-btn-wrap .left-btn-04 .select-absD {
  width: 82%;
  top: 7%;
  left: 9%;
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background-image: url(/lp/2026_peachdessert/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: 19%;
  left: 20%;
}
.rightside .right-qr {
  width: 50%;
  left: 10%;
  bottom: 7%;
}

@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/2026_peachdessert/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 1.5s ease-in 0s forwards;
}

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

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

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

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

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

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

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

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

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

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

/* メインビジュアル セクション
===============================*/
.mv-desert {
  width: 100%;
  bottom: 1.5%;
  left: 0;
}

.mv-peach-01 {
  width: 72.26%;
  top: 30%;
  right: -42%;
}

.mv-peach-02 {
  width: 53.57%;
  top: 32.5%;
  left: -21%;
}

.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-bubble-04 {
  width: 100%;
  top: 0;
  left: 0;
}

.mv-typo-01 {
  width: 100%;
  top: 9%;
  left: 0;
}

.mv-typo-02 {
  width: 100%;
  top: 24%;
  left: 0;
}

.mv-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

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

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

.intro-bubble-01 {
  width: 47.9%;
  top: -1.5%;
  left: 50%;
}

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

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

/* フィーチュア セクション
===============================*/
.feature-top {
  width: 100%;
  top: 0;
  left: 0;
}

.feature-peach-01 {
  width: 61.5%;
  top: -5%;
  left: -13%;
}

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

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

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

/* select セクション
===============================*/
.select-bubble-01 {
  width: 28%;
  top: -9%;
  left: 12%;
  z-index: 20;
}

.select-bubble-02 {
  width: 100%;
  top: 11.2%;
  left: 0;
}

.select-bubble-03 {
  width: 40.8%;
  bottom: -7.5%;
  left: 43%;
}

.select-peach-01 {
  width: 67%;
  top: 3.5%;
  left: -5%;
}

.select-peach-02 {
  width: 47%;
  top: 20%;
  right: -5.5%;
}

.select-peach-03 {
  width: 58%;
  top: 72%;
  left: -2%;
}

.select-peach-04 {
  width: 53.8%;
  bottom: -8%;
  left: 33%;
}

.select-h2 {
  width: 70.6%;
  top: 11%;
  left: 14.5%;
}

.select-btn-01 {
  width: 56%;
  top: 27%;
  left: -4.5%;
}
.select-btn-01 .select-absA {
  width: 65%;
  top: -4%;
  left: 16%;
}

.select-btn-02 {
  width: 56%;
  top: 40%;
  right: -3.5%;
}
.select-btn-02 .select-absB {
  width: 81.6%;
  top: -5.7%;
  left: 11%;
}

.select-btn-03 {
  width: 58.9%;
  top: 54.5%;
  left: -3.5%;
}
.select-btn-03 .select-absC {
  width: 81.5%;
  top: -10%;
  left: 12%;
}

.select-btn-04 {
  width: 56%;
  top: 70%;
  right: -3.5%;
}
.select-btn-04 .select-absD {
  width: 82%;
  top: 7%;
  left: 9%;
}

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

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

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

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

/* 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: -120.5%;
}

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

.menuB-bubble-03 {
  width: 41.9%;
  left: 47.3%;
  top: -20%;
}

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

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

.menuB-ph-abs {
  width: 28.8%;
  top: 39%;
  right: 6%;
}

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

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

.circleB-caption {
  top: 18%;
  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: -170%;
  left: 65.4%;
}

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

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

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

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

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

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

.menuD-peach-02 {
  width: 43.7%;
  top: 4%;
  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: -130%;
  left: 58.66%;
}

.menuD-bubble-02 {
  width: 31.4%;
  top: -82%;
  left: 16.86%;
}

.menuD-bubble-03 {
  width: 14.6%;
  top: -20%;
  left: 63%;
}

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

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

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

/*   CIZLE TYPOGRAPHY
=========================== */
/*   CIZLE PEACH
========================== */
.cizle-peach-01 {
  top: 12.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%;
}

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

.bg-select-light-02 {
  width: 102%;
  top: 55%;
  left: -1%;
}

.bg-light-01 {
  width: 100%;
  top: 13%;
  left: 0;
}

.bg-light-02 {
  width: 100%;
  bottom: 1.5%;
  left: 0;
}

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

.bg-light-04 {
  width: 100%;
  top: 24%;
  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: 18%;
  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;
  will-change: filter;
}

.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 1.2s ease-in-out forwards 1s;
}

.mv-typo-02-active {
  animation: price-blur 1.2s ease-in-out forwards 1.1s;
}

.mv-typo {
  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%);
  }
}
.wave-small {
  animation: typo-wave 1.4s ease-in-out infinite alternate-reverse;
}

.wave-big {
  animation: typo-wave-big 1s ease-in-out infinite alternate-reverse;
}

.wave-quint {
  animation: typo-wave-quint 1s ease-in-out infinite alternate-reverse;
}

.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: 1.8s;
}
.copy-typo-img:nth-child(45) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(46) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(47) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(48) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(49) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(50) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(51) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(52) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(53) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(54) {
  animation-delay: 1.8s;
}
.copy-typo-img:nth-child(55) {
  animation-delay: 2s;
}
.copy-typo-img:nth-child(56) {
  animation-delay: 2.2s;
}
.copy-typo-img:nth-child(57) {
  animation-delay: 0s;
}
.copy-typo-img:nth-child(58) {
  animation-delay: 0.2s;
}
.copy-typo-img:nth-child(59) {
  animation-delay: 0.4s;
}
.copy-typo-img:nth-child(60) {
  animation-delay: 0.6s;
}
.copy-typo-img:nth-child(61) {
  animation-delay: 0.8s;
}
.copy-typo-img:nth-child(62) {
  animation-delay: 1s;
}
.copy-typo-img:nth-child(63) {
  animation-delay: 1.2s;
}
.copy-typo-img:nth-child(64) {
  animation-delay: 1.4s;
}
.copy-typo-img:nth-child(65) {
  animation-delay: 1.6s;
}
.copy-typo-img:nth-child(66) {
  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: 2s;
}
.featureB-p-img:nth-child(29) {
  animation-delay: 2.2s;
}
.featureB-p-img:nth-child(30) {
  animation-delay: 2.4s;
}
.featureB-p-img:nth-child(31) {
  animation-delay: 2.6s;
}
.featureB-p-img:nth-child(32) {
  animation-delay: 2.8s;
}
.featureB-p-img:nth-child(33) {
  animation-delay: 0.2s;
}
.featureB-p-img:nth-child(34) {
  animation-delay: 0.4s;
}
.featureB-p-img:nth-child(35) {
  animation-delay: 0.6s;
}
.featureB-p-img:nth-child(36) {
  animation-delay: 0.8s;
}
.featureB-p-img:nth-child(37) {
  animation-delay: 1s;
}
.featureB-p-img:nth-child(38) {
  animation-delay: 1.2s;
}
.featureB-p-img:nth-child(39) {
  animation-delay: 1.4s;
}
.featureB-p-img:nth-child(40) {
  animation-delay: 1.6s;
}
.featureB-p-img:nth-child(41) {
  animation-delay: 1.8s;
}
.featureB-p-img:nth-child(42) {
  animation-delay: 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/2026_peachdessert/images/mask_image.png);
  mask-image: url(/lp/2026_peachdessert/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%;
  }
}
/* Media Query
===============================*/
/* Margin Calc Set
===============================*/
/* LP Common Style
===============================*/
img {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute;
}

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

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

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

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

.block {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* イントロ セクション
===============================*/
.sec-intro {
  width: 100%;
  height: 720px;
  background: linear-gradient(0deg, rgb(241, 187, 186) 0%, rgba(241, 176, 176, 0.98) 28.26%, rgb(252, 187, 195) 100%);
  -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(720px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    height: calc(720 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copy-wrap {
  width: 65.3%;
  top: 20%;
  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%);
  padding-top: 136px;
  padding-bottom: 250px;
  overflow-x: clip;
}
@media screen and (max-width: 1535px) {
  .sec-feature {
    padding-top: calc(136px * 0.75);
    padding-bottom: calc(250px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-feature {
    padding-top: calc(136 * 0.625 / 375 * 100vw);
    padding-bottom: calc(250 * 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);
  }
}

/* 選択 セクション
===============================*/
.sec-select {
  margin-top: -155px;
  z-index: 10;
}
@media screen and (max-width: 1535px) {
  .sec-select {
    margin-top: calc(-155px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-select {
    margin-top: calc(-155 * 0.625 / 375 * 100vw);
  }
}
.sec-select .select-wrapper {
  -webkit-mask-image: url(/lp/2026_peachdessert/images/select_bg.svg);
          mask-image: url(/lp/2026_peachdessert/images/select_bg.svg);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  overflow-x: clip;
  background-color: #ffc4cf;
  height: 1550px;
}
@media screen and (max-width: 1535px) {
  .sec-select .select-wrapper {
    height: calc(1550px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-select .select-wrapper {
    height: calc(1550 * 0.625 / 375 * 100vw);
  }
}

/* メニューA セクション
===============================*/
.sec-menuA {
  background-color: #f3aebc;
  overflow-x: clip;
  margin-top: -102px;
  padding-top: 220px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA {
    margin-top: calc(-102px * 0.75);
    padding-top: calc(220px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA {
    margin-top: calc(-102 * 0.625 / 375 * 100vw);
    padding-top: calc(220 * 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%;
  margin-left: 20%;
}

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

/* メニューB セクション
===============================*/
.sec-menuB {
  background-color: #ee9ca7;
  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(221, 128, 135) 0%, rgb(224, 137, 151) 40.67%, rgb(228, 177, 185) 99.11%);
  opacity: 1;
  margin-top: -0.5px;
}

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

.menuC-visual .menuC-shape {
  width: 65.8%;
  margin-left: 17%;
}

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

/* メニューD セクション
===============================*/
.sec-menuD {
  background: linear-gradient(180deg, rgb(222, 138, 150) 0%, rgb(223, 141, 152) 32.06%, rgb(227, 149, 159) 52.2%, rgb(233, 164, 172) 69.06%, rgb(242, 185, 189) 92.1%, rgb(253, 211, 212) 97.81%, rgb(255, 216, 216) 100%);
  opacity: 1;
  overflow-x: clip;
}

.menuD-visual {
  margin-top: -5px;
}
.menuD-visual .menuD-shape {
  width: 64%;
  top: 0;
  left: 20%;
}

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

/*　シズル
================================*/
.sec-cizle {
  height: 930px;
}
@media screen and (max-width: 1535px) {
  .sec-cizle {
    height: calc(930px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cizle {
    height: calc(930 * 0.625 / 375 * 100vw);
  }
}
.sec-cizle .cizle-bubble {
  width: 100%;
  top: 26%;
  left: 0;
}
.sec-cizle .cizle-peach-01 {
  width: 69%;
  top: 8%;
  right: -9%;
}
.sec-cizle .cizle-peach-02 {
  width: 60.8%;
  top: 43%;
  left: -10%;
}
.sec-cizle .cizle-peach-03 {
  width: 42.4%;
  top: 73%;
  right: 0%;
}
.sec-cizle .peach-caption {
  width: 100%;
  bottom: 0;
  left: 0;
}

/*　動線ボタン
================================*/
.banner-shop {
  height: 533px;
}
@media screen and (max-width: 1535px) {
  .banner-shop {
    height: calc(533px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .banner-shop {
    height: calc(533 * 0.625 / 375 * 100vw);
  }
}
.banner-shop .bannerA {
  width: 50.6%;
  top: 0;
  left: 6%;
}
.banner-shop .bannerB {
  width: 50.6%;
  bottom: 0;
  right: 6%;
}
.banner-shop .bannerB .banner-abs {
  width: 50%;
  top: -42%;
  left: 42%;
}

/*　来店予約ボタン
================================*/
.goshop-01 {
  bottom: 16%;
  left: 0;
  z-index: 20;
}

.goshop-02 {
  bottom: 13.2%;
  left: 0;
  z-index: 20;
}

.goshop-03 {
  bottom: 12.8%;
  left: 0;
  z-index: 20;
}

.goshop-04 {
  top: 8%;
  left: 0;
  z-index: 20;
}/*# sourceMappingURL=style.css.map */