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

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

img {
  height: auto;
}

a:hover {
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-nav {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #60352c;
  background-image: url(/lp/2025_tomatohajikeruhamburg/images/footer_illust.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 800px) {
  .footer-nav {
    background-image: url(/lp/2025_tomatohajikeruhamburg/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;
  }
}

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

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

.leftside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  left: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  background-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;
  }
}

.rightside {
  position: sticky;
  overflow-x: clip;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(50% - 300px);
  background-size: cover;
  z-index: 32;
}
@media screen and (max-width: 1535px) {
  .rightside {
    width: calc(50% - 225px);
  }
}
@media screen and (max-width: 600px) {
  .rightside {
    display: none;
  }
}

@keyframes tomato_sway {
  0%, 50% {
    transform: rotate(10deg);
  }
  25% {
    transform: rotate(-10deg);
  }
}
@keyframes tomato_sway_reverse {
  0%, 50% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(10deg);
  }
}
@keyframes tomato_fall {
  0% {
    transform: translateY(0) rotate(-40deg);
  }
  90% {
    transform: translateY(2000%) rotate(720deg);
  }
  100% {
    transform: translateY(2000%) rotate(720deg);
  }
}
.leftside .leftside_fall_tomato {
  animation: tomato_fall 6s ease-in infinite;
}
.leftside .leftside_tomato_03 {
  animation: tomato_sway 2s ease-in-out alternate infinite 0.5s;
  transform: rotate(10deg);
  transform-origin: top;
}

@keyframes tomato_fall_reverse {
  0% {
    transform: translateY(0) rotate(40deg);
  }
  90% {
    transform: translateY(2300%) rotate(-540deg);
  }
  100% {
    transform: translateY(2300%) rotate(-540deg);
  }
}
.rightside .rightside_fall_tomato {
  animation: tomato_fall_reverse 6s ease-in infinite 2s;
}
.rightside .rightside_tomato_01 {
  animation: tomato_sway 2s ease-in-out alternate infinite 0.2s;
  transform-origin: top;
  transform: rotate(10deg);
}
.rightside .rightside_tomato_04 {
  animation: tomato_sway 2s ease-in-out alternate infinite 2s;
  transform: rotate(10deg);
  transform-origin: top;
}
.rightside .rightside__nav_search {
  transition: transform 0.2s;
}
.rightside .rightside__nav_search:hover {
  transform: scale(1.1);
}
.rightside .rightside__nav ul .rightside__nav_tomato {
  transition: transform 0.2s;
}
.rightside .rightside__nav ul li:nth-child(even) a:hover .rightside__nav_tomato {
  transform: rotate(30deg) scale(1.8);
}
.rightside .rightside__nav ul li:nth-child(odd) a:hover .rightside__nav_tomato {
  transform: rotate(-20deg) scale(1.8);
}

.fv .fv_tomato {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  transition-delay: 0.2s;
}
.fv .fv_text {
  transform: translate(0, 0);
  opacity: 0;
  filter: blur(10px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.fv .fv_text_01 {
  transform: translate(-40%, 0);
  transition-delay: 0.7s;
}
.fv .fv_text_02 {
  transform: translate(40%, 0);
  transition-delay: 1.1s;
}
.fv.is-active .fv_tomato {
  opacity: 1;
}
.fv.is-active .fv_text {
  transform: translate(0, 0);
  opacity: 1;
  filter: blur(0);
}

@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 .mv__title {
  transform: scale(0);
  opacity: 0;
  filter: blur(20px);
}
.mv .mv__title_tomato_01 {
  transform: rotate(10deg);
}
.mv .mv__title_tomato_02 {
  transform: rotate(-10deg);
}
.mv .mv_berg_01 {
  transform: translate(-200%, 300%) rotate(-135deg) scale(0);
}
.mv .mv_berg_02 {
  transform: translate(300%, 0) rotate(-135deg) scale(0);
}
.mv .mv_tomato_01 {
  transform: translate(300%, 300%) rotate(-135deg) scale(0);
}
.mv .mv_tomato_02 {
  transform: translate(-150%, 0%) rotate(135deg) scale(0);
}
.mv .mv_tomato_03 {
  transform: translate(90%, -150%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_01 {
  transform: translate(100%, 300%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_02 {
  transform: translate(-150%, 300%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_03 {
  transform: translate(200%, 50%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_04 {
  transform: translate(-300%, -100%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_05 {
  transform: translate(-250%, -250%) rotate(-135deg) scale(0);
}
.mv .mv_bubble_06 {
  transform: translate(200%, -450%) rotate(-135deg) scale(0);
}
.mv .mv_steam {
  opacity: 0;
}
.mv.is-active .mv__title {
  animation: mv_title_bouce_fade 0.5s ease-in forwards;
}
.mv.is-active .mv__title .mv__title_hull {
  animation: mv_title_hull_bounce 3s ease-out infinite 0.6s;
}
.mv.is-active .mv__title .mv__title_tomato_01 {
  animation: tomato_sway 1.5s ease-in-out alternate infinite 0.6s;
}
.mv.is-active .mv__title .mv__title_tomato_02 {
  animation: tomato_sway_reverse 1.5s ease-in-out alternate infinite 1.1s;
}
.mv.is-active .mv_berg_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}
.mv.is-active .mv_berg_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}
.mv.is-active .mv_tomato_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}
.mv.is-active .mv_tomato_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}
.mv.is-active .mv_tomato_03 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}
.mv.is-active .mv_bubble_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}
.mv.is-active .mv_bubble_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}
.mv.is-active .mv_bubble_03 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.6s;
}
.mv.is-active .mv_bubble_04 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}
.mv.is-active .mv_bubble_05 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.5s;
}
.mv.is-active .mv_bubble_06 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.55s;
}
.mv.is-active .mv_steam {
  animation: mv_steam_fadeIn 1.2s ease-in-out forwards 1 0.65s;
}

@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);
  }
}
.ivy_topToFade {
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.5s;
}
.ivy_topToFade.is-active {
  transform: scale(1, 1);
}

.video .video_bg {
  transition: opacity 0.7s;
  opacity: 0;
}
.video .video_mask {
  transition: opacity 0.7s, filter 0.7s;
  transition-delay: 0.2s;
  opacity: 0;
  filter: blur(10px);
}
.video.is-active .video_bg {
  opacity: 1;
}
.video.is-active .video_mask {
  opacity: 1;
  filter: blur(0);
}

