@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_tsukimihamburg/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_tsukimihamburg/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;
  filter: drop-shadow(0 0 4px #01000c);
}
@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: linear-gradient(0deg, rgb(32, 37, 83) 0%, rgb(44, 47, 103) 26.88%, rgb(24, 71, 115) 49.49%, rgb(0, 100, 130) 72.52%);
  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-cloud-01 {
  width: 65.7%;
  top: 5%;
  left: -20%;
}
.leftside .left-cloud-02 {
  width: 74.2%;
  bottom: -8%;
  left: -35%;
}
.leftside .left-main-star {
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.leftside .left-wrap {
  width: 84%;
  top: 54%;
  left: 51%;
  transform: translate(-50%, -50%);
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background: linear-gradient(0deg, rgb(32, 37, 83) 0%, rgb(44, 47, 103) 26.88%, rgb(24, 71, 115) 49.49%, rgb(0, 100, 130) 72.52%);
  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-cloud-01 {
  width: 76.4%;
  top: 1%;
  right: -6%;
}
.rightside .right-cloud-02 {
  width: 53.5%;
  left: -30%;
  top: 65%;
}
.rightside .right-cloud-03 {
  width: 105%;
  right: -50%;
  bottom: -10%;
}
.rightside .right-anker-wrap {
  display: flex;
  justify-content: space-between;
  width: 74.5%;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rightside .right-anker-wrap .right-anker {
  width: 33%;
}
.rightside .right-anker-wrap .right-anker .right-anker-passive {
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.rightside .right-anker-wrap .right-anker .right-anker-active {
  transition: 0.3s ease-in-out;
  opacity: 1;
}
.rightside .right-shop {
  width: 43.5%;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

/* SELECT CARD
================================*/
.select-card {
  display: flex;
  width: 77.6%;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  background: linear-gradient(127.06deg, rgb(255, 229, 197) 4.09%, rgb(255, 221, 176) 5.05%, rgb(255, 207, 140) 7.02%, rgb(255, 194, 108) 9.24%, rgb(255, 183, 80) 11.69%, rgb(255, 175, 58) 14.46%, rgb(255, 168, 41) 17.69%, rgb(255, 163, 30) 21.69%, rgb(255, 161, 23) 27.3%, rgb(255, 160, 21) 66.86%, rgb(252, 154, 22) 68.68%, rgb(226, 112, 32) 94.35%, rgb(211, 87, 38) 99.08%);
  padding: 4.4% 5% 4.4% 6%;
  margin: 0 auto 40px auto;
  filter: drop-shadow(0 2px 4px rgba(0, 8, 40, 0.4));
}
@media screen and (max-width: 600px) {
  .select-card {
    padding: 4% 4% 4% 4%;
  }
}
.select-card .menu-bottom {
  width: 60%;
  left: 20%;
  bottom: -29%;
}
@media screen and (max-width: 1535px) {
  .select-card .menu-bottom {
    bottom: -24%;
  }
}
@media screen and (max-width: 600px) {
  .select-card .menu-bottom {
    bottom: -24%;
  }
}
.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: #05062c;
  width: 123px;
  padding: 13px 17px;
  border-radius: 30px;
  background: #FFF url(/lp/2026_tsukimihamburg/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: #e1dcd1;
}
@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%;
}

.color-vari {
  color: #004d80 !important;
}

.intro-cloud-01 {
  width: 45%;
  top: -14%;
  right: -27%;
}

.intro-cloud-02 {
  width: 41.8%;
  bottom: 10%;
  left: -19%;
}

.intro-cloud-03 {
  width: 52.5%;
  top: -19%;
  right: -22%;
}

.intro-cloud-04 {
  width: 42.4%;
  bottom: 34%;
  left: -22%;
}

.intro-cloud-05 {
  width: 78.6%;
  top: -37%;
  right: -22%;
}

.intro-cloud-06 {
  width: 45.6%;
  bottom: 4%;
  left: -10%;
}

.intro-susuki {
  width: 58.9%;
  bottom: 10%;
  left: 0;
}

.sauceA-cloud-01 {
  width: 39.2%;
  top: -9%;
  right: -21%;
}

.sauceA-cloud-02 {
  width: 45.3%;
  bottom: -1%;
  left: -18%;
}

.menuA-cloud {
  width: 50%;
  top: 12%;
  right: -9%;
}

.sauceB-susuki {
  width: 47.2%;
  bottom: 26%;
  left: 0;
}

.sauceB-cloud-01 {
  width: 39.6%;
  top: -6.5%;
  right: -24%;
}

.sauceB-cloud-02 {
  width: 45.3%;
  bottom: 0;
  left: -20%;
}

.menuB-cloud {
  width: 50%;
  top: 10%;
  right: -9%;
}

.menuC-cloud-01 {
  width: 34.1%;
  top: 7%;
  right: 5.3%;
}

.menuC-cloud-02 {
  width: 41.6%;
  bottom: 50.5%;
  left: 0;
}

.world-h3-star {
  width: 100%;
  top: -28%;
  left: 0;
}

.world-cloud-01 {
  width: 58.6%;
  top: -40%;
  left: -19%;
}

.world-cloud-02 {
  width: 58.6%;
  top: 55%;
  right: -25%;
}

.world-cloud-03 {
  width: 36.2%;
  top: 40%;
  left: -8%;
}

.world-cloud-04 {
  width: 44%;
  top: 56%;
  right: -15%;
}

.world-cloud-05 {
  width: 45.2%;
  top: 0;
  left: -20%;
}

.world-cloud-06 {
  width: 34.1%;
  top: 41%;
  right: -8%;
}

.world-cloud-07 {
  width: 54.4%;
  top: 51%;
  left: -22%;
}

.world-cloud-08 {
  width: 58.6%;
  top: 83%;
  right: -17%;
}

.world-susuki {
  width: 62%;
  top: 65%;
  left: 0;
}

.cp-cloud-01 {
  width: 45.3%;
  top: 8%;
  left: -24%;
}

.cp-cloud-02 {
  width: 34.1%;
  top: 46%;
  right: -17%;
}

.cp-cloud-03 {
  width: 58.6%;
  top: 10%;
  right: -25%;
}

.cp-cloud-04 {
  width: 54.4%;
  top: 92%;
  left: -19%;
}

.sec-cp .cp-anker-01 {
  width: 51.7%;
  top: 21.2%;
  right: 0;
}
.sec-cp .cp-anker-01 .cp-anker-moon {
  width: 51%;
  top: -13%;
  left: -7%;
}
.sec-cp .cp-anker-02 {
  width: 57.6%;
  top: 37.3%;
  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.6s 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;
}

/*  MV
=================================*/
.mv-h1 {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(1%) scale(0.95);
  transition: 1s ease-in-out 0.5s;
}

.mv-h1-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

.mv-limited {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(1%) scale(0.95);
  transition: 1s ease-in-out 0.5s;
}

.mv-limited-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

.mv-deta {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(1%) scale(0.95);
  transition: 1s ease-in-out 0.3s;
}

.mv-deta-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

.mv-dish {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(5%) scale(0.95);
  transition: 1s ease-in-out 0.1s;
}

.mv-dish-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0) scale(1);
}

.mv-cloud-01 {
  transform: translateX(-80%);
  transition: 1.1s ease-in-out 0.3s;
}

.mv-cloud-01-active {
  transform: translateX(0%);
}

.mv-cloud-02 {
  transform: translateX(80%);
  transition: 1.1s ease-in-out 0.4s;
}

.mv-cloud-02-active {
  transform: translateX(0%);
}

.mv-cloud-03 {
  opacity: 0;
  transform: translateY(2.5%);
  transition: 0.75s ease-in-out;
}

.mv-cloud-03-active {
  opacity: 1;
  transform: translateY(0);
}

/*  ORIGINAL ANIMATION
=================================*/
@keyframes wide-move {
  0% {
    transform: translateX(5%);
  }
  50% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
.wide-move {
  animation: wide-move 8s ease-in-out infinite;
}

@keyframes kirameki {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.kira {
  animation: kirameki 2s ease-in-out infinite;
}

/*  ORIGINAL ANIMATION CSS
=================================*/
.blur-R {
  filter: blur(5px);
  transform: translateX(1%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.blur-R-active {
  filter: blur(0px);
  transform: translateX(0%);
  opacity: 1;
}

.blur-L-large {
  filter: blur(5px);
  transform: translateX(-20%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.blur-L-large-active {
  filter: blur(0px);
  transform: translateX(0%);
  opacity: 1;
}

.blur-U {
  filter: blur(5px);
  transform: translateY(3%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.blur-U-active {
  filter: blur(0px);
  transform: translateY(0%);
  opacity: 1;
  transition: 0.5s ease-in-out;
}

.sauceC-fukidashi {
  opacity: 0;
  transform: scale(0.7);
  transform-origin: 60% 60%;
  transition: 0.75s ease-in-out;
}

.sauceC-fukidashi-active {
  opacity: 1;
  transform: scale(1);
}

/* 世界の月 */
.moon-opacity {
  opacity: 0;
  filter: blur(5px);
}

.world-moon {
  filter: blur(0);
  transition: 0.5s;
}

.btn-opacity {
  opacity: 0;
}

.choose-btn-opacity {
  transition: 0.5s;
}

@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_tsukimihamburg/images/sprite_mask.png);
  mask-image: url(/lp/2026_tsukimihamburg/images/sprite_mask.png);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100% 3600%;
  mask-size: 100% 3600%;
}

.mask-anime-re {
  opacity: 0;
}

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

.cp-anker-01 .base-01 {
  filter: blur(10px);
  transform: translateX(50%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.cp-anker-01 .base-01-abs {
  filter: blur(10px);
  transform: translateY(5%);
  opacity: 0;
  transition: 0.5s ease-in-out 0.15s;
}

.cp-anker-01-active .base-01 {
  filter: blur(0px);
  transform: translateX(0%);
  opacity: 1;
}
.cp-anker-01-active .base-01-abs {
  filter: blur(0px);
  transform: translateY(0%);
  opacity: 1;
}

.cp-anker-02 .base-02 {
  filter: blur(10px);
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.75s ease-in-out 0.2s;
}
.cp-anker-02 .base-02-abs {
  filter: blur(10px);
  transform: translateY(5%);
  opacity: 0;
  transition: 0.75s ease-in-out 0.37s;
}

.cp-anker-02-active .base-02 {
  filter: blur(0px);
  transform: translateX(0%);
  opacity: 1;
}
.cp-anker-02-active .base-02-abs {
  filter: blur(0px);
  transform: translateY(0%);
  opacity: 1;
}

@keyframes susuki {
  0% {
    transform: rotate(0) translateX(0);
  }
  50% {
    transform: rotate(10deg) translateX(-10%);
  }
  100% {
    transform: rotate(0deg) translateX(0);
  }
}
.susuki-anime {
  animation: susuki 5s ease-in-out infinite;
  transform-origin: left 80%;
}

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

.abs-bottom-def {
  position: absolute;
  width: 100%;
  bottom: 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(0deg, rgb(44, 47, 103) 30.36%, rgb(32, 61, 110) 40.02%, rgb(2, 98, 129) 58.23%, rgb(0, 100, 130) 59.24%, rgb(7, 93, 127) 68.3%, rgb(25, 75, 117) 81.17%, rgb(40, 60, 110) 88.94%, rgb(44, 53, 109) 91.36%, rgb(46, 49, 109) 95.11%);
}

.sec-sauceA {
  background: linear-gradient(0deg, rgb(90, 90, 120) 31.17%, rgb(100, 100, 150) 52.69%, rgb(120, 110, 150) 73.21%, rgb(88, 113, 152) 81.72%, rgb(69, 115, 154) 88.12%, rgb(44, 117, 156) 90.01%, rgb(12, 120, 159) 92.77%, rgb(0, 121, 160) 94.31%, rgb(143, 170, 184) 100%);
}

.sec-sauceB {
  background: linear-gradient(0deg, rgb(255, 227, 210) 0%, rgb(244, 217, 189) 11.57%, rgb(230, 206, 164) 23.07%, rgb(248, 202, 151) 44.9%, rgb(255, 200, 146) 61.11%, rgb(243, 194, 158) 74.09%, rgb(232, 189, 170) 91.55%, rgb(226, 186, 168) 92.66%, rgb(210, 179, 163) 94.09%, rgb(184, 167, 155) 95.69%, rgb(147, 151, 144) 97.42%, rgb(100, 130, 130) 99.24%, rgb(80, 121, 124) 99.94%);
}

.sec-sauceC {
  background: linear-gradient(0deg, rgb(90, 90, 120) 31.17%, rgb(100, 100, 150) 52.69%, rgb(120, 110, 150) 73.21%, rgb(88, 113, 152) 81.72%, rgb(69, 115, 154) 88.12%, rgb(44, 117, 156) 90.01%, rgb(12, 120, 159) 92.77%, rgb(0, 121, 160) 94.31%, rgb(143, 170, 184) 100%);
}

.bg-other {
  background: linear-gradient(0deg, rgb(44, 47, 103) 16.46%, rgb(43, 50, 103) 27.81%, rgb(41, 61, 105) 37.56%, rgb(36, 79, 108) 46.71%, rgb(30, 103, 111) 55.44%, rgb(24, 130, 115) 62.67%, rgb(0, 100, 130) 77.57%, rgb(7, 93, 127) 82.5%, rgb(25, 75, 117) 89.51%, rgb(40, 60, 110) 93.75%, rgb(51, 77, 123) 95.23%, rgb(78, 121, 157) 98.17%, rgb(97, 152, 180) 100%);
}

/* メインレイアウト
===============================*/
.sec-mv .mv-bg {
  width: 100.1%;
}
.sec-mv .mv-cloud-01 {
  width: 36.3%;
  top: 11%;
  left: -10%;
}
.sec-mv .mv-cloud-02 {
  width: 37%;
  top: 36%;
  right: -13%;
}
.sec-mv .mv-cloud-03 {
  width: 100%;
  top: 50%;
  left: 0;
}
.sec-mv .mv-h1 {
  width: 100%;
  top: 19%;
  left: 0;
}
.sec-mv .mv-limited {
  width: 32.2%;
  top: 46.5%;
  left: 0;
}
.sec-mv .mv-deta {
  width: 26.4%;
  top: 14.5%;
  right: 0;
}
.sec-mv .mv-dish {
  width: 100%;
  top: 51%;
  left: 0;
}

.sec-intro {
  padding-top: 86px;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    padding-top: calc(86px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    padding-top: calc(86 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copyA {
  padding-bottom: 134px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-copyA {
    padding-bottom: calc(134px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-copyA {
    padding-bottom: calc(134 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-copyB {
  padding-bottom: 118px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-copyB {
    padding-bottom: calc(118px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-copyB {
    padding-bottom: calc(118 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-ankerB {
  margin-top: -45px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-ankerB {
    margin-top: calc(-45px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-ankerB {
    margin-top: calc(-45 * 0.625 / 375 * 100vw);
  }
}

.sec-sauceA .sauceA-img {
  width: 33%;
  bottom: 8%;
  left: 0;
}

.sec-sauceB .sauceB-img {
  width: 33%;
  bottom: 8%;
  left: 0;
}

.sec-sauceC .sauceC-img {
  width: 33%;
  bottom: 8%;
  left: 0;
}
.sec-sauceC .menuC-wrap {
  margin-top: -30px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceC .menuC-wrap {
    margin-top: calc(-30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceC .menuC-wrap {
    padding-top: calc(-30 * 0.625 / 375 * 100vw);
  }
}

/*============*/
.video-wrap {
  -webkit-mask-image: url(/lp/2026_tsukimihamburg/images/mov_mask.svg);
          mask-image: url(/lp/2026_tsukimihamburg/images/mov_mask.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.video-wrap .mov {
  width: 120%;
}

.price-box {
  padding-bottom: 109px;
}
@media screen and (max-width: 1535px) {
  .price-box {
    padding-bottom: calc(109px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .price-box {
    padding-bottom: calc(109 * 0.625 / 375 * 100vw);
  }
}

.reserve .reserve-abs {
  width: 35%;
  top: -42%;
  left: 2.5%;
}

/*============*/
.sec-world .world-h2 {
  margin-top: 100px;
}
@media screen and (max-width: 1535px) {
  .sec-world .world-h2 {
    margin-top: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-world .world-h2 {
    margin-top: calc(100 * 0.625 / 375 * 100vw);
  }
}
.sec-world .caption-wrap {
  display: flex;
  justify-content: space-between;
}
.sec-world .caption-wrap .world-h3 {
  width: 100%;
}
.sec-world .caption-wrap .world-p {
  width: 100%;
}
.sec-world .world-choose {
  margin-top: -45px;
}
@media screen and (max-width: 1535px) {
  .sec-world .world-choose {
    margin-top: calc(-45px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-world .world-choose {
    margin-top: calc(-45 * 0.625 / 375 * 100vw);
  }
}
.sec-world .btn-wrap {
  display: flex;
  justify-content: space-between;
  width: 87%;
  margin: 0 auto;
  padding-top: 65px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .sec-world .btn-wrap {
    padding-top: calc(65px * 0.75);
    padding-bottom: calc(40px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-world .btn-wrap {
    padding-top: calc(65 * 0.625 / 375 * 100vw);
    padding-bottom: calc(40 * 0.625 / 375 * 100vw);
  }
}
.sec-world .btn-wrap .choose-btn {
  width: 30%;
}
.sec-world .btn-wrap .choose-btn .choose-btn-abs {
  left: 0;
  bottom: 0;
}

.sec-cp .cp-malon {
  filter: drop-shadow(8px 10px 3px rgb(0, 0, 0));
  width: 80.8%;
}
.sec-cp .youtube {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .sec-cp .youtube {
    height: calc(350 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-banner .cp-banner-h3 {
  width: 80.8%;
}
.sec-cp .cp-banner .cp-banner-img {
  filter: drop-shadow(8px 10px 3px rgb(0, 0, 0));
  width: 80.8%;
}
.sec-cp .cp-anker {
  height: 694px;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-anker {
    height: calc(694px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-anker {
    height: calc(694 * 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 */