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

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

.center {
  position: relative;
  overflow: hidden;
  width: 600px;
  z-index: 50;
}
@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: url("/lp/2026_tsukimidessert/images/pc_bg.png"), linear-gradient(180deg, rgb(149, 52, 14) 16.62%, rgb(161, 67, 21) 30.16%, rgb(194, 106, 38) 56.23%, rgb(240, 163, 64) 88.51%);
  background-size: 100% auto, 100% 100%;
  background-blend-mode: multiply;
  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-momiji {
  width: 41.6%;
  top: 12%;
  left: -6%;
}
.leftside .left-cloud {
  width: 52%;
  top: 80%;
  left: -7%;
}
.leftside .left-wrap {
  width: 54.8%;
  top: 27%;
  left: 57.5%;
  transform: translateX(-50%);
}
.leftside .left-wrap .left-anker {
  width: 51.9%;
  transition: 0.2s ease-in-out;
}
.leftside .left-wrap .left-anker:hover {
  transform: scale(1.05);
}
.leftside .left-wrap .left-anker-01 {
  top: 0;
  left: 0;
}
.leftside .left-wrap .left-anker-02 {
  top: 18%;
  right: -2%;
}
.leftside .left-wrap .left-anker-03 {
  top: 43%;
  left: -2%;
}
.leftside .left-wrap .left-anker-04 {
  bottom: 0;
  right: 0;
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background: url("/lp/2026_tsukimidessert/images/pc_bg.png"), linear-gradient(180deg, rgb(149, 52, 14) 16.62%, rgb(161, 67, 21) 30.16%, rgb(194, 106, 38) 56.23%, rgb(240, 163, 64) 88.51%);
  background-size: 100% auto, 100% 100%;
  background-blend-mode: multiply;
  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-moon {
  width: 44.4%;
  top: 0;
  right: 0;
}
.rightside .right-cloud {
  width: 41.6%;
  top: 22%;
  left: -5%;
}
.rightside .right-momiji {
  width: 45.1%;
  right: -5%;
  top: 45%;
}
.rightside .right-malon {
  width: 35%;
  top: 60%;
  left: -5%;
}
.rightside .right-mountain {
  width: 82.8%;
  right: 0;
  bottom: 0;
}

/* SELECT CARD
================================*/
.select-card {
  width: 77.6%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.4% 5% 4.4% 6%;
  margin: 0 auto 40px auto;
  border-radius: 50px;
  background-color: #D6001C;
}
@media screen and (max-width: 600px) {
  .select-card {
    padding: 4% 4% 4% 4%;
  }
}
.select-card .select-heta {
  width: 15.97%;
  margin: 0 auto;
  top: -23%;
  left: 0;
  right: 0;
  z-index: 1;
}
.select-card .select-cap {
  font-size: 19px;
  font-weight: 700;
  font-feature-settings: "palt";
  color: #FFF;
  flex: 1;
}
@media screen and (max-width: 1535px) {
  .select-card .select-cap {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .select-card .select-cap {
    font-size: 12px;
  }
}
@media screen and (max-width: 365px) {
  .select-card .select-cap {
    margin-right: 10px;
  }
}
.select-card .selbox {
  font-size: 17px;
  font-weight: 900;
  color: #D6001C;
  width: 123px;
  padding: 13px 17px;
  border-radius: 30px;
  background: #FFF url(/lp/2026_tsukimidessert/images/selbox_arrow.svg) no-repeat right 13px center;
  background-size: 24px auto;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 1535px) {
  .select-card .selbox {
    font-size: 13px;
    width: 95px;
    padding: 12px 15px;
    background-position: right 12px center;
    background-size: 20px auto;
  }
}
@media screen and (max-width: 600px) {
  .select-card .selbox {
    font-size: 13px;
    width: 90px;
    padding: 10px 13px;
    background-position: right 10px center;
    background-size: 18px auto;
  }
}
@media screen and (max-width: 365px) {
  .select-card .selbox {
    font-size: 12px;
    width: 80px;
    padding: 10px 12px;
    background-position: right 10px center;
    background-size: 16px auto;
  }
}
.select-card .selbox:hover {
  opacity: 0.8;
}

.price-box .pr-con {
  width: 43.3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.price-box .pr-con:not(:last-child) {
  margin-bottom: 19px;
}
.price-box .gram-only {
  width: 18.5%;
}
.price-box .price {
  font-size: 44px;
  font-weight: 400;
  font-family: "rubik";
  color: #641719;
}
@media screen and (max-width: 1535px) {
  .price-box .price {
    font-size: 36px;
  }
}
@media screen and (max-width: 600px) {
  .price-box .price {
    font-size: 32px;
  }
}
@media screen and (max-width: 365px) {
  .price-box .price {
    font-size: 28px;
  }
}
.price-box .price .yen {
  font-size: 28px;
  font-family: fredoka one;
}
@media screen and (max-width: 1535px) {
  .price-box .price .yen {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .price-box .price .yen {
    font-size: 16px;
  }
}
@media screen and (max-width: 365px) {
  .price-box .price .yen {
    font-size: 14px;
  }
}
.price-box .menu-dot {
  width: 58%;
}

/*  ABSOLUTE ITEM
=============================*/
.sec-menuA .menuA-malon {
  width: 56.8%;
  top: -55%;
  left: -10%;
}
.sec-menuA .menuA-cloud {
  width: 50.1%;
  top: 65%;
  left: -14%;
}
.sec-menuA .menuA-momiji {
  width: 45.3%;
  top: -11%;
  right: -15%;
}
.sec-menuA .menuA-moon {
  width: 29.25%;
  top: -31%;
  right: -9%;
}

.sec-menuB .menuB-momiji {
  width: 55.7%;
  left: -9%;
  top: -40%;
}
.sec-menuB .menuB-cloud {
  width: 43.2%;
  left: -10%;
  top: 68%;
}
.sec-menuB .menuB-malon {
  width: 40.5%;
  top: -16%;
  right: -18%;
}
.sec-menuB .menuB-momiji-02 {
  width: 73.8%;
  bottom: -150%;
  left: 6%;
}

.sec-menuC .menuC-cloud {
  width: 60.8%;
  top: -35%;
  right: -14%;
}
.sec-menuC .menuC-moon {
  width: 32.5%;
}
.sec-menuC .menuC-malon {
  width: 42.6%;
  right: -15%;
  top: -10%;
}

.sec-menuD .menuD-momiji {
  width: 65.6%;
  top: -120%;
  left: -18%;
}
.sec-menuD .menuD-cloud {
  width: 54%;
  right: -23%;
  top: -13%;
}

.sec-cp .cp-malon {
  width: 56.5%;
  top: -9%;
  right: -15%;
}
.sec-cp .cp-momiji {
  width: 43%;
  top: -25%;
  left: -12%;
}
.sec-cp .cp-cloud {
  width: 52%;
  top: 72%;
  left: -11%;
}

/* 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;
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes yuge {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.6);
  }
  100% {
    opacity: 0.7;
    filter: blur(0px);
    transform: scale(1);
  }
}
@keyframes yugeAlt {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.9);
  }
  70% {
    opacity: 0.5;
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    filter: blur(0px);
    transform: scale(1.5);
  }
}
@keyframes boyoyon {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1.1);
    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 pyon {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes urouro {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}
.urouro {
  transform: translateX(10%);
  animation: urouro 5s ease-in-out infinite;
}

@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%;
  }
}
@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%;
  }
}
.mask-anime {
  opacity: 0;
}

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

/*  MV
=================================*/
.sec-mv .mv-typo {
  opacity: 0;
}
.sec-mv .mv-copy-img {
  opacity: 0;
}
.sec-mv .mv-deta {
  opacity: 0;
}
.sec-mv .mv-cizle-moon {
  opacity: 0;
}

.sec-mv.is-active .mv-typo {
  opacity: 1;
  transition: 0.8s ease-in-out;
}
.sec-mv.is-active .mv-typo:nth-child(2) {
  transition-delay: 0.1s;
}
.sec-mv.is-active .mv-typo:nth-child(3) {
  transition-delay: 0.1s;
}
.sec-mv.is-active .mv-typo:nth-child(4) {
  transition-delay: 0.15s;
}
.sec-mv.is-active .mv-typo:nth-child(5) {
  transition-delay: 0.2s;
}
.sec-mv.is-active .mv-typo:nth-child(6) {
  transition-delay: 0.25s;
}
.sec-mv.is-active .mv-typo:nth-child(7) {
  transition-delay: 0.35s;
}
.sec-mv.is-active .mv-typo:nth-child(8) {
  transition-delay: 0.4s;
}
.sec-mv.is-active .mv-typo:nth-child(9) {
  transition-delay: 0.45s;
}
.sec-mv.is-active .mv-copy-img {
  opacity: 1;
  transition: 0.6s ease-in-out 0.8s;
}
.sec-mv.is-active .mv-deta {
  animation: pyon 0.5s ease-in-out 1.2s forwards;
}
.sec-mv.is-active .mv-deta:nth-child(2) {
  animation-delay: 0.9s;
}
.sec-mv.is-active .mv-cizle-moon {
  opacity: 1;
  transition: 0.6s ease-in-out 1.2s;
}

.intro-copy-img {
  opacity: 0;
  transform: translateY(-0.5%);
}

.intro-copy-img-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 1s ease-in-out;
}

.sec-menuA .menuA-copy-img {
  opacity: 0;
}
.sec-menuA .menuA-copy-img-active {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sec-menuA .menuA-copy-img:nth-child(2) {
  transition-delay: 0s;
}
.sec-menuA .menuA-copy-img:nth-child(3) {
  transition-delay: 0.05s;
}
.sec-menuA .menuA-copy-img:nth-child(4) {
  transition-delay: 0.1s;
}
.sec-menuA .menuA-copy-img:nth-child(5) {
  transition-delay: 0.15s;
}
.sec-menuA .menuA-copy-img:nth-child(6) {
  transition-delay: 0.2s;
}
.sec-menuA .menuA-copy-img:nth-child(7) {
  transition-delay: 0.25s;
}
.sec-menuA .menuA-copy-img:nth-child(8) {
  transition-delay: 0.3s;
}
.sec-menuA .menuA-copy-img:nth-child(9) {
  transition-delay: 0.35s;
}
.sec-menuA .menuA-copy-img:nth-child(10) {
  transition-delay: 0.4s;
}
.sec-menuA .menuA-copy-img:nth-child(11) {
  transition-delay: 0.45s;
}
.sec-menuA .menuA-copy-img:nth-child(12) {
  transition-delay: 0.5s;
}
.sec-menuA .menuA-copy-img:nth-child(13) {
  transition-delay: 0.1s;
}
.sec-menuA .menuA-copy-img:nth-child(14) {
  transition-delay: 0.15s;
}
.sec-menuA .menuA-copy-img:nth-child(15) {
  transition-delay: 0.2s;
}
.sec-menuA .menuA-copy-img:nth-child(16) {
  transition-delay: 0.25s;
}
.sec-menuA .menuA-copy-img:nth-child(17) {
  transition-delay: 0.3s;
}
.sec-menuA .menuA-copy-img:nth-child(18) {
  transition-delay: 0.35s;
}
.sec-menuA .menuA-copy-img:nth-child(19) {
  transition-delay: 0.4s;
}
.sec-menuA .menuA-copy-img:nth-child(20) {
  transition-delay: 0.45s;
}
.sec-menuA .menuA-copy-img:nth-child(21) {
  transition-delay: 0.5s;
}
.sec-menuA .menuA-copy-img:nth-child(22) {
  transition-delay: 0.55s;
}
.sec-menuA .menuA-copy-img:nth-child(23) {
  transition-delay: 0.6s;
}
.sec-menuA .menuA-copy-img:nth-child(24) {
  transition-delay: 0.65s;
}
.sec-menuA .menuA-copy-img:nth-child(25) {
  transition-delay: 0.2s;
}
.sec-menuA .menuA-copy-img:nth-child(26) {
  transition-delay: 0.25s;
}
.sec-menuA .menuA-copy-img:nth-child(27) {
  transition-delay: 0.3s;
}
.sec-menuA .menuA-copy-img:nth-child(28) {
  transition-delay: 0.35s;
}
.sec-menuA .menuA-copy-img:nth-child(29) {
  transition-delay: 0.4s;
}
.sec-menuA .menuA-copy-img:nth-child(30) {
  transition-delay: 0.45s;
}
.sec-menuA .menuA-copy-img:nth-child(31) {
  transition-delay: 0.5s;
}
.sec-menuA .menuA-copy-img:nth-child(32) {
  transition-delay: 0.25s;
}
.sec-menuA .menuA-copy-img:nth-child(33) {
  transition-delay: 0.3s;
}
.sec-menuA .menuA-copy-img:nth-child(34) {
  transition-delay: 0.35s;
}
.sec-menuA .menuA-copy-img:nth-child(35) {
  transition-delay: 0.4s;
}
.sec-menuA .menuA-copy-img:nth-child(36) {
  transition-delay: 0.45s;
}
.sec-menuA .menuA-copy-img:nth-child(37) {
  transition-delay: 0.5s;
}
.sec-menuA .menuA-copy-img:nth-child(38) {
  transition-delay: 0.55s;
}

.sec-menuB .menuB-copy-img {
  opacity: 0;
}
.sec-menuB .menuB-copy-img-active {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sec-menuB .menuB-copy-img:nth-child(2) {
  transition-delay: 0s;
}
.sec-menuB .menuB-copy-img:nth-child(3) {
  transition-delay: 0.05s;
}
.sec-menuB .menuB-copy-img:nth-child(4) {
  transition-delay: 0.1s;
}
.sec-menuB .menuB-copy-img:nth-child(5) {
  transition-delay: 0.15s;
}
.sec-menuB .menuB-copy-img:nth-child(6) {
  transition-delay: 0.2s;
}
.sec-menuB .menuB-copy-img:nth-child(7) {
  transition-delay: 0.25s;
}
.sec-menuB .menuB-copy-img:nth-child(8) {
  transition-delay: 0.3s;
}
.sec-menuB .menuB-copy-img:nth-child(9) {
  transition-delay: 0.35s;
}
.sec-menuB .menuB-copy-img:nth-child(10) {
  transition-delay: 0.4s;
}
.sec-menuB .menuB-copy-img:nth-child(11) {
  transition-delay: 0.45s;
}
.sec-menuB .menuB-copy-img:nth-child(12) {
  transition-delay: 0.5s;
}
.sec-menuB .menuB-copy-img:nth-child(13) {
  transition-delay: 0.55s;
}
.sec-menuB .menuB-copy-img:nth-child(14) {
  transition-delay: 0.1s;
}
.sec-menuB .menuB-copy-img:nth-child(15) {
  transition-delay: 0.15s;
}
.sec-menuB .menuB-copy-img:nth-child(16) {
  transition-delay: 0.2s;
}
.sec-menuB .menuB-copy-img:nth-child(17) {
  transition-delay: 0.25s;
}
.sec-menuB .menuB-copy-img:nth-child(18) {
  transition-delay: 0.3s;
}
.sec-menuB .menuB-copy-img:nth-child(19) {
  transition-delay: 0.35s;
}
.sec-menuB .menuB-copy-img:nth-child(20) {
  transition-delay: 0.4s;
}
.sec-menuB .menuB-copy-img:nth-child(21) {
  transition-delay: 0.45s;
}
.sec-menuB .menuB-copy-img:nth-child(22) {
  transition-delay: 0.5s;
}
.sec-menuB .menuB-copy-img:nth-child(23) {
  transition-delay: 0.2s;
}
.sec-menuB .menuB-copy-img:nth-child(24) {
  transition-delay: 0.25s;
}
.sec-menuB .menuB-copy-img:nth-child(25) {
  transition-delay: 0.3s;
}
.sec-menuB .menuB-copy-img:nth-child(26) {
  transition-delay: 0.35s;
}
.sec-menuB .menuB-copy-img:nth-child(27) {
  transition-delay: 0.25s;
}
.sec-menuB .menuB-copy-img:nth-child(28) {
  transition-delay: 0.3s;
}
.sec-menuB .menuB-copy-img:nth-child(29) {
  transition-delay: 0.35s;
}
.sec-menuB .menuB-copy-img:nth-child(30) {
  transition-delay: 0.4s;
}
.sec-menuB .menuB-copy-img:nth-child(31) {
  transition-delay: 0.45s;
}
.sec-menuB .menuB-copy-img:nth-child(32) {
  transition-delay: 0.5s;
}
.sec-menuB .menuB-copy-img:nth-child(33) {
  transition-delay: 0.55s;
}
.sec-menuB .menuB-copy-img:nth-child(34) {
  transition-delay: 0.6s;
}
.sec-menuB .menuB-copy-img:nth-child(35) {
  transition-delay: 0.65s;
}
.sec-menuB .menuB-copy-img:nth-child(36) {
  transition-delay: 0.4s;
}
.sec-menuB .menuB-copy-img:nth-child(37) {
  transition-delay: 0.45s;
}
.sec-menuB .menuB-copy-img:nth-child(38) {
  transition-delay: 0.5s;
}
.sec-menuB .menuB-copy-img:nth-child(39) {
  transition-delay: 0.55s;
}

.sec-menuC .menuC-copy-img {
  opacity: 0;
}
.sec-menuC .menuC-copy-img-active {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sec-menuC .menuC-copy-img:nth-child(2) {
  transition-delay: 0s;
}
.sec-menuC .menuC-copy-img:nth-child(3) {
  transition-delay: 0.05s;
}
.sec-menuC .menuC-copy-img:nth-child(4) {
  transition-delay: 0.1s;
}
.sec-menuC .menuC-copy-img:nth-child(5) {
  transition-delay: 0.15s;
}
.sec-menuC .menuC-copy-img:nth-child(6) {
  transition-delay: 0.1s;
}
.sec-menuC .menuC-copy-img:nth-child(7) {
  transition-delay: 0.15s;
}
.sec-menuC .menuC-copy-img:nth-child(8) {
  transition-delay: 0.2s;
}
.sec-menuC .menuC-copy-img:nth-child(9) {
  transition-delay: 0.25s;
}
.sec-menuC .menuC-copy-img:nth-child(10) {
  transition-delay: 0.3s;
}
.sec-menuC .menuC-copy-img:nth-child(11) {
  transition-delay: 0.35s;
}
.sec-menuC .menuC-copy-img:nth-child(12) {
  transition-delay: 0.4s;
}
.sec-menuC .menuC-copy-img:nth-child(13) {
  transition-delay: 0.45s;
}
.sec-menuC .menuC-copy-img:nth-child(14) {
  transition-delay: 0.2s;
}
.sec-menuC .menuC-copy-img:nth-child(15) {
  transition-delay: 0.25s;
}
.sec-menuC .menuC-copy-img:nth-child(16) {
  transition-delay: 0.3s;
}
.sec-menuC .menuC-copy-img:nth-child(17) {
  transition-delay: 0.35s;
}
.sec-menuC .menuC-copy-img:nth-child(18) {
  transition-delay: 0.3s;
}
.sec-menuC .menuC-copy-img:nth-child(19) {
  transition-delay: 0.35s;
}
.sec-menuC .menuC-copy-img:nth-child(20) {
  transition-delay: 0.4s;
}
.sec-menuC .menuC-copy-img:nth-child(21) {
  transition-delay: 0.45s;
}
.sec-menuC .menuC-copy-img:nth-child(22) {
  transition-delay: 0.5s;
}
.sec-menuC .menuC-copy-img:nth-child(23) {
  transition-delay: 0.35s;
}
.sec-menuC .menuC-copy-img:nth-child(24) {
  transition-delay: 0.4s;
}
.sec-menuC .menuC-copy-img:nth-child(25) {
  transition-delay: 0.45s;
}
.sec-menuC .menuC-copy-img:nth-child(26) {
  transition-delay: 0.5s;
}
.sec-menuC .menuC-copy-img:nth-child(27) {
  transition-delay: 0.55s;
}
.sec-menuC .menuC-copy-img:nth-child(28) {
  transition-delay: 0.6s;
}
.sec-menuC .menuC-copy-img:nth-child(29) {
  transition-delay: 0.65s;
}

.sec-menuD .menuD-copy-img {
  opacity: 0;
}
.sec-menuD .menuD-copy-img-active {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sec-menuD .menuD-copy-img:nth-child(2) {
  transition-delay: 0s;
}
.sec-menuD .menuD-copy-img:nth-child(3) {
  transition-delay: 0.05s;
}
.sec-menuD .menuD-copy-img:nth-child(4) {
  transition-delay: 0.1s;
}
.sec-menuD .menuD-copy-img:nth-child(5) {
  transition-delay: 0.15s;
}
.sec-menuD .menuD-copy-img:nth-child(6) {
  transition-delay: 0.2s;
}
.sec-menuD .menuD-copy-img:nth-child(7) {
  transition-delay: 0.25s;
}
.sec-menuD .menuD-copy-img:nth-child(8) {
  transition-delay: 0.3s;
}
.sec-menuD .menuD-copy-img:nth-child(9) {
  transition-delay: 0.35s;
}
.sec-menuD .menuD-copy-img:nth-child(10) {
  transition-delay: 0.2s;
}
.sec-menuD .menuD-copy-img:nth-child(11) {
  transition-delay: 0.25s;
}
.sec-menuD .menuD-copy-img:nth-child(12) {
  transition-delay: 0.3s;
}
.sec-menuD .menuD-copy-img:nth-child(13) {
  transition-delay: 0.35s;
}
.sec-menuD .menuD-copy-img:nth-child(14) {
  transition-delay: 0.35s;
}
.sec-menuD .menuD-copy-img:nth-child(15) {
  transition-delay: 0.4s;
}
.sec-menuD .menuD-copy-img:nth-child(16) {
  transition-delay: 0.45s;
}
.sec-menuD .menuD-copy-img:nth-child(17) {
  transition-delay: 0.5s;
}
.sec-menuD .menuD-copy-img:nth-child(18) {
  transition-delay: 0.55s;
}
.sec-menuD .menuD-copy-img:nth-child(19) {
  transition-delay: 0.6s;
}

/* FOR EACH
=============================*/
.transL {
  opacity: 0;
  transform: translateX(-20%);
}

.transL.is-active {
  opacity: 1;
  transform: translateX(0);
  transition: 0.8s ease-in-out;
}

.transR {
  opacity: 0;
  transform: translateX(20%);
}

.transR.is-active {
  opacity: 1;
  transform: translateX(0);
  transition: 0.8s ease-in-out;
}

.transY {
  opacity: 0;
  transform: translateY(5%);
}

.transY.is-active {
  opacity: 1;
  transform: translateY(0%);
  transition: 0.8s ease-in-out;
}

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

.abs {
  position: absolute;
}

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

.rel {
  position: relative;
}

.sticky {
  position: sticky;
}

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

.opacity {
  opacity: 0;
}

.zeroA {
  margin: 0 auto;
}

.block {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 共通CSS
===============================*/
body {
  overflow-x: clip;
}

/* 背景色設定
===============================*/
.sec-intro {
  background: linear-gradient(180deg, rgb(248, 187, 48) 18.15%, rgb(240, 146, 40) 79.15%);
}

.sec-menuA {
  background: linear-gradient(180deg, rgb(219, 104, 32) 25.42%, rgb(223, 119, 42) 50.25%, rgb(233, 158, 67) 97.85%, rgb(233, 160, 68) 100%);
}

.sec-menuB {
  background: linear-gradient(0deg, rgb(230, 149, 55) 37.48%, rgb(237, 163, 57) 57.78%, rgb(253, 194, 60) 89.93%);
}

.sec-menuC {
  background: linear-gradient(180deg, rgb(213, 93, 19) 14.78%, rgb(226, 148, 57) 78.82%);
}

.sec-menuD {
  background: linear-gradient(0deg, rgb(146, 67, 23) 4.67%, rgb(201, 106, 38) 72.85%);
}

.sec-cp {
  background: linear-gradient(0deg, rgb(239, 160, 68) 7.11%, rgb(194, 105, 32) 77.71%);
}

/* メインレイアウト
===============================*/
.sec-mv .mv-bg {
  width: 100.1%;
}
@media screen and (max-width: 600px) {
  .sec-mv .mv-bg {
    width: 100%;
  }
}
.sec-mv .mv-cizle {
  bottom: 0;
  left: 0;
  width: 100%;
}
.sec-mv .mv-copy {
  width: 28%;
  top: 40%;
  right: 2%;
}
.sec-mv .mv-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}
.sec-mv .mv-cloud-01 {
  width: 46.5%;
  top: 56%;
  right: -7%;
}
.sec-mv .mv-cloud-02 {
  width: 52.5%;
  top: 89.6%;
  left: -7%;
}

.sec-intro {
  padding-top: 74px;
  padding-bottom: 196px;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    padding-top: calc(74px * 0.75);
    padding-bottom: calc(196px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    padding-top: calc(74 * 0.625 / 375 * 100vw);
    padding-bottom: calc(196 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copy {
  padding-bottom: 104px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-copy {
    padding-bottom: calc(104px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-copy {
    padding-bottom: calc(104 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copy .intro-momiji-01 {
  width: 49.6%;
  top: -8.5%;
  left: -5%;
}
.sec-intro .intro-copy .intro-malon-01 {
  width: 43.2%;
  top: 56%;
  right: -5%;
}
.sec-intro .navi-wrap {
  height: 936px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .navi-wrap {
    height: calc(936px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .navi-wrap {
    height: calc(936 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .navi-wrap .naviA {
  width: 52.53%;
  top: 0;
  left: 0;
}
.sec-intro .navi-wrap .naviB {
  width: 52.53%;
  top: 15.4%;
  right: 0;
}
.sec-intro .navi-wrap .naviC {
  width: 52.53%;
  top: 42%;
  left: 0;
}
.sec-intro .navi-wrap .naviD {
  width: 53%;
  top: 59.7%;
  right: 0;
}
.sec-intro .navi-wrap .intro-cloud {
  width: 45.6%;
  bottom: 0;
  left: 0;
}
.sec-intro .intro-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

/* menu 共通 */
.menu-back {
  width: 54.9%;
  left: 22.5%;
}

.reserve {
  width: 73.6%;
}

.sec-menuA {
  padding-bottom: 205px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA {
    padding-bottom: calc(205px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA {
    padding-bottom: calc(205 * 0.625 / 375 * 100vw);
  }
}
.sec-menuA .menuA-copy {
  width: 110%;
  transform: translateX(-5%);
}
.sec-menuA .menuA-wrap {
  margin-top: -60px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA .menuA-wrap {
    margin-top: calc(-60px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA .menuA-wrap {
    margin-top: calc(-60 * 0.625 / 375 * 100vw);
  }
}
.sec-menuA .contentA-illust {
  width: 100%;
  top: 31%;
  left: 0;
}
.sec-menuA .menuA-bottom {
  width: 100%;
  left: 0;
  bottom: 0;
}

.sec-menuB {
  padding-top: 15px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB {
    padding-top: calc(15px * 0.75);
    padding-bottom: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB {
    padding-top: calc(15 * 0.625 / 375 * 100vw);
    padding-bottom: calc(245 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-copy {
  width: 110%;
  transform: translateX(-6%);
  margin-bottom: 15px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-copy {
    margin-bottom: calc(15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-copy {
    margin-bottom: calc(15 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-wrap {
  margin-top: -120px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-wrap {
    margin-top: calc(-120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-wrap {
    margin-top: calc(-120 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .contentB-illust {
  width: 100%;
  top: 34%;
  left: 0;
}

.sec-menuC {
  padding-bottom: 245px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC {
    padding-bottom: calc(245px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC {
    padding-bottom: calc(245 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .menuC-copy {
  width: 110%;
  transform: translateX(-4.6%);
  margin-bottom: 7px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-copy {
    margin-bottom: calc(7px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-copy {
    margin-bottom: calc(7 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .menuC-wrap {
  margin-top: -60px;
}
@media screen and (max-width: 1535px) {
  .sec-menuC .menuC-wrap {
    margin-top: calc(-60px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuC .menuC-wrap {
    margin-top: calc(-60 * 0.625 / 375 * 100vw);
  }
}
.sec-menuC .contentC-illust {
  width: 100%;
  top: 31%;
  left: 0;
}
.sec-menuC .menuC-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

.sec-menuD {
  padding-bottom: 130px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD {
    padding-bottom: calc(130px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD {
    padding-bottom: calc(130 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-copy {
  width: 110%;
  transform: translateX(-5%);
  margin-bottom: 7px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-copy {
    margin-bottom: calc(7px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-copy {
    margin-bottom: calc(7 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-wrap {
  margin-top: -60px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-wrap {
    margin-top: calc(-60px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-wrap {
    margin-top: calc(-60 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .contentD-illust {
  width: 100%;
  top: 28.4%;
  left: 0;
}
.sec-menuD .menuD-bottom {
  width: 100%;
  bottom: 0;
  left: 0;
}

.sec-cp {
  padding-top: 166px;
}
@media screen and (max-width: 1535px) {
  .sec-cp {
    padding-top: calc(166px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp {
    padding-top: calc(166 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-banner {
  width: 80%;
  padding-top: 315x;
  padding-bottom: 93px;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-banner {
    padding-top: calc(15px * 0.75);
    padding-bottom: calc(93px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-banner {
    padding-top: calc(15 * 0.625 / 375 * 100vw);
    padding-bottom: calc(93 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-banner .cp-banner-img {
  filter: drop-shadow(5px 4px 4px rgba(102, 62, 35, 0.9));
}
.sec-cp .cp-wrap {
  padding-bottom: 43px;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-wrap {
    padding-bottom: calc(43px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-wrap {
    padding-bottom: calc(43 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-wrap .cp-anker-01 {
  width: 48.3%;
  margin-left: 10%;
}
.sec-cp .cp-wrap .cp-anker-02 {
  width: 48.3%;
  margin-left: auto;
  margin-right: 9.5%;
  margin-top: -88px;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-wrap .cp-anker-02 {
    margin-top: calc(-88px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-wrap .cp-anker-02 {
    margin-top: calc(-88 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-caption {
  width: 80%;
  padding-bottom: 128px;
  font-size: 15px;
  font-weight: 500;
  color: #fff3da;
  line-height: 1.75;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-caption {
    font-size: 13px;
    padding-bottom: calc(128px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-caption {
    width: 84%;
    font-size: 11px;
    padding-bottom: calc(128 * 0.625 / 375 * 100vw);
  }
}/*# sourceMappingURL=style.css.map */