.fadeInUp {
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}
.fadeInUp.is-active {
  transform: translateY(0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.5s;
}
.fadeIn.is-active {
  opacity: 1;
}

@keyframes line_IN {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
.line_wave_yellow:before {
  transform-origin: 100% 50%;
}
.line_wave_yellow.is-active::before {
  animation: line_IN 0.6s ease-in-out forwards;
}

@keyframes text_boundIn {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.sauce__title h2 .sauce_title_baloon {
  transform: translateY(30px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.sauce__title h2 .sauce_title {
  transform: translateY(30px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.sauce__title_bubble_01 {
  transform: translate(300%, 200%) rotate(-135deg) scale(0);
}
.sauce__title_bubble_02 {
  transform: translate(-300%, -200%) rotate(-135deg) scale(0);
}
.sauce__title_bubble_03 {
  transform: translate(150%, -150%) rotate(-135deg) scale(0);
}
.sauce__title_bubble_04 {
  transform: translate(-150%, -150%) rotate(-135deg) scale(0);
}
.sauce__title.is-active h2 .sauce_title_baloon {
  transform: translateY(0);
  opacity: 1;
}
.sauce__title.is-active h2 .sauce_title_baloon img {
  animation: bound_loop 3s ease-in-out infinite 0.4s;
}
.sauce__title.is-active h2 .sauce_title {
  transform: translateY(0);
  opacity: 1;
}
.sauce__title.is-active .sauce__title_bubble_01 {
  animation: item_rotedIn 0.2s ease-in-out forwards 1 0.2s;
}
.sauce__title.is-active .sauce__title_bubble_02 {
  animation: item_rotedIn 0.2s ease-in-out forwards 1 0.25s;
}
.sauce__title.is-active .sauce__title_bubble_03 {
  animation: item_rotedIn 0.2s ease-in-out forwards 1 0.2s;
}
.sauce__title.is-active .sauce__title_bubble_04 {
  animation: item_rotedIn 0.2s ease-in-out forwards 1 0.2s;
}

.sauce .sauce__item_name h3 {
  transition: transform 0.4s, opacity 0.6s;
  opacity: 0;
}
.sauce .sauceA .sauce__item_name h3 {
  transform: translate(-250%, 0);
}
.sauce .sauceA .sauce__item_name .sauce__item_name_tomato_01 {
  transform: translate(300%, -100%) rotate(-135deg) scale(0);
}
.sauce .sauceA .sauce__item_name .sauce__item_name_tomato_02 {
  transform: translate(-400%, 10%) rotate(-135deg) scale(0);
}
.sauce .sauceA .sauce__item_name.is-active h3 {
  transform: translate(0, 0);
  opacity: 1;
}
.sauce .sauceA .sauce__item_name.is-active .sauce__item_name_tomato_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.25s;
}
.sauce .sauceA .sauce__item_name.is-active .sauce__item_name_tomato_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.33s;
}
.sauce .sauceB .sauce__item_name h3 {
  transform: translate(250%, 0);
}
.sauce .sauceB .sauce__item_name .sauce__item_name_togarashi_01 {
  transform: translate(300%, -100%) rotate(-135deg) scale(0);
}
.sauce .sauceB .sauce__item_name .sauce__item_name_garlic_01 {
  transform: translate(-300%, 100%) rotate(-135deg) scale(0);
}
.sauce .sauceB .sauce__item_name.is-active h3 {
  transform: translate(0, 0);
  opacity: 1;
}
.sauce .sauceB .sauce__item_name.is-active .sauce__item_name_togarashi_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.25s;
}
.sauce .sauceB .sauce__item_name.is-active .sauce__item_name_garlic_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 1 0.33s;
}

@keyframes sauce__story_title_bound {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes sauce__story_berg_01_move {
  0% {
    transform: translate(300%, -150%) scale(0);
    opacity: 0;
  }
  40% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  60% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-300%, 150%) scale(0);
    opacity: 1;
  }
}
@keyframes sauce__story_berg_01_moveimg {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(0);
  }
  80% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sauce__story h3 {
  transform: scale(0, 0);
  opacity: 0;
}
.sauce__story h3.is-active {
  animation: sauce__story_title_bound 0.5s ease-in-out forwards 1;
}
.sauce__story .sauce__story_berg_01 {
  transform: translate(300%, -150%) scale(0);
  opacity: 0;
}
.sauce__story .sauce__story_berg_01.is-active {
  animation: sauce__story_berg_01_move 2s ease-in-out forwards 1;
}
.sauce__story .sauce__story_berg_01.is-active span {
  animation: sauce__story_berg_01_moveimg 2s ease-in-out forwards 1;
}
.sauce__story .sauce__story_ivy_02 {
  transition-delay: 0.2s;
}

@keyframes menu_grass_tomato_IN {
  0% {
    transform: translateY(0) scale(0, 0);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px) scale(1.4, 1.4);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
}
.menu_grass .menu_grass_tomato {
  transform: scale(0, 0);
  opacity: 0;
}
.menu_grass.is-active .menu_grass_tomato {
  animation: menu_grass_tomato_IN 0.3s ease-in-out forwards;
}
.menu_grass.is-active .menu_grass_tomato_01 {
  animation-delay: 0.15s;
}
.menu_grass.is-active .menu_grass_tomato_02 {
  animation-delay: 0s;
}
.menu_grass.is-active .menu_grass_tomato_03 {
  animation-delay: 0.09s;
}
.menu_grass.is-active .menu_grass_tomato_04 {
  animation-delay: 0.21s;
}
.menu_grass.is-active .menu_grass_tomato_05 {
  animation-delay: 0.03s;
}
.menu_grass.is-active .menu_grass_tomato_06 {
  animation-delay: 0.18s;
}
.menu_grass.is-active .menu_grass_tomato_07 {
  animation-delay: 0.24s;
}
.menu_grass.is-active .menu_grass_tomato_08 {
  animation-delay: 0.06s;
}
.menu_grass.is-active .menu_grass_tomato_09 {
  animation-delay: 0.12s;
}

@keyframes menu_icon_limited_bound {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.menu .menu__title h2 .menu__title_balloon {
  transform: translateY(30px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.menu .menu__title h2 .menu__title_text {
  transform: translateY(30px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.menu .menu__title.is-active h2 .menu__title_balloon {
  transform: translateY(0);
  opacity: 1;
}
.menu .menu__title.is-active h2 .menu__title_balloon img {
  animation: bound_loop 3s ease-in-out infinite 0.4s;
}
.menu .menu__title.is-active h2 .menu__title_text {
  transform: translateY(0);
  opacity: 1;
}
.menu .item__lead_text {
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transform-origin: bottom center;
}
.menu .item__lead.is-active .item__lead_text {
  transform: rotate(0);
  opacity: 1;
}
.menu .menu_icon_limitedA {
  transform: scale(0, 0);
  opacity: 0;
}
.menu .menu_icon_limitedA.is-active {
  animation: menu_icon_limited_bound 0.4s ease-in-out forwards;
}
.menu .menu_icon_limitedB {
  transform: scale(0, 0);
  opacity: 0;
}
.menu .menu_icon_limitedB.is-active {
  animation: menu_icon_limited_bound 0.4s ease-in-out forwards;
}

.menuA .menu__title_tomato_01 {
  transform: translate(-250%, 115%) rotate(-135deg) scale(0);
}
.menuA .menu__title_tomato_02 {
  transform: translate(250%, -115%) rotate(-135deg) scale(0);
}
.menuA .menu__title.is-active .menu__title_tomato_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.2s;
}
.menuA .menu__title.is-active .menu__title_tomato_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.25s;
}
.menuA .menuA_item01 .item__lead_text {
  transform: rotate(45deg);
}
.menuA .menuA_item01 .item__lead_tomato {
  transform: translate(200%, 100%) rotate(-135deg) scale(0);
}
.menuA .menuA_item01 .item__lead.is-active .item__lead_tomato {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.3s;
}
.menuA .menuA_item02 .item__lead_text {
  transform: rotate(-45deg);
}
.menuA .menuA_item02 .item__lead_shrimp_01 {
  transform: translate(200%, 100%) rotate(-135deg) scale(0);
}
.menuA .menuA_item02 .item__lead_shrimp_02 {
  transform: translate(-200%, -100%) rotate(-135deg) scale(0);
}
.menuA .menuA_item02 .item__lead.is-active .item__lead_shrimp_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.25s;
}
.menuA .menuA_item02 .item__lead.is-active .item__lead_shrimp_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.35s;
}

.menuB .menu__title_garlic {
  transform: translate(150%, 100%) rotate(-135deg) scale(0);
}
.menuB .menu__title_togarashi {
  transform: translate(-200%, 100%) rotate(-135deg) scale(0);
}
.menuB .menu__title.is-active .menu__title_garlic {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.2s;
}
.menuB .menu__title.is-active .menu__title_togarashi {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.25s;
}
.menuB .menuB_item01 .item__lead_text {
  transform: rotate(-45deg);
}
.menuB .menuB_item01 .item__lead_bacon {
  transform: translate(-150%, 100%) rotate(-135deg) scale(0);
}
.menuB .menuB_item01 .item__lead.is-active .item__lead_bacon {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.3s;
}

.menuC .menu__title_sauce_01 {
  transform: translate(450%, 100%) rotate(-135deg) scale(0);
}
.menuC .menu__title_sauce_02 {
  transform: translate(-450%, 100%) rotate(-135deg) scale(0);
}
.menuC .menu__title.is-active .menu__title_sauce_01 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.2s;
}
.menuC .menu__title.is-active .menu__title_sauce_02 {
  animation: item_rotedIn 0.3s ease-in-out forwards 0.25s;
}

@keyframes takeout__title_boundIn {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes takeout__item_boundIn {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.takeout .takeout__title h2 img {
  transform: scale(0, 0);
  opacity: 0;
}
.takeout .takeout__title.is-active .takeout_subtitle {
  animation: takeout__title_boundIn 0.4s ease-in-out forwards;
}
.takeout .takeout__title.is-active .takeout_title {
  animation: takeout__title_boundIn 0.4s ease-in-out forwards 0.2s;
}
.takeout .takeout__item figure {
  transform: scale(0, 0);
  opacity: 0;
}
.takeout .takeout__item.is-active figure {
  animation: takeout__item_boundIn 0.4s ease-in-out forwards;
}
.takeout .takeout_tomato_01 {
  transform: translate(200%, 200%) rotate(-135deg) scale(0);
}
.takeout .takeout_tomato_01.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_tomato_02 {
  transform: translate(-200%, 200%) rotate(-135deg) scale(0);
}
.takeout .takeout_tomato_02.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_tomato_03 {
  transform: translate(250%, 200%) rotate(-135deg) scale(0);
}
.takeout .takeout_tomato_03.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_tomato_04 {
  transform: translate(-250%, 200%) rotate(-135deg) scale(0);
}
.takeout .takeout_tomato_04.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_tomato_05 {
  transform: translate(200%, 200%) rotate(-135deg) scale(0);
}
.takeout .takeout_tomato_05.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_bubble_01 {
  transform: translate(200%, -200%) rotate(-135deg) scale(0);
}
.takeout .takeout_bubble_01.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}
.takeout .takeout_bubble_02 {
  transform: translate(-400%, -200%) rotate(-135deg) scale(0);
}
.takeout .takeout_bubble_02.is-active {
  animation: item_rotedIn 0.3s ease-in-out forwards;
}

@keyframes column_top_hull_boundIn {
  0% {
    transform: translateY(0) scale(0.9);
    opacity: 0;
  }
  25% {
    transform: translateY(-20px) scale(1.1);
    animation-timing-function: ease-in;
    opacity: 0.5;
  }
  50% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateY(-5px) scale(1.05);
    animation-timing-function: ease-in;
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes column_btn_sway {
  0% {
    transform: rotate(0);
    transform-origin: top center;
  }
  5% {
    transform: rotate(10deg);
  }
  15% {
    transform: rotate(-10deg);
  }
  25% {
    transform: rotate(10deg);
  }
  35% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(0);
  }
}
@keyframes column_btn_hover_boundIn {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
  }
}
.takeout::before {
  transform: scale(0, 0);
  opacity: 0;
}
.takeout.is-active::before {
  animation: column_top_hull_boundIn 0.4s ease-in-out forwards;
}

.column .column__title .column__subtitle {
  transform: translateY(30px);
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}
.column .column__title .column__subtitle.is-active {
  transform: translateY(0);
  opacity: 1;
}
.column .column__title .column__subtitle.is-active img {
  animation: bound_loop 3s ease-in-out infinite 1s;
}
.column .column__title .column__title_text img {
  transform: translateY(0);
  opacity: 0;
}
.column .column__title .column__title_text.is-active img {
  animation: text_boundIn 0.3s ease-in-out forwards;
}
.column .column__title .column__title_text.is-active .column__title_text_01 {
  animation-delay: 0.3s;
}
.column .column__title .column__title_text.is-active .column__title_text_02 {
  animation-delay: 0.35s;
}
.column .column__title .column__title_text.is-active .column__title_text_03 {
  animation-delay: 0.4s;
}
.column .column__title .column__title_text.is-active .column__title_text_04 {
  animation-delay: 0.45s;
}
.column .column__title .column__title_text.is-active .column__title_text_05 {
  animation-delay: 0.5s;
}
.column .column__title .column__title_text.is-active .column__title_text_06 {
  animation-delay: 0.55s;
}
.column .column__title .column__title_text.is-active .column__title_text_07 {
  animation-delay: 0.6s;
}
.column .column__list button img {
  transform: translateY(20%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.column .column__list button.is-active img {
  transform: translateY(0);
  transition-delay: 0.2s;
  opacity: 1;
}
.column .column__list button.is-active .column_btn {
  transition-delay: 0s;
}
.column .column__list button.is-active .column_tapA,
.column .column__list button.is-active .column_tapB {
  animation: column_btn_sway 4s ease-in-out infinite 1s;
}
.column .column__list button:hover .column_btn {
  animation: column_btn_hover_boundIn 0.4s ease-in-out forwards;
}
@media screen and (max-width: 600px) {
  .column .column__list button:hover .column_btn {
    animation: none;
  }
}

.cm__title img {
  transform: translateY(0);
  opacity: 0;
}
.cm__title.is-active img {
  animation: text_boundIn 0.3s ease-in-out forwards;
}
.cm__title.is-active .cm__title_01 {
  animation-delay: 0s;
}
.cm__title.is-active .cm__title_02 {
  animation-delay: 0.05s;
}
.cm__title.is-active .cm__title_03 {
  animation-delay: 0.1s;
}
.cm__title.is-active .cm__title_04 {
  animation-delay: 0.15s;
}
.cm__text {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.cm__text.is-active {
  transform: translateY(0);
  opacity: 1;
}

.campaign__title img {
  transform: translateY(0);
  opacity: 0;
}
.campaign__title.is-active img {
  animation: text_boundIn 0.3s ease-in-out forwards;
}
.campaign__title.is-active .campaign__title_01 {
  animation-delay: 0s;
}
.campaign__title.is-active .campaign__title_02 {
  animation-delay: 0.05s;
}
.campaign__title.is-active .campaign__title_03 {
  animation-delay: 0.1s;
}
.campaign__title.is-active .campaign__title_04 {
  animation-delay: 0.15s;
}
.campaign__title.is-active .campaign__title_05 {
  animation-delay: 0.2s;
}
.campaign__title.is-active .campaign__title_06 {
  animation-delay: 0.25s;
}
.campaign__title.is-active .campaign__title_07 {
  animation-delay: 0.3s;
}

.banner_search .banner_search__text {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.banner_search .banner_search__icon {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.banner_search.is-active .banner_search__text {
  transform: translateY(0);
  opacity: 1;
}
.banner_search.is-active .banner_search__icon {
  transform: translateY(0);
  opacity: 1;
}
.banner_search a:hover .banner_search__text {
  animation: column_btn_hover_boundIn 0.4s ease-in-out forwards;
}
@media screen and (max-width: 600px) {
  .banner_search a:hover .banner_search__text {
    animation: none;
  }
}

.banner_reserve .banner_reserve__text {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.banner_reserve .banner_reserve__icon {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.3s;
}
.banner_reserve.is-active .banner_reserve__text {
  transform: translateY(0);
  opacity: 1;
}
.banner_reserve.is-active .banner_reserve__icon {
  transform: translateY(0);
  opacity: 1;
}
.banner_reserve a:hover .banner_reserve__text {
  animation: column_btn_hover_boundIn 0.4s ease-in-out forwards;
}
@media screen and (max-width: 600px) {
  .banner_reserve a:hover .banner_reserve__text {
    animation: none;
  }
}

.floating_search {
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
}
.floating_search:hover {
  transform: scale(1.1) rotate(-10deg);
}
@media screen and (max-width: 600px) {
  .floating_search:hover {
    transform: scale(1) rotate(0);
  }
}
.floating_search.is-active {
  opacity: 1;
  visibility: visible;
}

/* Media Query
===============================*/
/*---------------------
共通
---------------------*/
body.fixed {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
body.fixed .header-body {
  top: 0;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.line_wave_yellow {
  display: inline-block;
  position: relative;
}
.line_wave_yellow::before, .line_wave_yellow::after {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: 3px;
  left: 0;
}
@media screen and (max-width: 1535px) {
  .line_wave_yellow::before, .line_wave_yellow::after {
    bottom: 2px;
  }
}
@media screen and (max-width: 600px) {
  .line_wave_yellow::before, .line_wave_yellow::after {
    bottom: 1px;
  }
}
@media screen and (max-width: 365px) {
  .line_wave_yellow::before, .line_wave_yellow::after {
    bottom: 0;
  }
}
.line_wave_yellow::before {
  background-color: #FFF;
  z-index: 1;
}
.line_wave_yellow::after {
  background: url(/lp/2025_tomatohajikeruhamburg/images/line_wave_yellow.png) repeat-x left bottom;
}

.video .video_bg {
  max-width: initial;
}
.video .video_mask {
  max-width: initial;
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100%;
}
.video .video_mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: flex-start;
}
main img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.leftside,
.rightside {
  background: #00CEDE;
  background: linear-gradient(to bottom, #ffffff, #80cadc 68%, #00cede 100%);
}

.leftside .leftside_fall_tomato {
  width: 10.9%;
  top: 0;
  left: 24%;
  z-index: -1;
}
.leftside .leftside_tomato_01 {
  width: 11.96%;
  top: 0;
  left: 3.5%;
  z-index: 1;
  margin-top: 15.7%;
}
.leftside .leftside_tomato_02 {
  width: 11.06%;
  top: 0;
  left: 33.1%;
  z-index: 1;
  margin-top: 15.7%;
}
.leftside .leftside_tomato_03 {
  width: 11.96%;
  top: 0;
  left: 56%;
  z-index: 1;
  margin-top: 25%;
}
.leftside .leftside_tomato_04 {
  width: 12.42%;
  top: 0;
  left: 71%;
  z-index: 1;
  margin-top: 10%;
}
.leftside .leftside__item {
  width: 55%;
  max-width: 358px;
  margin: 0 auto;
  top: calc(55% + 50px);
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(-50%) translateX(10%);
}
@media screen and (max-width: 1535px) {
  .leftside .leftside__item {
    top: calc(50% + 35px);
  }
}
@media screen and (max-width: 1110px) {
  .leftside .leftside__item {
    width: calc(100% - 60px);
    top: calc(50% + 32px);
    transform: translateY(-50%) translateX(0);
  }
}
@media screen and (max-width: 950px) {
  .leftside .leftside__item {
    width: calc(100% - 40px);
  }
}
.leftside .leftside__item p {
  margin-bottom: 3%;
}
.leftside .leftside__item figure {
  width: 93.5%;
  margin-inline: auto;
}

.rightside .rightside__grass img {
  width: 100%;
}
.rightside .rightside_fall_tomato {
  width: 11.96%;
  top: 0;
  left: 49%;
  z-index: -1;
}
.rightside .rightside_tomato_01 {
  width: 11.81%;
  top: 0;
  left: 6%;
  z-index: 1;
  margin-top: 17%;
}
.rightside .rightside_tomato_02 {
  width: 10.3%;
  top: 0;
  left: 24.5%;
  z-index: 1;
  margin-top: 29.5%;
}
.rightside .rightside_tomato_03 {
  width: 11.36%;
  top: 0;
  left: 30%;
  z-index: 1;
  margin-top: 11%;
}
.rightside .rightside_tomato_04 {
  width: 14.24%;
  top: 0;
  left: 48%;
  z-index: 1;
  margin-top: 21.8%;
}
.rightside .rightside_tomato_05 {
  width: 11.96%;
  top: 0;
  left: 78.5%;
  z-index: 1;
  margin-top: 8%;
}
.rightside .rightside__nav {
  width: 54.39%;
  max-width: 354px;
  top: calc(50% + 50px);
  left: 10.2%;
  z-index: 10;
  transform: translateY(-50%);
}
@media screen and (max-width: 1535px) {
  .rightside .rightside__nav {
    width: calc(100% - 80px);
    max-width: 295px;
    top: calc(50% + 35px);
    left: 40px;
  }
}
@media screen and (max-width: 1110px) {
  .rightside .rightside__nav {
    width: calc(100% - 60px);
    top: calc(50% + 32px);
    left: 30px;
  }
}
@media screen and (max-width: 950px) {
  .rightside .rightside__nav {
    width: calc(100% - 40px);
    left: 20px;
  }
}
.rightside .rightside__nav_search {
  display: block;
  margin-bottom: 10%;
}
.rightside .rightside__nav ul {
  width: 100%;
}
.rightside .rightside__nav ul li:not(:last-child) {
  margin-bottom: 8%;
}
.rightside .rightside__nav ul a {
  display: flex;
  align-items: center;
}
.rightside .rightside__nav ul .rightside__nav_tomato {
  width: 10.1%;
  margin-right: 8%;
}
.rightside .rightside__nav ul .rightside__nav_link_name {
  width: 75%;
}

.center {
  min-height: 100vh;
  box-shadow: 0 0 10px rgb(27, 102, 119);
  filter: none;
  overflow: hidden;
}

.fv {
  width: 600px;
  height: 100vh;
  background: #00BFCF;
  background: linear-gradient(0deg, rgb(0, 191, 207) 0%, rgb(0, 191, 207) 55%, rgb(255, 255, 255) 100%);
  position: fixed;
  top: 0%;
  z-index: 100;
}
@media screen and (max-width: 1535px) {
  .fv {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    width: 100%;
  }
}
.fv .fv__inner {
  width: 60.8%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.fv .fv_tomato {
  width: 63.5%;
  margin: 3% auto;
}
.fv .fv_text {
  width: 100%;
  margin: 0 auto;
}

.bg_gradation_blue_01 {
  background: #00BFCF;
  background: linear-gradient(180deg, rgb(0, 191, 207) 0%, rgb(0, 191, 207) 44%, rgb(255, 255, 255) 100%);
}

.ivy_topToFade {
  overflow: hidden;
}
.ivy_topToFade img {
  width: 100%;
  object-fit: cover;
}

.mv {
  overflow-x: clip;
}
.mv .mv__title {
  width: 100%;
  top: 14.3%;
  left: 0;
  z-index: 2;
}
.mv .mv__title h1 {
  width: 92.5%;
  margin: 0 auto;
}
.mv .mv__title_hull {
  width: 12.8%;
  top: 9.5%;
  left: 1.5%;
}
.mv .mv__title_tomato_01 {
  width: 12.8%;
  top: 31.5%;
  right: 3.5%;
}
.mv .mv__title_tomato_02 {
  width: 11.2%;
  top: 51%;
  left: 30%;
}
.mv .mv_berg_01 {
  width: 18.4%;
  top: 10.5%;
  right: 0;
}
.mv .mv_berg_02 {
  width: 27.73%;
  top: 34.2%;
  left: -8%;
}
.mv .mv_tomato_01 {
  width: 18.4%;
  top: 8.2%;
  left: -4.5%;
}
.mv .mv_tomato_02 {
  width: 26.13%;
  top: 32%;
  right: -8.5%;
}
.mv .mv_tomato_03 {
  width: 44.26%;
  top: 64.8%;
  left: -11.5%;
}
.mv .mv_bubble_01 {
  width: 16%;
  top: 8.5%;
  left: 18.2%;
}
.mv .mv_bubble_02 {
  width: 10.66%;
  top: 8.5%;
  right: 16.8%;
}
.mv .mv_bubble_03 {
  width: 12.53%;
  top: 27%;
  left: 1.5%;
}
.mv .mv_bubble_04 {
  width: 12.53%;
  top: 42.3%;
  right: -4%;
}
.mv .mv_bubble_05 {
  width: 15.46%;
  top: 70.3%;
  right: 1%;
}
.mv .mv_bubble_06 {
  width: 22.4%;
  top: 82.6%;
  left: 1%;
}
.mv .mv_steam {
  width: 95.2%;
  top: -11.5%;
  right: 0;
  z-index: 1;
}
.mv .mv__bg {
  width: 100%;
}

.floating_search {
  width: 118px;
  position: fixed;
  bottom: 20px;
  right: calc(50% - 280px);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 1535px) {
  .floating_search {
    width: 100px;
    right: calc(50% - 210px);
  }
}
@media screen and (max-width: 600px) {
  .floating_search {
    width: 70px;
    bottom: 15px;
    right: 10px;
  }
}

.sauce {
  padding-top: 10%;
  padding-bottom: 64%;
}

.sauce__title {
  margin: 0 auto 20% auto;
}
.sauce__title h2 {
  position: relative;
  z-index: 1;
}
.sauce__title h2 .sauce_title_baloon {
  width: 30.93%;
  display: block;
  margin-inline: auto;
  margin-bottom: -6.5%;
  position: relative;
  z-index: 1;
}
.sauce__title h2 .sauce_title_baloon img {
  width: 100%;
}
.sauce__title h2 .sauce_title {
  width: 67.2%;
  margin-inline: auto;
}
.sauce__title_bubble_01 {
  width: 9.33%;
  top: 35%;
  left: 5%;
}
.sauce__title_bubble_02 {
  width: 18.13%;
  top: 23%;
  right: 0.5%;
}
.sauce__title_bubble_03 {
  width: 24.8%;
  bottom: -13%;
  left: 7%;
}
.sauce__title_bubble_04 {
  width: 8.53%;
  bottom: -1%;
  right: 15%;
}

.sauce__item_name {
  z-index: 1;
}
.sauce__item_name h3 {
  width: 88%;
  z-index: 1;
}
.sauce__item.sauceA {
  margin-bottom: 3.46%;
}
.sauce__item.sauceA .video_bg {
  width: 100.53%;
  right: -5.6%;
}
.sauce__item.sauceA .video_mask {
  width: 97.06%;
  aspect-ratio: 52/47;
  bottom: -2%;
  right: -5.3%;
  mask-image: url(/lp/2025_tomatohajikeruhamburg/images/sauceA_videomask.svg);
  -webkit-mask-image: url(/lp/2025_tomatohajikeruhamburg/images/sauceA_videomask.svg);
}
.sauce__item.sauceA .sauce__item_name {
  margin-top: -17.5%;
}
.sauce__item.sauceA .sauce__item_name h3 {
  margin-left: 3.6%;
}
.sauce__item.sauceA .sauce__item_name .sauce__item_name_tomato_01 {
  width: 14.13%;
  bottom: -13%;
  left: 2.5%;
}
.sauce__item.sauceA .sauce__item_name .sauce__item_name_tomato_02 {
  width: 8.8%;
  top: 23%;
  right: 4%;
}
.sauce__item.sauceA .sauce__item_ivy_01 {
  width: 35.73%;
  top: 5%;
  left: -10%;
}
.sauce__item.sauceB {
  margin-bottom: 17.33%;
  z-index: 1;
}
.sauce__item.sauceB .video_bg {
  width: 105.33%;
  left: -7.5%;
}
.sauce__item.sauceB .video_mask {
  width: 104%;
  aspect-ratio: 390/343;
  bottom: -0.5%;
  left: -8.53%;
  mask-image: url(/lp/2025_tomatohajikeruhamburg/images/sauceB_videomask.svg);
  -webkit-mask-image: url(/lp/2025_tomatohajikeruhamburg/images/sauceB_videomask.svg);
}
.sauce__item.sauceB .sauce__item_name {
  margin-top: -16%;
}
.sauce__item.sauceB .sauce__item_name h3 {
  margin-left: 5.86%;
}
.sauce__item.sauceB .sauce__item_name .sauce__item_name_togarashi_01 {
  width: 8.8%;
  bottom: 11%;
  left: 3%;
}
.sauce__item.sauceB .sauce__item_name .sauce__item_name_garlic_01 {
  width: 18.4%;
  top: 29%;
  right: 10%;
}
.sauce__item.sauceB .sauce__item_ivy_02 {
  width: 32%;
  top: -19%;
  right: -8%;
}
.sauce__item.sauceB .sauce__item_ivy_03 {
  width: 30.93%;
  bottom: -38%;
  left: -6%;
}
.sauce__item.sauceB .sauce__item_ivy_04 {
  width: 25.86%;
  bottom: -27%;
  right: -3%;
}

.sauce__story {
  padding: 21.33% 0 24% 0;
  background: url(/lp/2025_tomatohajikeruhamburg/images/sauce_story_bg.svg) no-repeat center center;
  background-size: 100% 100%;
}
.sauce__story h3 {
  width: 68.26%;
  margin: 0 auto 8% auto;
}
.sauce__story .sauce__story_animation {
  max-width: 375px;
  margin: 0 auto 4% auto;
  transform: translateX(4%);
}
@media screen and (max-width: 1535px) {
  .sauce__story .sauce__story_animation {
    width: 75%;
    margin: 0 auto 5% auto;
  }
}
.sauce__story p {
  font-size: 22px;
  font-weight: 800;
  font-feature-settings: "palt";
  text-align: center;
  color: #641719;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 4%;
}
@media screen and (max-width: 1535px) {
  .sauce__story p {
    font-size: 18px;
    line-height: 2.1;
  }
}
@media screen and (max-width: 600px) {
  .sauce__story p {
    font-size: 17px;
    line-height: 2.2;
  }
}
@media screen and (max-width: 365px) {
  .sauce__story p {
    font-size: 15px;
  }
}
.sauce__story .sauce__story_berg_01 {
  width: 50%;
  padding-top: 50%;
  bottom: -20.5%;
  left: 28%;
}
.sauce__story .sauce__story_berg_01 span {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.sauce__story .sauce__story_berg_01 img {
  width: 48%;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sauce__story .sauce__story_ivy_01 {
  width: 53.06%;
  bottom: -17.1%;
  left: -8%;
}
@media screen and (max-width: 1535px) {
  .sauce__story .sauce__story_ivy_01 {
    bottom: -16.5%;
  }
}
@media screen and (max-width: 600px) {
  .sauce__story .sauce__story_ivy_01 {
    bottom: -15.5%;
  }
}
.sauce__story .sauce__story_ivy_02 {
  width: 40.8%;
  bottom: -20.5%;
  right: -9%;
}
@media screen and (max-width: 1535px) {
  .sauce__story .sauce__story_ivy_02 {
    bottom: -20%;
  }
}

.menu {
  background: #FFC1AB;
  background: linear-gradient(0deg, rgb(255, 193, 171) 0%, rgb(255, 187, 166) 83%, rgb(255, 178, 140) 100%);
}

.menu__title h2 {
  z-index: 1;
}
.menu__title .menu__title_text {
  width: 100%;
}

.menu__about {
  width: 85.6%;
  margin-inline: auto;
  padding: 10.9% 8%;
  background: url(/lp/2025_tomatohajikeruhamburg/images/menu_about_bg.png) no-repeat center center;
  background-size: 100% 100%;
}
.menu__about .menu__about_text {
  width: 91.18%;
  margin-inline: auto;
}

.menu__item .item__name {
  font-size: 38px;
  font-weight: 900;
  font-feature-settings: "palt";
  color: #641719;
  text-align: center;
  line-height: 1.31;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1535px) {
  .menu__item .item__name {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .menu__item .item__name {
    font-size: 23px;
  }
}
@media screen and (max-width: 365px) {
  .menu__item .item__name {
    font-size: 21px;
  }
}
.menu__item .menu_icon_limitedA {
  width: 16.8%;
}
.menu__item .menu_icon_limitedB {
  width: 16.8%;
}
.menu__item .item__captions {
  padding: 0 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1535px) {
  .menu__item .item__captions {
    margin-top: 35px;
  }
}
@media screen and (max-width: 600px) {
  .menu__item .item__captions {
    padding: 0 10px;
    margin-top: 30px;
  }
}
.menu__item .item__captions li {
  font-size: 18px;
  font-weight: bold;
  color: #641719;
  text-align: center;
  line-height: 1.66;
}
@media screen and (max-width: 1535px) {
  .menu__item .item__captions li {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .menu__item .item__captions li {
    font-size: 12px;
  }
}
@media screen and (max-width: 365px) {
  .menu__item .item__captions li {
    font-size: 10px;
  }
}

.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-hull {
  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/2025_tomatohajikeruhamburg/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%;
}

.menu_grass.menu_grass_top {
  transform: translateY(-32%);
  margin-bottom: -35%;
}
.menu_grass.menu_grass_bottom {
  transform: translateY(64%);
  margin-top: -48%;
}
.menu_grass .menu_grass_tomato_01 {
  width: 10.4%;
  top: 15%;
  left: 0;
}
.menu_grass .menu_grass_tomato_02 {
  width: 8.26%;
  top: 24.5%;
  left: 15.5%;
}
.menu_grass .menu_grass_tomato_03 {
  width: 9.6%;
  top: 39%;
  left: 27%;
}
.menu_grass .menu_grass_tomato_04 {
  width: 9.06%;
  top: 28%;
  left: 38%;
}
.menu_grass .menu_grass_tomato_05 {
  width: 8.53%;
  top: 42%;
  left: 50%;
}
.menu_grass .menu_grass_tomato_06 {
  width: 7.46%;
  top: 26%;
  left: 58%;
}
.menu_grass .menu_grass_tomato_07 {
  width: 10.13%;
  top: 39%;
  left: 67%;
}
.menu_grass .menu_grass_tomato_08 {
  width: 10.66%;
  top: 20%;
  left: 80%;
}
.menu_grass .menu_grass_tomato_09 {
  width: 9.06%;
  top: 11%;
  left: 93.5%;
}

.menuA {
  margin-bottom: 21.33%;
}
.menuA .menu__title {
  margin-bottom: 10%;
}
.menuA .menu__title_balloon {
  width: 19.73%;
  display: block;
  top: -26%;
  left: 21%;
}
.menuA .menu__title_balloon img {
  width: 100%;
}
.menuA .menu__title_tomato_01 {
  width: 14.66%;
  top: 4%;
  right: 7%;
}
.menuA .menu__title_tomato_02 {
  width: 13.6%;
  bottom: -15%;
  left: 4%;
}
.menuA .menu__about {
  padding-top: 5%;
}
.menuA .menu__about .menu__about_animation {
  max-width: 400px;
  margin: 0 auto 3% auto;
  transform: translateX(18%);
}
.menuA .video {
  margin-top: -4.8%;
  margin-bottom: 10%;
  z-index: 1;
}
.menuA .video .video_bg {
  width: 103.73%;
  left: -12.8%;
}
.menuA .video .video_mask {
  width: 102.13%;
  aspect-ratio: 383/330;
  bottom: -2%;
  left: -9.06%;
  mask-image: url(/lp/2025_tomatohajikeruhamburg/images/menuA_video_mask.svg);
  -webkit-mask-image: url(/lp/2025_tomatohajikeruhamburg/images/menuA_video_mask.svg);
}
.menuA .menuA_item01 {
  margin-bottom: 12%;
}
.menuA .menuA_item01 .item__lead_text {
  width: 63.2%;
  margin-left: 32%;
}
.menuA .menuA_item01 .item__lead_tomato {
  width: 20.26%;
  top: -5%;
  left: 22.9%;
}
.menuA .menuA_item01 .item__image {
  margin-top: -1.5%;
  margin-bottom: -3%;
}
.menuA .menuA_item01 .menu_icon_limitedA {
  top: 66%;
  left: 7.46%;
}
.menuA .menuA_item02 {
  margin-bottom: 12%;
}
.menuA .menuA_item02 .item__lead_text {
  width: 63.2%;
  margin-left: 8.26%;
}
.menuA .menuA_item02 .item__lead_shrimp_01 {
  width: 11.46%;
  top: 20%;
  left: 6.4%;
}
.menuA .menuA_item02 .item__lead_shrimp_02 {
  width: 15.73%;
  top: 44%;
  left: 60.5%;
}
.menuA .menuA_item02 .item__image {
  margin-bottom: -3%;
}
.menuA .menuA_item02 .menu_icon_limitedB {
  top: 63%;
  left: 78%;
}

.menuB {
  margin-bottom: 20%;
}
.menuB .menu__title {
  margin-bottom: 4%;
}
.menuB .menu__title .menu__title_balloon {
  width: 19.46%;
  top: -26%;
  left: 30%;
}
.menuB .menu__title .menu__title_garlic {
  width: 18.4%;
  top: 11%;
  left: 15.5%;
}
.menuB .menu__title .menu__title_togarashi {
  width: 11.73%;
  top: 14%;
  left: 66.3%;
}
.menuB .menu__about {
  padding-top: 0;
}
.menuB .menu__about .menu__about_animation {
  max-width: 350px;
  margin: 0 auto 3% auto;
  transform: translateX(3%);
}
.menuB .video {
  margin-top: -4.8%;
  margin-bottom: 10%;
}
.menuB .video .video_bg {
  width: 105.86%;
  left: 6.4%;
}
.menuB .video .video_mask {
  width: 102.4%;
  aspect-ratio: 384/335;
  bottom: -2%;
  left: 6.4%;
  mask-image: url(/lp/2025_tomatohajikeruhamburg/images/menuB_video_mask.svg);
  -webkit-mask-image: url(/lp/2025_tomatohajikeruhamburg/images/menuB_video_mask.svg);
}
.menuB .menuB_item01 .item__lead .item__lead_text {
  width: 59.73%;
  margin-left: 5.33%;
}
.menuB .menuB_item01 .item__lead .item__lead_bacon {
  width: 20.08%;
  top: -6%;
  left: 47.5%;
}
.menuB .menuB_item01 .item__image {
  margin-top: -3%;
  margin-bottom: -3%;
}
.menuB .menuB_item01 .menu_icon_limitedB {
  top: 55%;
  left: 79%;
}

.menuC .menu__title {
  margin-bottom: 4%;
}
.menuC .menu__title .menu__title_sauce_01 {
  width: 7.46%;
  top: 5%;
  left: 20.5%;
}
.menuC .menu__title .menu__title_sauce_02 {
  width: 7.2%;
  top: 8%;
  left: 75.3%;
}
.menuC .menuC_item01 .item__image {
  margin-bottom: -3%;
}
.menuC .menuC_item01 .menu_icon_limitedA {
  top: -4.5%;
  left: 15.5%;
}
.menuC .menuC_item01 .item__name {
  margin-bottom: 15px;
}
.menuC .menuC_item01 .price {
  font-size: 60px;
  font-weight: 400;
  font-family: "rubik";
  color: #641719;
  text-align: center;
}
@media screen and (max-width: 1535px) {
  .menuC .menuC_item01 .price {
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .menuC .menuC_item01 .price {
    font-size: 40px;
  }
}
@media screen and (max-width: 365px) {
  .menuC .menuC_item01 .price {
    font-size: 30px;
  }
}
.menuC .menuC_item01 .price .yen {
  font-size: 36px;
  font-family: fredoka one;
}
@media screen and (max-width: 1535px) {
  .menuC .menuC_item01 .price .yen {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .menuC .menuC_item01 .price .yen {
    font-size: 26px;
  }
}
@media screen and (max-width: 365px) {
  .menuC .menuC_item01 .price .yen {
    font-size: 23px;
  }
}

.takeout {
  padding: 30% 0 53.3% 0;
  background: #00BFCF;
  background: linear-gradient(0deg, rgb(0, 191, 207) 0%, rgb(116, 209, 225) 30%, rgb(255, 255, 255) 100%);
  z-index: -1;
}
.takeout::before, .takeout::after {
  content: "";
  width: 100%;
  padding-top: 39.73%;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.takeout::before {
  background: url(/lp/2025_tomatohajikeruhamburg/images/column_top_hull.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 2;
}
.takeout::after {
  background: url(/lp/2025_tomatohajikeruhamburg/images/column_top_bg.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 1;
}
.takeout_inner {
  padding: 20% 0;
  background: url(/lp/2025_tomatohajikeruhamburg/images/takeout_bg.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 1;
}
.takeout .takeout__title {
  margin-bottom: 5%;
}
.takeout .takeout__title .takeout_subtitle {
  margin-bottom: -1%;
}
.takeout .takeout__item {
  margin-bottom: 8%;
}
.takeout .takeout__item figure {
  margin-bottom: -0.5%;
}
.takeout .takeout__item h3 {
  font-size: 28px;
  font-weight: 900;
  font-feature-settings: "palt";
  color: #D6001C;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 1535px) {
  .takeout .takeout__item h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .takeout .takeout__item h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 365px) {
  .takeout .takeout__item h3 {
    font-size: 15px;
  }
}
.takeout .takeout__captions {
  padding: 0 20px;
}
.takeout .takeout__captions li {
  font-size: 14px;
  font-weight: bold;
  color: #641719;
  text-align: center;
  line-height: 1.66;
}
@media screen and (max-width: 1535px) {
  .takeout .takeout__captions li {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .takeout .takeout__captions li {
    font-size: 10px;
  }
}
@media screen and (max-width: 365px) {
  .takeout .takeout__captions li {
    font-size: 9px;
  }
}
.takeout .takeout_tomato_01 {
  width: 18.93%;
  top: -18%;
  left: -3%;
}
.takeout .takeout_tomato_02 {
  width: 23.2%;
  top: -9%;
  left: 80%;
}
.takeout .takeout_tomato_03 {
  width: 12.8%;
  top: -14%;
  left: 5%;
}
.takeout .takeout_tomato_04 {
  width: 13.33%;
  top: 2%;
  left: 84%;
}
.takeout .takeout_tomato_05 {
  width: 23.2%;
  top: 55%;
  left: -3%;
}
.takeout .takeout_ivy_01 {
  width: 36%;
  top: 80.3%;
  left: -8%;
}
.takeout .takeout_ivy_02 {
  width: 30.93%;
  top: 81.5%;
  right: -4%;
}
.takeout .takeout_bubble_01 {
  width: 19.46%;
  top: 86.8%;
  left: 7.7%;
}
.takeout .takeout_bubble_02 {
  width: 8.26%;
  top: 89.5%;
  right: 7%;
}

.column {
  display: block;
  padding: 12.26% 0 26.66% 0;
  background: #F9872F;
  background: linear-gradient(0deg, rgb(249, 135, 47) 0%, rgb(255, 128, 30) 8%, rgb(232, 0, 0) 40%, rgb(224, 0, 0) 65%, rgb(224, 0, 0) 100%);
}
.column .column__title {
  margin-bottom: 14.66%;
}
.column .column__title .column__title_text .abs {
  top: 0;
  left: 0;
}
.column .column__list button {
  width: 78.13%;
  display: block;
  margin-inline: auto;
}
.column .column__list button:not(:last-child) {
  margin-bottom: 24%;
}
.column .column__list .column_tapA,
.column .column__list .column_tapB {
  width: 32.42%;
  z-index: 1;
}
.column .column__list .column_tapA {
  top: -15%;
  right: -5%;
}
.column .column__list .column_tapB {
  top: -21%;
  left: -5%;
}
.column .column__modal {
  width: 600px;
  height: 100vh;
  height: 100dvh;
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}
@media screen and (max-width: 1535px) {
  .column .column__modal {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal {
    width: 100%;
  }
}
.column .column__modal .column__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.column .column__modal .column__modal_body {
  width: calc(100% - 100px);
  height: calc(100vh - 190px);
  height: calc(100dvh - 190px);
  margin: 0 auto;
  border-radius: 20px;
  background: #FFF url(/lp/2025_tomatohajikeruhamburg/images/column_bg.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 145px;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1535px) {
  .column .column__modal .column__modal_body {
    width: calc(100% - 80px);
    height: calc(100vh - 141px);
    height: calc(100dvh - 141px);
    top: 106px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal .column__modal_body {
    width: calc(100% - 60px);
    height: calc(100vh - 155px);
    height: calc(100dvh - 155px);
    top: 105px;
  }
}
@media screen and (max-width: 365px) {
  .column .column__modal .column__modal_body {
    width: calc(100% - 40px);
    height: calc(100vh - 130px);
    height: calc(100dvh - 130px);
    top: 95px;
  }
}
.column .column__modal .column__modal_content {
  height: 100%;
  display: none;
  padding: 60px 40px;
  overflow: auto;
}
@media screen and (max-width: 1535px) {
  .column .column__modal .column__modal_content {
    padding: 50px 35px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal .column__modal_content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 365px) {
  .column .column__modal .column__modal_content {
    padding: 30px 20px;
  }
}
.column .column__modal .column__modal_content figure {
  margin-bottom: 30px;
}
@media screen and (max-width: 1535px) {
  .column .column__modal .column__modal_content figure {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal .column__modal_content figure {
    margin-bottom: 20px;
  }
}
.column .column__modal .column__modal_content p {
  font-size: 22px;
  font-weight: 800;
  color: #641719;
  line-height: 1.84;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 1535px) {
  .column .column__modal .column__modal_content p {
    font-size: 17px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal .column__modal_content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 365px) {
  .column .column__modal .column__modal_content p {
    font-size: 13px;
  }
}
.column .column__modal .column__close {
  width: 68px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 1535px) {
  .column .column__modal .column__close {
    width: 55px;
  }
}
@media screen and (max-width: 600px) {
  .column .column__modal .column__close {
    width: 42px;
    transform: translate(40%, -40%);
  }
}
@media screen and (max-width: 365px) {
  .column .column__modal .column__close {
    width: 36px;
  }
}

.cm_campaign {
  padding: 29.6% 0 26.66% 0;
  background: #00BFCF;
  background: linear-gradient(0deg, rgb(0, 191, 207) 0%, rgb(116, 209, 225) 70%, rgb(255, 255, 255) 100%);
}
.cm_campaign::before {
  content: "";
  width: 100%;
  padding-top: 13.86%;
  display: block;
  background: url(/lp/2025_tomatohajikeruhamburg/images/column_bottom_bg.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.cm {
  margin-bottom: 11.2%;
}
.cm__title {
  margin-bottom: 3.2%;
}
.cm__title .abs {
  top: 0;
  left: 0;
}
.cm__text {
  margin-bottom: 5.6%;
}
.cm iframe {
  width: 100%;
  height: 330px;
  display: block;
}

.campaign {
  margin-bottom: 12.8%;
}
.campaign__title {
  margin-bottom: 5.3%;
}
.campaign__title .abs {
  top: 0;
  left: 0;
}
.campaign__banner {
  width: 84%;
  margin-left: 9.5%;
}
.campaign__banner a {
  display: block;
}
.campaign__banner img {
  width: 100%;
  transition: transform 0.3s;
}
.campaign__banner a:hover img {
  transform: scale(1.05);
}

.banner_search {
  margin-bottom: 10.13%;
}
.banner_search a {
  width: 82.66%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 6.66%;
}
.banner_search a .banner_search__text {
  width: 91.93%;
}
.banner_search a .banner_search__icon {
  width: 25.8%;
  margin-top: 30%;
  margin-right: -17.73%;
  left: -17.73%;
  z-index: 1;
}

.banner_reserve a {
  width: 76%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 13.33%;
}
.banner_reserve a .banner_reserve__icon {
  width: 24.91%;
  top: 55%;
  left: 6%;
  z-index: 1;
}