@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_tomatohamburg/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_tomatohamburg/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 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: #00CEDE;
  background: linear-gradient(to bottom, #ffffff, #80cadc 68%, #00cede 100%);
  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-dish {
  width: 56%;
  top: 38.5%;
  left: 31.5%;
}
.leftside .left-tomato-01 {
  width: 15%;
  top: 10%;
  left: 5%;
}
.leftside .left-tomato-02 {
  width: 13%;
  top: 10.5%;
  left: 31%;
}
.leftside .left-tomato-03 {
  width: 14%;
  top: 17%;
  left: 53%;
}
.leftside .left-tomato-04 {
  width: 17%;
  top: 5.5%;
  left: 67%;
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background: #00CEDE;
  background: linear-gradient(to bottom, #ffffff, #80cadc 68%, #00cede 100%);
  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-tomato-01 {
  width: 13.7%;
  top: 12%;
  left: 4%;
}
.rightside .right-tomato-02 {
  width: 10.6%;
  top: 20%;
  left: 24%;
}
.rightside .right-tomato-03 {
  width: 13.2%;
  top: 7%;
  left: 30%;
}
.rightside .right-tomato-04 {
  width: 18.6%;
  top: 14%;
  left: 45%;
}
.rightside .right-tomato-05 {
  width: 14.8%;
  top: 6%;
  left: 75%;
}
.rightside .right-anker {
  width: 71%;
  top: 40%;
  left: 11%;
}
.rightside .right-anker .right-goshop {
  width: 70%;
}
.rightside .right-anker .right-tomato {
  width: 10%;
  top: 1%;
  left: 3%;
}

.right-tomato {
  transition: 0.2s ease-in-out;
}

.hover-active {
  transform: scale(1.5);
  transition: 0.2s ease-in-out;
}

/* MODAL
================================*/
.modal-bg {
  position: fixed;
  top: 0;
  left: calc(50% - 300px);
  width: 600px;
  height: 100vh;
  background-color: #000000;
  opacity: 0.4;
  z-index: 1000;
}
@media screen and (max-width: 1535px) {
  .modal-bg {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .modal-bg {
    width: 100%;
    left: 0;
  }
}

.modal-box {
  position: fixed;
  top: 50%;
  left: calc(50% - 300px);
  width: 600px;
  z-index: 1000;
  transform: translateY(-45%);
}
@media screen and (max-width: 1535px) {
  .modal-box {
    width: 450px;
    left: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .modal-box {
    width: 100%;
    left: 0;
  }
}
.modal-box .modal-wrap {
  width: 84%;
  margin: 0 auto;
  background-color: #fff;
  background-image: url(/lp/2026_tomatohamburg/images/modal_bg.png);
  background-size: 110%;
  border-radius: 30px;
  padding: 10% 11.5% 8.5% 11.5%;
}
.modal-box .modal-wrap .modal-img {
  padding-bottom: 30px;
}
@media screen and (max-width: 1535px) {
  .modal-box .modal-wrap .modal-img {
    padding-bottom: calc(30px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .modal-box .modal-wrap .modal-img {
    padding-bottom: calc(30 * 0.625 / 375 * 100vw);
  }
}
.modal-box .modal-wrap .modal-p {
  font-size: 21px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: -0.03em;
  text-align: justify;
  color: #641719;
}
@media screen and (max-width: 1535px) {
  .modal-box .modal-wrap .modal-p {
    font-size: calc(21px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .modal-box .modal-wrap .modal-p {
    font-size: calc(20 * 0.625 / 375 * 100vw);
  }
}

.modal-btn {
  position: absolute;
  width: 13.5%;
  top: -2.5%;
  right: -4%;
}

.modal-bg {
  display: none;
}

.modal-wrapA {
  display: none;
}

.modal-wrapB {
  display: none;
}

.modal-wrapC {
  display: none;
}

.fixed {
  position: fixed;
  bottom: 2%;
  right: calc(50% - 280px);
  width: 112px;
  z-index: 200;
}
@media screen and (max-width: 1535px) {
  .fixed {
    width: 90px;
    right: calc(50% - 215px);
  }
}
@media screen and (max-width: 600px) {
  .fixed {
    display: none;
  }
}

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

.sec-mv .mv-title {
  width: 100%;
  top: 14.3%;
  left: 0;
  z-index: 2;
}
.sec-mv .mv-title h1 {
  width: 92.5%;
  margin: 0 auto;
}
.sec-mv .mv-title-hull {
  width: 6.8%;
  top: 12%;
  left: 7.5%;
}
.sec-mv .mv-title-tomato_01 {
  width: 10.8%;
  top: 36.5%;
  right: 6%;
}
.sec-mv .mv-title-tomato_02 {
  width: 9.2%;
  top: 52%;
  left: 32.3%;
}
.sec-mv .mv-berg-01 {
  width: 18.4%;
  top: 10.5%;
  right: 0;
}
.sec-mv .mv-berg-02 {
  width: 27.73%;
  top: 34.2%;
  left: -8%;
}
.sec-mv .mv-tomato-01 {
  width: 18.4%;
  top: 8.2%;
  left: -4.5%;
}
.sec-mv .mv-tomato-02 {
  width: 26.13%;
  top: 32%;
  right: -8.5%;
}
.sec-mv .mv-tomato-03 {
  width: 44.26%;
  top: 64.8%;
  left: -11.5%;
}
.sec-mv .mv-bubble-01 {
  width: 16%;
  top: 8.5%;
  left: 18.2%;
}
.sec-mv .mv-bubble-02 {
  width: 10.66%;
  top: 8.5%;
  right: 16.8%;
}
.sec-mv .mv-bubble-03 {
  width: 12.53%;
  top: 27%;
  left: 1.5%;
}
.sec-mv .mv-bubble-04 {
  width: 12.53%;
  top: 42.3%;
  right: -4%;
}
.sec-mv .mv-bubble-05 {
  width: 15.46%;
  top: 70.3%;
  right: 1%;
}
.sec-mv .mv-bubble-06 {
  width: 22.4%;
  top: 82.6%;
  left: 1%;
}
.sec-mv .mv-steam {
  width: 95.2%;
  top: -11.5%;
  right: 0;
  z-index: 1;
}
.sec-mv .mv-bg {
  width: 100%;
}

.sec-intro .intro-p-abs-01 {
  width: 25.6%;
  bottom: 44%;
  left: 50%;
}
.sec-intro .intro-p-abs-02 {
  width: 21.3%;
  bottom: 37.65%;
  left: 38.5%;
}
.sec-intro .leaf-00 {
  width: 26.5%;
  top: -12.5%;
  left: 0;
}
.sec-intro .leaf-01 {
  width: 23.7%;
  top: -3%;
  right: 0;
}
.sec-intro .leaf-02 {
  width: 48.26%;
  top: 61.8%;
  left: 0;
}
.sec-intro .leaf-03 {
  width: 32%;
  top: 71.5%;
  right: 0;
}

.sec-navi .leaf-04 {
  width: 23.2%;
  top: 36.5%;
  left: 0;
}
.sec-navi .leaf-05 {
  width: 24%;
  top: 48%;
  right: 0;
}
.sec-navi .leaf-06 {
  width: 24%;
  top: 79%;
  left: 0;
}
.sec-navi .leaf-07 {
  width: 100%;
  bottom: -15.5%;
  left: 0;
}

.menu-grass-tomato-01 {
  width: 10.4%;
  top: 15%;
  left: 0;
}

.menu-grass-tomato-02 {
  width: 8.26%;
  top: 24.5%;
  left: 15.5%;
}

.menu-grass-tomato-03 {
  width: 9.6%;
  top: 39%;
  left: 27%;
}

.menu-grass-tomato-04 {
  width: 9.06%;
  top: 28%;
  left: 38%;
}

.menu-grass-tomato-05 {
  width: 8.53%;
  top: 42%;
  left: 50%;
}

.menu-grass-tomato-06 {
  width: 7.46%;
  top: 26%;
  left: 58%;
}

.menu-grass-tomato-07 {
  width: 10.13%;
  top: 39%;
  left: 67%;
}

.menu-grass-tomato-08 {
  width: 10.66%;
  top: 20%;
  left: 80%;
}

.menu-grass-tomato-09 {
  width: 9.06%;
  top: 11%;
  left: 93.5%;
}

.sec-sauceA .sauceA-h2 .sauceA-h2-abs-01 {
  width: 9.8%;
  top: 45%;
  left: 10.5%;
}
.sec-sauceA .sauceA-h2 .sauceA-h2-abs-02 {
  width: 9.8%;
  top: 54%;
  left: 79.6%;
}
.sec-sauceA .sauceA-gif {
  width: 110%;
  top: -12%;
  left: -5%;
}
.sec-sauceA .videoA-mask {
  top: 3%;
  left: 7%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
          mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceA .videoB-mask {
  top: 3%;
  left: -9%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
          mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceA .videoA-h3 {
  width: 100%;
  bottom: 8.5%;
  left: 0;
}
.sec-sauceA .videoA-h3 .videoA-h3-abs-01 {
  width: 12.8%;
  left: 12%;
  bottom: 0;
}
.sec-sauceA .videoA-h3 .videoA-h3-abs-02 {
  width: 7.7%;
  bottom: 38%;
  right: 3.5%;
}
.sec-sauceA .videoB-h3 {
  width: 100%;
  bottom: 10.5%;
  left: 0;
}
.sec-sauceA .videoB-h3 .videoB-h3-abs-01 {
  width: 8%;
  left: 4.5%;
  bottom: 18%;
}
.sec-sauceA .videoB-h3 .videoB-h3-abs-02 {
  width: 11.7%;
  bottom: 50%;
  right: 15.5%;
}
.sec-sauceA .videoA-heta {
  width: 28.8%;
  top: -10%;
  right: 25.2%;
}
.sec-sauceA .videoB-heta {
  width: 28.96%;
  top: -9%;
  left: 37.5%;
}

.sec-sauceB .sauceB-h2 .sauceB-h2-abs-01 {
  width: 10%;
  top: 35.5%;
  left: 6%;
}
.sec-sauceB .sauceB-h2 .sauceB-h2-abs-02 {
  width: 9.3%;
  top: 18%;
  left: 82.6%;
}
.sec-sauceB .sauceB-gif {
  width: 123%;
  top: -26%;
  left: -11%;
}
.sec-sauceB .videoC-mask {
  top: 3%;
  left: 7%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
          mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceB .videoD-mask {
  top: 3%;
  left: -9%;
  width: 100%;
  -webkit-mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
          mask-image: url(/lp/2026_tomatohamburg/images/videoA_base.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.sec-sauceB .videoC-h3 {
  width: 100%;
  bottom: 8.9%;
  left: 0;
}
.sec-sauceB .videoC-h3 .videoC-h3-abs-01 {
  width: 11.8%;
  left: 12%;
  bottom: 0;
}
.sec-sauceB .videoC-h3 .videoC-h3-abs-02 {
  width: 7.7%;
  bottom: 18%;
  right: 3%;
}
.sec-sauceB .videoC-heta {
  width: 28.8%;
  top: -10%;
  right: 25.2%;
}
.sec-sauceB .videoD-heta {
  width: 28.96%;
  top: -9%;
  left: 37.5%;
}
.sec-sauceB .videoD-h3 {
  width: 100%;
  bottom: 8.5%;
  left: 0;
}
.sec-sauceB .videoD-h3 .videoD-h3-abs-01 {
  width: 9.8%;
  left: 5%;
  bottom: 2%;
}
.sec-sauceB .videoD-h3 .videoD-h3-abs-02 {
  width: 13%;
  bottom: 18%;
  right: 17.5%;
}

.sec-menuD .leaf-to {
  width: 100%;
  bottom: -26.5%;
  left: 0;
}
@media screen and (max-width: 600px) {
  .sec-menuD .leaf-to {
    bottom: -22%;
  }
}

.sec-takeout .leaf-08 {
  width: 29.3%;
  bottom: 0%;
  left: 0;
}
.sec-takeout .leaf-09 {
  width: 29.3%;
  bottom: 0.5%;
  right: 0;
}
.sec-takeout .takeout-tomato-01 {
  width: 25%;
  top: 10%;
  left: -5%;
}
.sec-takeout .takeout-tomato-02 {
  width: 32%;
  top: 18%;
  right: -8%;
}
.sec-takeout .takeout-tomato-03 {
  width: 17.8%;
  top: 33.5%;
  left: 0;
}
.sec-takeout .takeout-tomato-04 {
  width: 18.7%;
  top: 48%;
  right: 1%;
}
.sec-takeout .takeout-tomato-05 {
  width: 30%;
  top: 58%;
  left: -5%;
}
.sec-takeout .takeout-tomato-06 {
  width: 23.7%;
  top: 65%;
  right: 0;
}
.sec-takeout .takeout-tomato-07 {
  width: 25.4%;
  top: 81%;
  left: 0;
}

.column-heta {
  width: 69.3%;
  top: -12%;
  left: 15%;
}

.videoA-mov {
  width: 155%;
  transform: translate(-35%, 0%);
}

.videoB-mov {
  width: 155%;
  transform: translate(0%, 0);
}

.videoC-mov {
  width: 155%;
  transform: translate(-10%, 0%);
}

.videoD-mov {
  width: 155%;
  transform: translate(-15%, 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;
  }
  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
=================================*/
@keyframes mv_title_bouce_fade {
  0% {
    transform: scale(0);
    opacity: 0;
    filter: blur(20px);
  }
  25% {
    transform: scale(1.1);
    opacity: 1;
    filter: blur(0);
  }
  50% {
    transform: scale(0.9);
    opacity: 1;
    filter: blur(0);
  }
  75% {
    transform: scale(1.05);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes mv_title_hull_bounce {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  6% {
    transform: translateY(0);
  }
  9% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
  15% {
    transform: translateY(0);
  }
}
@keyframes mv_steam_fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes item_rotedIn {
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
  }
}
.mv-title {
  transform: scale(0);
  opacity: 0;
  filter: blur(20px);
}

.mv-title-tomato_01 {
  transform: rotate(10deg);
}

.mv-title-tomato_02 {
  transform: rotate(-10deg);
}

.mv-berg-01 {
  transform: translate(-200%, 300%) rotate(-135deg) scale(0);
}

.mv-berg-02 {
  transform: translate(300%, 0) rotate(-135deg) scale(0);
}

.mv-tomato-01 {
  transform: translate(300%, 300%) rotate(-135deg) scale(0);
}

.mv-tomato-02 {
  transform: translate(-150%, 0%) rotate(135deg) scale(0);
}

.mv-tomato-03 {
  transform: translate(90%, -150%) rotate(-135deg) scale(0);
}

.mv-bubble-01 {
  transform: translate(100%, 300%) rotate(-135deg) scale(0);
}

.mv-bubble-02 {
  transform: translate(-150%, 300%) rotate(-135deg) scale(0);
}

.mv-bubble-03 {
  transform: translate(200%, 50%) rotate(-135deg) scale(0);
}

.mv-bubble-04 {
  transform: translate(-300%, -100%) rotate(-135deg) scale(0);
}

.mv-bubble-05 {
  transform: translate(-250%, -250%) rotate(-135deg) scale(0);
}

.mv-bubble-06 {
  transform: translate(200%, -450%) rotate(-135deg) scale(0);
}

.mv-steam {
  opacity: 0;
}

.mv-title_hull-active {
  animation: mv_title_hull_bounce 3s ease-out infinite 0.6s;
}

.mv-title-active {
  animation: mv_title_bouce_fade 0.5s ease-in forwards;
}

.mv-title-tomato_01-active {
  animation: tomato_sway 1.5s ease-in-out alternate infinite 0.6s;
}

.mv-title_tomato_02-active {
  animation: tomato_sway_reverse 1.5s ease-in-out alternate infinite 1.1s;
}

.mv-berg-01-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}

.mv-berg-02-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}

.mv-tomato-01-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}

.mv-tomato-02-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}

.mv-tomato-03-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}

.mv-bubble-01-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}

.mv-bubble-02-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}

.mv-bubble-03-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}

.mv-bubble-04-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}

.mv-bubble-05-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}

.mv-bubble-06-active {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}

.mv-steam-active {
  animation: mv_steam_fadeIn 1.2s ease-in-out forwards 1 0.65s;
}

/*  ORIGINAL ANIMATION
=================================*/
.leaf {
  opacity: 1;
  transform: scaleY(0.65);
  transform-origin: top;
}

.leaf-active {
  opacity: 1;
  transform: scaleY(1);
  transition: 0.5s ease-in-out;
}

.scale-x {
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
}

.scale-x-active {
  opacity: 1;
  transform: scaleX(1);
  transition: 0.5s ease-in-out;
}

@keyframes bound-loop {
  0% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  6% {
    transform: translateY(0);
  }
  9% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  15% {
    transform: translateY(0);
  }
}
.bound-loop {
  opacity: 0;
}

.bound-loop-active {
  animation: bound-loop 3s ease-in-out infinite;
  opacity: 1;
  transition: 0.2s;
}

.water-spread {
  opacity: 0;
  transform: scale(0.4);
}

.water-spread-active {
  opacity: 1;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.pon {
  opacity: 0;
}

.pon-active {
  animation: pon 0.3s ease-in-out forwards;
}

.trans-x {
  transform: translateX(100%);
}

.trans-x-active {
  transform: translateX(0%);
  transition: 0.3s ease-in-out;
}

.trans-x-re {
  transform: translateX(-100%);
}

.trans-x-re-active {
  transform: translateX(0%);
  transition: 0.3s ease-in-out;
}

.rotate-l {
  transform: rotate(-60deg);
  opacity: 0;
}

.rotate-l-active {
  transform: rotate(0deg);
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.rotate-r {
  transform: rotate(60deg);
  opacity: 0;
}

.rotate-r-active {
  transform: rotate(0deg);
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.menuB-copy {
  transform-origin: 60% bottom;
}

.menuD-copy {
  transform-origin: 40% bottom;
}

.to-l {
  transform: translate(80%, 80%) scale(0.8);
  opacity: 0;
}

.to-l-active {
  transform: translate(0%) scale(1);
  opacity: 1;
  transition: 0.2s ease-in-out;
}

.to-r {
  transform: translate(-80%, 80%) scale(0.8);
  opacity: 0;
}

.to-r-active {
  transform: translate(0%) scale(1);
  opacity: 1;
  transition: 0.2s ease-in-out;
}

@keyframes tomato-sway {
  0%, 50% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(-10deg);
  }
}
.tomato-sway {
  transform: rotate(10deg);
  animation: tomato-sway 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes tomato-fall {
  0% {
    transform: translateY(0) rotate(-40deg);
  }
  90% {
    transform: translateY(2000%) rotate(720deg);
  }
  100% {
    transform: translateY(2000%) rotate(720deg);
  }
}
.tomato-fall {
  width: 15%;
  top: 0;
  left: 18%;
  animation: tomato-fall 8s infinite;
}

.tomato-fall-right {
  width: 15%;
  top: 0;
  left: 60%;
  animation: tomato-fall 8s infinite 4s;
}

@keyframes text-boundin {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.text-boundin {
  opacity: 0;
}

.text-boundin-active {
  animation: text-boundin 0.3s ease-in-out forwards;
}

/* 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
===============================*/
/* 背景色設定
===============================*/
.sec-bgA {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(254, 255, 255) 0.13%, rgb(212, 241, 245) 7.27%, rgb(177, 229, 238) 14.54%, rgb(150, 220, 232) 21.89%, rgb(131, 213, 227) 29.33%, rgb(120, 209, 225) 36.92%, rgb(116, 208, 224) 44.9%, rgb(83, 203, 219) 55%, rgb(47, 197, 213) 68.06%, rgb(21, 193, 209) 80.31%, rgb(5, 191, 207) 91.31%, rgb(0, 190, 206) 99.98%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00BECE',endColorstr='#FFFFFF' , GradientType=0);
  overflow-x: clip;
}

.sec-bgB {
  background-color: #ffa28d;
  overflow-x: clip;
}

.sec-bgC {
  background-color: #ffd176;
  overflow-x: clip;
}

.sec-bgD {
  background-color: #ffa28d;
  overflow-x: clip;
}

.sec-bgE {
  background: linear-gradient(0deg, rgb(0, 190, 206) 0.02%, rgb(30, 195, 211) 3.62%, rgb(57, 199, 215) 7.77%, rgb(79, 202, 218) 12.55%, rgb(96, 205, 221) 18.14%, rgb(107, 207, 223) 25.04%, rgb(114, 208, 224) 34.72%, rgb(116, 208, 224) 61.6%, rgb(118, 209, 224) 77.77%, rgb(125, 211, 226) 83.59%, rgb(136, 215, 229) 87.74%, rgb(153, 221, 232) 91.1%, rgb(175, 228, 237) 93.97%, rgb(203, 237, 243) 96.51%, rgb(234, 248, 250) 98.76%, rgb(255, 255, 255) 100%);
  overflow-x: clip;
}

.sec-bgF {
  overflow-x: clip;
}
.sec-bgF .sec-column {
  display: block;
  background: linear-gradient(0deg, rgb(254, 135, 32) 0%, rgb(246, 89, 21) 12.56%, rgb(239, 57, 13) 17.33%, rgb(233, 32, 7) 22.29%, rgb(229, 14, 3) 27.45%, rgb(227, 3, 1) 32.91%, rgb(226, 0, 0) 39.23%, rgb(229, 0, 0) 65.35%, rgb(218, 0, 0) 73.5%, rgb(204, 0, 0) 87.64%, rgb(203, 0, 1) 100%);
}

.sec-bgG {
  background: linear-gradient(0deg, rgb(0, 190, 206) 0.02%, rgb(28, 194, 210) 6.37%, rgb(60, 199, 215) 14.96%, rgb(85, 203, 219) 23.91%, rgb(102, 206, 222) 33.27%, rgb(113, 207, 223) 43.29%, rgb(116, 208, 224) 55.1%, rgb(129, 212, 228) 64.09%, rgb(164, 223, 238) 80.78%, rgb(211, 237, 251) 100%);
  overflow-x: clip;
}

/* メインレイアウト
===============================*/
.sec-mv {
  padding-bottom: 108px;
}
@media screen and (max-width: 1535px) {
  .sec-mv {
    padding-bottom: calc(108px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-mv {
    padding-bottom: calc(108 * 0.625 / 375 * 100vw);
  }
}

.sec-intro {
  padding-bottom: 331px;
}
@media screen and (max-width: 1535px) {
  .sec-intro {
    padding-bottom: calc(331px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro {
    padding-bottom: calc(331 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-wrap {
  width: 100%;
  background-image: url(/lp/2026_tomatohamburg/images/intro_bg.svg);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  padding-bottom: 157px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-wrap {
    padding-bottom: calc(157px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-wrap {
    padding-bottom: calc(157 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-wrap .intro-h2 {
  width: 68.8%;
  padding-top: 131px;
  padding-bottom: 65px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-wrap .intro-h2 {
    padding-top: calc(131px * 0.75);
    padding-bottom: calc(65px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-wrap .intro-h2 {
    padding-top: calc(131 * 0.625 / 375 * 100vw);
    padding-bottom: calc(65 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-wrap .intro-gifA {
  width: 70%;
  padding-bottom: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-intro .intro-wrap .intro-gifA {
    padding-bottom: calc(50px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-intro .intro-wrap .intro-gifA {
    padding-bottom: calc(50 * 0.625 / 375 * 100vw);
  }
}
.sec-intro .intro-wrap .intro-p {
  width: 61%;
}

.sec-navi .navi-h2 .navi-h2-abs {
  width: 42.9%;
  top: 0;
  left: 28%;
}
.sec-navi .navi-h2 .navi-h2-water {
  width: 100%;
  top: 20%;
  left: 0;
}
.sec-navi .naviA {
  width: 84%;
  padding-bottom: 83px;
}
@media screen and (max-width: 1535px) {
  .sec-navi .naviA {
    padding-bottom: calc(83px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-navi .naviA {
    padding-bottom: calc(83 * 0.625 / 375 * 100vw);
  }
}
.sec-navi .naviB {
  width: 84%;
  padding-bottom: 270px;
}
@media screen and (max-width: 1535px) {
  .sec-navi .naviB {
    padding-bottom: calc(270px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-navi .naviB {
    padding-bottom: calc(270 * 0.625 / 375 * 100vw);
  }
}

.sec-sauceA {
  padding-top: 168px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceA {
    padding-top: calc(168px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceA {
    padding-top: calc(168 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceA .sauceA-gif-wrap {
  width: 86%;
  padding-bottom: 48px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceA .sauceA-gif-wrap {
    padding-bottom: calc(48px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceA .sauceA-gif-wrap {
    padding-bottom: calc(48 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceA .videoA {
  width: 100%;
  padding-bottom: 180px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceA .videoA {
    padding-bottom: calc(200px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceA .videoA {
    padding-bottom: calc(200 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceA .videoA .videoA-base {
  width: 100%;
  top: 0;
  left: 4%;
}
.sec-sauceA .videoB {
  width: 100%;
  padding-bottom: 196px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceA .videoB {
    padding-bottom: calc(196px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceA .videoB {
    padding-bottom: calc(196 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceA .videoB .videoB-base {
  width: 100%;
  top: 0;
  right: 4%;
}

.sec-menuA .menuA-name {
  margin-top: -12px;
}
@media screen and (max-width: 1535px) {
  .sec-menuA .menuA-name {
    margin-top: calc(-12px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuA .menuA-name {
    margin-top: calc(-12 * 0.625 / 375 * 100vw);
  }
}

.sec-menuB .menuB-copy {
  width: 67%;
  margin-left: 8%;
  margin-top: 120px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-copy {
    margin-top: calc(120px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-copy {
    margin-top: calc(120 * 0.625 / 375 * 100vw);
  }
}
.sec-menuB .menuB-copy .menuB-copy-abs-01 {
  width: 24.7%;
  top: 2%;
  right: -1%;
}
.sec-menuB .menuB-copy .menuB-copy-abs-02 {
  width: 20.7%;
  bottom: 0;
  left: 0;
}
.sec-menuB .menuB-name {
  margin-top: -15px;
}
@media screen and (max-width: 1535px) {
  .sec-menuB .menuB-name {
    margin-top: calc(-15px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuB .menuB-name {
    margin-top: calc(-15 * 0.625 / 375 * 100vw);
  }
}

.goshop {
  width: 100%;
  margin-top: 96px;
}
@media screen and (max-width: 1535px) {
  .goshop {
    margin-top: calc(96px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .goshop {
    margin-top: calc(96 * 0.625 / 375 * 100vw);
  }
}
.goshop .goshop-abs {
  width: 30.5%;
  top: -32%;
  left: 16.5%;
}

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

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

.goshopD {
  margin-top: 0;
}

.sec-sauceB {
  padding-top: 55px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceB {
    padding-top: calc(55px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceB {
    padding-top: calc(55 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceB .sauceB-gif-wrap {
  width: 86%;
  padding-bottom: 48px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceB .sauceB-gif-wrap {
    padding-bottom: calc(48px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceB .sauceB-gif-wrap {
    padding-bottom: calc(48 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceB .videoC {
  width: 100%;
  padding-bottom: 200px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceB .videoC {
    padding-bottom: calc(200px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceB .videoC {
    padding-bottom: calc(200 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceB .videoC .videoC-base {
  width: 100%;
  top: 0;
  left: 4%;
}
.sec-sauceB .videoD {
  width: 100%;
  padding-bottom: 189px;
}
@media screen and (max-width: 1535px) {
  .sec-sauceB .videoD {
    padding-bottom: calc(189px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-sauceB .videoD {
    padding-bottom: calc(189 * 0.625 / 375 * 100vw);
  }
}
.sec-sauceB .videoD .videoD-base {
  width: 100%;
  top: 0;
  right: 4%;
}

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

.sec-menuD {
  padding-bottom: 208px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD {
    padding-bottom: calc(208px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD {
    padding-bottom: calc(208 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-copy {
  width: 64%;
  padding-top: 75px;
  margin-right: 8.8%;
  margin-left: auto;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-copy {
    padding-top: calc(75px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-copy {
    padding-top: calc(75 * 0.625 / 375 * 100vw);
  }
}
.sec-menuD .menuD-copy .menuD-copy-abs-01 {
  width: 31%;
  top: 15%;
  left: -13%;
}
.sec-menuD .menuD-copy .menuD-copy-abs-02 {
  width: 31%;
  bottom: 5%;
  right: -11%;
}
.sec-menuD .menuD-ph {
  margin-top: -18px;
}
@media screen and (max-width: 1535px) {
  .sec-menuD .menuD-ph {
    margin-top: calc(-18px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-menuD .menuD-ph {
    margin-top: calc(-18 * 0.625 / 375 * 100vw);
  }
}

.sec-takeout {
  padding-top: 200px;
  padding-bottom: 220px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout {
    padding-top: calc(200px * 0.75);
    padding-bottom: calc(220px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout {
    padding-top: calc(200 * 0.625 / 375 * 100vw);
    padding-bottom: calc(220 * 0.625 / 375 * 100vw);
  }
}
.sec-takeout .takeout-wrap {
  width: 100%;
  background-image: url(/lp/2026_tomatohamburg/images/takeout_bg.svg);
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
}
.sec-takeout .takeout-wrap .takeout-h2 {
  width: 69%;
  padding-top: 120px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1535px) {
  .sec-takeout .takeout-wrap .takeout-h2 {
    padding-top: calc(120px * 0.75);
    padding-bottom: calc(48px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-takeout .takeout-wrap .takeout-h2 {
    padding-top: calc(120 * 0.625 / 375 * 100vw);
    padding-bottom: calc(48 * 0.625 / 375 * 100vw);
  }
}

.sec-column {
  margin-top: -1px;
  padding-top: 176px;
  padding-bottom: 140px;
}
@media screen and (max-width: 1535px) {
  .sec-column {
    padding-top: calc(176px * 0.75);
    padding-bottom: calc(140px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-column {
    padding-top: calc(176 * 0.625 / 375 * 100vw);
    padding-bottom: calc(140 * 0.625 / 375 * 100vw);
  }
}
.sec-column .column-title-text {
  padding-bottom: 100px;
}
@media screen and (max-width: 1535px) {
  .sec-column .column-title-text {
    padding-bottom: calc(100px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-column .column-title-text {
    padding-bottom: calc(100 * 0.625 / 375 * 100vw);
  }
}
.sec-column .column-title-text .column-title-abs {
  width: 56%;
  top: -25%;
  left: 21%;
}
.sec-column .column-btn {
  width: 78%;
  margin-bottom: 155px;
}
@media screen and (max-width: 1535px) {
  .sec-column .column-btn {
    margin-bottom: calc(155px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-column .column-btn {
    margin-bottom: calc(155 * 0.625 / 375 * 100vw);
  }
}
.sec-column .column-btn:hover {
  cursor: pointer;
}
.sec-column .column-btn .tap-r {
  width: 33.4%;
  top: -14%;
  right: -7%;
}
.sec-column .column-btn .tap-l {
  width: 33.4%;
  top: -20%;
  left: -6%;
}
.sec-column .column-btnC {
  margin-bottom: 0;
}

.sec-cm {
  padding-top: 96px;
  padding-bottom: 58px;
}
@media screen and (max-width: 1535px) {
  .sec-cm {
    padding-top: calc(96px * 0.75);
    padding-bottom: calc(58px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cm {
    padding-top: calc(96 * 0.625 / 375 * 100vw);
    padding-bottom: calc(58 * 0.625 / 375 * 100vw);
  }
}
.sec-cm .cm-title {
  padding-bottom: 18px;
}
@media screen and (max-width: 1535px) {
  .sec-cm .cm-title {
    padding-bottom: calc(18px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cm .cm-title {
    padding-bottom: calc(18 * 0.625 / 375 * 100vw);
  }
}
.sec-cm .cm-text {
  padding-bottom: 28px;
}
@media screen and (max-width: 1535px) {
  .sec-cm .cm-text {
    padding-bottom: calc(28px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cm .cm-text {
    padding-bottom: calc(28 * 0.625 / 375 * 100vw);
  }
}
.sec-cm .youtube {
  display: block;
  width: 100%;
  height: 338px;
}
@media screen and (max-width: 1535px) {
  .sec-cm .youtube {
    height: calc(338px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cm .youtube {
    height: calc(338 * 0.625 / 375 * 100vw);
  }
}

.sec-cp .cp-title {
  padding-bottom: 32px;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-title {
    padding-bottom: calc(32px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-title {
    padding-bottom: calc(32 * 0.625 / 375 * 100vw);
  }
}
.sec-cp .cp-banner {
  width: 83%;
  margin-bottom: 72px;
}
@media screen and (max-width: 1535px) {
  .sec-cp .cp-banner {
    margin-bottom: calc(72px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-cp .cp-banner {
    margin-bottom: calc(72 * 0.625 / 375 * 100vw);
  }
}

.sec-anker .ankerA {
  margin-bottom: 50px;
}
@media screen and (max-width: 1535px) {
  .sec-anker .ankerA {
    margin-bottom: calc(50px * 0.75);
  }
}
@media screen and (max-width: 600px) {
  .sec-anker .ankerA {
    margin-bottom: calc(50 * 0.625 / 375 * 100vw);
  }
}
.sec-anker .ankerA .ankerA-abs {
  width: 24%;
  bottom: 2%;
  right: 8%;
}
.sec-anker .ankerB-abs {
  width: 23.2%;
  bottom: -1%;
  left: 18%;
}

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

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

@media screen and (max-width: 600px) {
  .sauceA-bottom, .sauceB-bottom {
    width: 102%;
    transform: translateX(-1%);
  }
}/*# sourceMappingURL=style.css.map */